@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FFD400;
    --primary-rgb: 255, 212, 0;
    --primary-grad: linear-gradient(135deg, #FFD400 0%, #FF9F00 100%);
    --bg-darker: #050508;
    --bg-dark: #0A0A10;
    --bg-card: rgba(18, 18, 26, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-muted: #9E9EAE;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-glow: 0 8px 32px 0 rgba(255, 212, 0, 0.15);
}

/* BASE STYLING */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-darker);
    color: #F3F3F6;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1B1B26;
    border-radius: 10px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* SELECTION */
::selection {
    background: var(--primary);
    color: black;
}

/* GRADIENT BACKGROUND MESH */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 212, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 212, 0, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.02) 0%, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

/* SECTION STRUCTURE */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 850;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #FFFFFF 30%, #E2E2EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px auto;
}

/* NAVBAR */
.navbar {
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-glass);
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 8, 0.92);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-family: var(--font-heading);
    color: white !important;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #D1D1E0 !important;
    margin: 0 12px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 12px;
    background: var(--primary-grad);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 24px);
}

/* BUTTONS */
.btn-modern-accent {
    background: var(--primary-grad);
    color: #050508 !important;
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 24px;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-modern-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 212, 0, 0.45);
}

.btn-modern-accent:active {
    transform: translateY(0);
}

.btn-modern-outline {
    background: transparent;
    color: white !important;
    font-weight: 600;
    border-radius: 100px;
    padding: 10px 24px;
    border: 1.5px solid var(--border-glass);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-hero-primary {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at center, rgba(10, 10, 16, 0.3) 0%, rgba(5, 5, 8, 1) 100%);
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium overlapping modern layout for hero banner */
.hero-image-wrapper {
    position: relative;
    width: 85%;
    height: 85%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid var(--border-glass);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-image {
    transform: scale(1.08);
}

.hero-card-glow {
    position: absolute;
    top: -15%;
    right: -15%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.2);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 20%, #F5F5F7 50%, #FFD400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* STATS COUNTERS */
.stats-section {
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px;
}

.counter {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* BENTO GRID / WHAT WE DO */
.club-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 212, 0, 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.club-card:hover::before {
    opacity: 1;
}

.club-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 212, 0, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 212, 0, 0.05);
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 212, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 212, 0, 0.2);
    transition: all 0.4s ease;
}

.club-card:hover .card-icon-box {
    background: var(--primary-grad);
    transform: scale(1.1) rotate(5deg);
}

.card-icon-box i {
    color: var(--primary);
    font-size: 2.2rem;
    transition: color 0.4s ease;
}

.club-card:hover .card-icon-box i {
    color: #050508;
}

.club-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.club-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* COMMITTEE / TEAM */
.team-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.team-carousel-container {
    padding: 20px 0 60px 0;
}

.team-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 212, 0, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.team-img-wrapper {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.team-socials-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    display: flex;
    gap: 12px;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 2;
}

.team-card:hover .team-socials-overlay {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.team-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.team-social-btn:hover {
    background: var(--primary);
    color: #050508 !important;
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 750;
    margin-bottom: 6px;
    color: white;
}

.team-info p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

/* SWIPER BULLETS CUSTOMIZATION */
.swiper-pagination-bullet {
    background: #555566 !important;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 24px;
    border-radius: 5px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px !important;
}

/* EVENTS */
.events-section {
    background: var(--bg-darker);
}

.event-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-grad);
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 212, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 750;
    color: white;
    margin-bottom: 15px;
}

.event-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary);
}

/* CTA SECTION */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta {
    background: radial-gradient(circle at top left, rgba(255, 212, 0, 0.12), transparent 45%), linear-gradient(135deg, #10101A, #050508);
    border-radius: 36px;
    padding: 90px 45px;
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.cta-glow-decor {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* PREMIUM FOOTER */
footer {
    background: #040406;
    border-top: 1px solid var(--border-glass);
    padding: 90px 0 45px 0;
    position: relative;
    overflow: hidden;
}

.footer-brand {
    font-family: var(--font-heading);
    color: white;
    font-weight: 850;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    display: block;
}

.footer-brand span {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D1E0 !important;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
    background: var(--primary-grad);
    color: #050508 !important;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.35);
    border-color: transparent;
}

.footer-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.98rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.15rem;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555566;
    font-size: 0.88rem;
}

/* SCROLL ANIMATION UTILITIES */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* RESPONSIVE LAYOUTS */
@media(max-width: 991px) {
    .navbar {
        background: rgba(5, 5, 8, 0.95);
    }
    
    .hero {
        padding-top: 140px;
        text-align: center;
    }
    
    .hero-visual-container {
        height: 380px;
        margin-top: 50px;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .footer-title {
        margin-top: 40px;
        margin-bottom: 15px;
    }
}

@media(max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .counter {
        font-size: 3.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta {
        padding: 60px 25px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
