html {
    font-size: 16px;
    scroll-behavior: smooth;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color:rgb(5, 5, 5);
    color: rgb(255, 255, 255);
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.media-images {
    max-width: 70%;
    height: auto;
    border: 1px solid #ffffff;
    border-radius: 4px;
}
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 60px;
    gap: 20px;
}

.navbar-logo img {
    height: 100px;
    width: auto;
}

.navbar-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.navbar-links a {
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
    color: white;
}

.navbar-socials {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.navbar-socials a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

.site-title {
    font-size: 7rem;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    padding: 0 20px;
    line-height: 1.1;
}

.home-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: rgb(220, 220, 220);
    z-index: 10;
}

.page-title {
    text-align: center;
    font-size: 3rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.leader-section {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 40px;
    margin-bottom: 60px;
}

.first-leader {
    margin-top: 90vh;
}

.leader-section h2 {
    text-align: center;
    font-size: 3rem;
}

.leader-image-section {
    display: flex;
    flex-direction: row;
    margin: 0 40px;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.leader-image-section img {
    height: 250px;
    border-radius: 10px;
}

.leader-info {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    gap: 10px;
}

.leader-info h3 {
    font-size: 1.5rem;
}

.leader-info p {
    line-height: 1.5;
}

.section-divider {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: rgb(50, 50, 50)
}

footer {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .navbar {
        position: fixed;
        inset: 0;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        -webkit-transform: translate3d(0, -100%, 0);
        transition: transform 0.2s ease;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        z-index: 1000;
        margin: 0;
        padding: 0;
        gap: 30px;
    }

    .navbar.active {
        transform: translateY(0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    .navbar-logo img {
        height: 100px;
    }

    .navbar-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .navbar-links a {
        font-size: 1.5rem;
    }

    .navbar-socials {
        margin-left: 0;
        gap: 30px;
    }

    .navbar-socials a {
        font-size: 2rem;
    }

    .site-title {
        font-size: 2.5rem;
        top: 50%;
        padding: 0 15px;
    }

    .home-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center top;
        z-index: -1;
    }

    .page-title {
        font-size: 2rem;
    }

    .leader-section {
        margin-bottom: 30px;
    }

    .leader-image-section {
        flex-direction: column;
        gap: 10px;
    }

    .leader-section h2 {
        font-size: 2rem;
    }

    .leader-image-section img {
        max-width: 95%;
        height: auto;
    }

    .scroll-indicator {
        top: 80vh;
    }

}