﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.92)), url('campanybackg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    padding: 80px 20px;
    -webkit-font-smoothing: antialiased;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.main-container {
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.005);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 100px 60px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.brand-hero {
    text-align: center;
    margin-bottom: 50px;
}

.main-logo {
    width: 140px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.5));
}

.school-name {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #00d2ff;
}

.tagline {
    font-family: 'Syncopate', sans-serif;
    color: #00d2ff;
    letter-spacing: 12px;
    font-size: 0.7rem;
    margin-top: 15px;
    opacity: 0.7;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.3), transparent);
    margin: 60px auto;
    width: 40%;
}

.company-details {
    text-align: center;
    margin-bottom: 100px;
}

.company-details h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.pro-statement {
    font-size: 1.9rem;
    font-weight: 100;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.pro-statement strong {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.team-title {
    font-family: 'Syncopate', sans-serif;
    text-align: center;
    color: #00d2ff;
    font-size: 0.8rem;
    letter-spacing: 8px;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px 20px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 210, 255, 0.4);
    background: rgba(0, 210, 255, 0.03);
}

.photo-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #00d2ff, transparent, #3a7bd5);
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.role {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #00d2ff;
    font-weight: 700;
}

.back-link {
    font-family: 'Syncopate', sans-serif;
    color: #00d2ff;
    text-decoration: none;
    font-size: 0.6rem;
    letter-spacing: 4px;
    opacity: 0.5;
}

.footer-section {
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
    text-align: center;
    
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    opacity: 0.3;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-logo-img {
    width: 25px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .main-container {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .school-name {
        font-size: 2.2rem;
    }

    .pro-statement {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
