@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0F0F0F;
    color: #fff;
}

.header {
    position: fixed;
    top: 1.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
    max-width: 1843px;
    height: 92px;
    border-radius: 105px;
    border: 1px solid #313131;
    background-color: rgba(9, 9, 9, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
    z-index: 1000;
    transition: height 0.3s ease;
}

.header.expanded {
    height: 220px;
    border-radius: 50px;
}

.logo img {
    height: 40px;
}

.nav {
    position: absolute;
    top: 92px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.header.expanded .nav {
    opacity: 1;
    pointer-events: auto;
}

.nav a {
    color: #C8C8C8;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
    margin-top: 29px;
}




@media (min-width: 768px) {
    .nav {
    position: static;
    flex-direction: row;
    gap: 30px;
    opacity: 1 !important;
    pointer-events: auto !important;
    align-items: center;
    height: 92px;
    margin-top: -5px;
    }

    .header {
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: flex-start;
    gap: 30px;
    }

    .hamburger {
    display: none;
    }

    .logo {
    margin-top: 0px;
    }

    .search-button {
    margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
    display: block;
    }

    .search-button {
    margin-top: 32px;
    margin-left: auto;
    margin-right: 7px;
    }
    .logo {
    margin-top: 23px;
    }
}


* {
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-tap-highlight-color: transparent;
}

*::-webkit-scrollbar {
  display: none;
}

        .content {
            margin: 0 auto;
            padding-top: 10vh; /* 140px = espace pour ton header fixe */
            padding-left: 5vw;
            padding-right: 5vw;

        }

        h1 {
            color: #e3e3e3;
            margin-top: 1.5em;
            font-size: 2.1rem;
        }
        

        p {
            margin: 10px 0;
            font-size: 1.4rem;
        }