* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AlteHaasBold';
    src: url('Fonts/AlteHaasGroteskBold.woff') format('woff');
}

@font-face {
    font-family: 'AlteHaasRegular';
    src: url('Fonts/AlteHaasGroteskRegular.woff') format('woff');
}

body {
    font-family: "AlteHaasRegular";
    background: #1a1a1a;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(80px);
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 50px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #686868;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.about-section {
    padding: 200px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-family: "AlteHaasBold";
    font-size: 72px;
    font-weight: 100;
    letter-spacing: 8px;
    margin-bottom: 80px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.about-content {
    max-width: 900px;
    margin-bottom: 120px;
}

.about-text {
    font-size: 18px;
    line-height: 2;
    color: #f5f5f5;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.3s forwards;
}

.collective-section {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid #404040;
}

.collective-title {
    font-family: "AlteHaasBold";
    font-size: 48px;
    font-weight: 100;
    letter-spacing: 6px;
    margin-bottom: 80px;
    text-transform: uppercase;
    color: #ffffff;
}

.collective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.member-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

.member-card:nth-child(1) { animation-delay: 0.4s; }
.member-card:nth-child(2) { animation-delay: 0.5s; }
.member-card:nth-child(3) { animation-delay: 0.6s; }
.member-card:nth-child(4) { animation-delay: 0.7s; }
.member-card:nth-child(5) { animation-delay: 0.8s; }
.member-card:nth-child(6) { animation-delay: 0.9s; }

.member-image {
    width: 100%;
    height: 400px;
    background: #2a2a2a;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #808080;
    font-family: "AlteHaasBold";
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-name {
    font-family: "AlteHaasBold";
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.member-role {
    font-size: 12px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 1px solid #404040;
}

.member-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #f5f5f5;
    margin-top: 5px;
}

footer {
    padding: 100px 80px 60px;
    border-top: 1px solid #404040;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-text {
    color: #808080;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #808080;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-container {
        position: relative;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 15px 20px;
        border-bottom: 1px solid #404040;
        width: 200px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: #404040;
        color: #ffffff;
    }

    .about-section {
        padding: 150px 20px 50px;
    }

    .about-title {
        font-size: 48px;
        letter-spacing: 4px;
        margin-bottom: 50px;
    }

    .collective-title {
        font-size: 36px;
        letter-spacing: 4px;
        margin-bottom: 50px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .collective-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .member-card {
        max-width: 350px;
    }

    .member-image {
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .nav-links a {
        font-size: 16px;
        width: 180px;
        padding: 12px 15px;
    }
}

@media (max-width: 320px) {
    nav {
        padding: 10px 12px;
    }

    .logo {
        font-size: 16px;
    }
}