/* Team Page Styles - Premium Luxury Theme */

#team {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

#team h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #f8f9fa;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.committee {
    margin-bottom: 5rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.committee h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0,0,0,0.7);
    border-bottom: 3px solid #ffd700;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.member {
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.member:hover::before {
    left: 100%;
}

.member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: #ffd700;
}

.member h4 {
    margin: 0 0 1.5rem 0;
    color: #f8f9fa;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.member p {
    margin: 0;
    color: #e9ecef;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #team {
        padding: 3rem 1.5rem;
    }

    .members {
        grid-template-columns: 1fr;
    }

    .member {
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }

    #team h2 {
        font-size: 2.5rem;
    }

    .committee h3 {
        font-size: 1.8rem;
    }

    .committee {
        padding: 2rem;
    }
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: -10px;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    pointer-events: auto;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 90px;
    height: auto;
}

.nav-title {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.9;
}

/* underline hover effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c04406;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;    padding: 8px;}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #c04406;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #c04406;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        margin-right: 60px;
    }

    .navbar {
        padding: 14px 24px;
        height: 70px;
        background: #000000;
        
    }

    .nav-logo {
        width: 70px;
    }
}
/* FOOTER */
.footer {
    position: relative;
    width: 80%;
     margin-top: 0vh;
    background: linear-gradient(120deg, #2a0000, #000);
    color: #fff;
    padding: 80px 10% 30px;
    z-index: 20;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 180, 80, 0.5));
}

.footer-left h3 {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 2px;
}

.footer-left p {
    opacity: 0.8;
    margin-top: 6px;
}

.footer h4 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffcc70;
}

.footer-center a {
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-center a:hover {
    opacity: 1;
    color: #ffcc70;
    transform: translateX(5px);
}

.footer-right p {
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer-bottom span {
    color: #ffcc70;
    font-weight: 600;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-center a:hover {
        transform: none;
    }
}