@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #171a21;
    color: #c7d5e0;
    overflow-x: hidden;
}

a {
    color: #66c0f4;
    text-decoration: none;
}

a:hover {
    color: #b2b3b4;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navigation {
    background-color: #171a21;
    padding: 10px 0;
}

.navigation .container {
    display: flex;
    justify-content: flex-end; /* Aligne les boutons à droite */
    gap: 20px;
}

.nav-button {
    background-color: #66c0f4;
    color: #171a21;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #488448;
    color: #f7ebeb;
}


.navigation .container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    background-color: #66c0f4;
    color: #171a21;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #488448;
    color: #f7ebeb;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.logo h3 {
    font-size: 1.55rem;
    color: #c7d5e0;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #c7d5e0;
    margin: 4px 0;
    transition: all 0.3s;
}

.showcase-area {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.big-title h1 {
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.centered-image {
    margin: 20px 0;
    text-align: center;
}

.centered-image img {
    max-width: 100%;
    height: auto;
}

.text {
    font-size: 1.2rem;
    color: #c7d5e0;
    margin: 20px 0;
    text-align: center;
}

.split-screen {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.left, .right {
    flex: 1;
    max-width: 48%;
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.screenshots img {
    width: calc(50% - 10px);
    border-radius: 5px;
}

.video {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

video {
    width: calc(100% - 20px);
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #171a21;
    color: #c7d5e0;
}

.overlay {
    display: none;
}
