/* ============================================
   ABHYANTH 2026 - IIT Hyderabad Sports Fest
   Professional Responsive Styles
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables - Design System
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #FF6B00;
    --primary-light: #FF8C42;
    --secondary: #f7931e;
    --accent: #ffc107;
    
    /* Dark Theme Colors */
    --bg-dark: #0B0B0B;
    --bg-darker: #050508;
    --bg-card: #141414;
    --bg-card-hover: #1e1e1e;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #6b6b6b;
    
    /* Border Colors */
    --border-color: rgba(255, 107, 0, 0.15);
    --border-hover: rgba(255, 107, 0, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B00, #FF8C42);
    --gradient-dark: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    --gradient-overlay: linear-gradient(180deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1400px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.highlight-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    font-weight: 10;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.highlight-badge:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Netflix Style Intro Animation
   ============================================ */
.netflix-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.netflix-logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.netflix-logo {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: netflixZoom 4s ease-in-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.netflix-logo-img {
    max-width: 220px;
    max-height: 160px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    animation: logoPulse 1.5s ease-in-out 0.5s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}
.netflix-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.netflix-logo-text-main {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    text-shadow: 0 0 50px rgba(66, 45, 38, 0.429);
    /* animation: textGlow 4s ease-in-out forwards; */
    letter-spacing: 8px;
}
.netflix-logo-text-sub {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary);
    text-shadow: 0 0 50px rgba(66, 45, 38, 0.429);
    text-transform: uppercase;
    letter-spacing: 3px;
}
@keyframes netflixZoom {
    0% { 
        transform: scale(0.1) rotateY(180deg); 
        opacity: 0; 
    }
    15% { opacity: 1; }
    40% { 
        transform: scale(1.15) rotateY(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: scale(20); 
        opacity: 0; 
    }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    50% { text-shadow: 0 0 80px rgba(255, 107, 53, 1), 0 0 120px rgba(255, 107, 53, 0.8); }
    100% { text-shadow: 0 0 200px rgba(255, 107, 53, 0); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8)); }
}

/* ============================================
   Main Content Wrapper
   ============================================ */
.main-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-content.visible {
    opacity: 1;
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}


.navbar-brand-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}
.navbar-brand-info:hover .navbar-brand-text {
    color: var(--primary);
    position: relative;
}
.navbar-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1;
}

.navbar-brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
    line-height: 1;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-normal);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 40px 40px;
    transition: var(--transition-slow);
    z-index: 999;
    border-left: 1px solid var(--border-color);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
}

.mobile-menu-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--primary);
    padding-left: 15px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(10, 10, 15, 0.95) 100%),
        url('https://images.unsplash.com/photo-1461896836934-ffe607ba821?w=1920&q=80') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max-width);
    padding: 0 30px;
    width: 100%;
}

.hero-content.hero-content-centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero-text {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ABHYANTH Animated Text */
.hero-title-container {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative;
}

.hero-title-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 4px;
}

/* Hero Description */
.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    padding-right: 20px;
    padding-left: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 53, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* ============================================
   Flashcards Section
   ============================================ */
.flashcards {
    padding: 60px 0;
    background: var(--gradient-primary);
    overflow: hidden;
    position: relative;
}

.flashcards-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.flashcards-track:hover {
    animation-play-state: paused;
}

.flashcard {
    flex-shrink: 0;
    width: 320px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.flashcard:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.flashcard-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.flashcard-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.flashcard-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-dark);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.about-feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   Events Section
   ============================================ */
.events {
    background: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.event-card:hover {
    transform: translateY(-15px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.event-card:hover::before {
    opacity: 0.08;
}

.event-card:hover .event-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 107, 53, 0.2);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.event-card:hover .event-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.event-type {
    color: var(--text-muted);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   Sponsors Section
   ============================================ */
.sponsors {
    background: var(--bg-dark);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sponsor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-normal);
}

.sponsor-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.sponsor-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.sponsor-card:hover .sponsor-logo {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.sponsor-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sponsor-tag {
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sponsor-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: var(--gradient-primary);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.8) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.footer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.footer-brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
    line-height: 1;
}

/* ── Section Divider Line ── */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, rgba(255,107,0,0.4) 70%, transparent 100%);
    position: relative;
    overflow: visible;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.7);
}

/* Thin accent bar below navbar */
.navbar-accent-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, rgba(255,107,0,0.5) 70%, transparent);
    width: 100%;
    position: fixed;
    top: 81px; /* below the 80px-tall navbar */
    left: 0;
    z-index: 999;
    pointer-events: none;
    transition: top 0.3s ease;
}

.navbar.scrolled + .navbar-accent-bar,
.navbar-accent-bar.nav-scrolled {
    top: 61px;
}

/* Above-footer divider line */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.6) 20%, var(--primary) 50%, rgba(255,107,0,0.6) 80%, transparent 100%);
    position: relative;
}

.footer-divider::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.15) 50%, transparent 100%);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Screens */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-badge {
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .event-card {
        padding: 30px 20px;
    }
    
    .event-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .navbar-brand-text {
        font-size: 1.25rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .flashcard {
        width: 280px;
        margin: 0 15px;
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* Events Page Specific Styles */
/* Style for gender filter buttons */
.gender-btn {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-btn:hover {
    transform: translateY(-2px);
}

/* Active sport card */
.sport-card.active {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-glow) !important;
}

/* New Hero Section Styles */
.hero-new {
    min-height: 100vh;
}

.hero-new.hero-page {
    min-height: 50vh;
}

.hero-title-new {
    font-family: 'Bebas Neue', 'Orbitron', sans-serif;
    letter-spacing: 4px;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-highlights span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-highlights .divider {
    color: var(--primary);
}

/* Diagonal Separator */
.diagonal-separator {
    width: 100%;
    height: 100px;
    background: transparent;
    overflow: hidden;
}

.diagonal-separator svg {
    width: 100%;
    height: 100%;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Legacy Section */
.legacy-section {
    padding: 100px 0;
}

.legacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Featured Sports Section */
.featured-sports {
    background: var(--bg-dark);
}

.featured-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-sport-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
}

.featured-sport-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.25);
}

.featured-sport-image {
    height: 220px;
    position: relative;
}

.featured-sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 11, 0.9) 100%);
}

.featured-sport-content {
    padding: 1.5rem;
}

.featured-sport-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.featured-sport-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Pronites Section */
.pronites-section {
    padding: 0;
    overflow: hidden;
}

.pronites-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.pronites-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pronites-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.7) 100%);
}

.pronites-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pronites-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.pronites-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-highlights {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .pronites-content h2 {
        font-size: 2.5rem;
    }
    
    .featured-sports-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pronites-banner {
        height: 500px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reversed {
    direction: rtl;
}

.about-grid.reversed > * {
    direction: ltr;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid.reversed {
        direction: ltr;
    }
    
    .about-image img {
        height: 300px;
    }
}

/* Events Tabs Styles */
.events-tabs-section {
    padding-top: 50px;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-category-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.category-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Pronites small banner */
.pronites-container {
    margin-top: 2rem;
}

.pronites-banner-small {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pronites-background-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pronites-overlay-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.6));
}

.pronites-content-small {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.pronites-content-small h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.pronites-content-small p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .event-category-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-category-header .category-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-image img {
        height: 250px;
    }
    
    .pronites-banner-small {
        height: 350px;
    }
    
    .pronites-content-small h2 {
        font-size: 2.5rem;
    }
}

/* Masonry Gallery Styles */
.gallery-new {
    padding-top: 50px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 10px;
}

.masonry-item {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
}

.masonry-item:nth-child(2),
.masonry-item:nth-child(4),
.masonry-item:nth-child(7),
.masonry-item:nth-child(10) {
    grid-row-end: span 25;
}

.masonry-item:nth-child(1),
.masonry-item:nth-child(3),
.masonry-item:nth-child(5),
.masonry-item:nth-child(6),
.masonry-item:nth-child(8),
.masonry-item:nth-child(9),
.masonry-item:nth-child(11),
.masonry-item:nth-child(12) {
    grid-row-end: span 18;
}

.masonry-image {
    position: relative;
    height: 100%;
}

.masonry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover .masonry-image img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-item,
    .masonry-item:nth-child(2),
    .masonry-item:nth-child(4),
    .masonry-item:nth-child(7),
    .masonry-item:nth-child(10) {
        grid-row-end: span 20;
    }
}



/* ============================================
   Sports Carousel — Auto-scrolling loop
   ============================================ */
.sports-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0 3rem;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.sports-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: carouselScroll 35s linear infinite;
}

.sports-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Each card in the carousel */
.sport-slide {
    flex-shrink: 0;
    width: 320px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.sport-slide:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.35);
}

.sport-slide-img {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.sport-slide:hover .sport-slide-img {
    transform: scale(1.08);
}

.sport-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.15) 0%,
        rgba(11, 11, 11, 0.75) 70%,
        rgba(11, 11, 11, 0.95) 100%
    );
    transition: background 0.35s ease;
}

.sport-slide:hover .sport-slide-overlay {
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.05) 0%,
        rgba(255, 107, 0, 0.35) 70%,
        rgba(11, 11, 11, 0.92) 100%
    );
}

.sport-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
}

.sport-slide-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.sport-slide-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.sport-slide:hover .sport-slide-content p {
    color: var(--primary);
}

/* ── Pronites About-Style Section (events page) ── */
.pronites-about-section {
    margin-top: 2rem;
}

.pronites-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.pronites-about-grid.reversed {
    direction: rtl;
}

.pronites-about-grid.reversed > * {
    direction: ltr;
}

.pronites-about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pronites-about-text h3 span {
    color: var(--primary);
}

.pronites-about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

.pronites-about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.pronites-about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pronites-about-image:hover img {
    transform: scale(1.05);
}

.pronites-about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .pronites-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pronites-about-grid.reversed { direction: ltr; }
}

/* ── Contact Person Placeholder Cards ── */
.contact-persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-person-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-person-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.contact-person-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255,107,0,0.18);
}

.contact-person-card:hover::before {
    transform: scaleX(1);
}

.contact-person-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    transition: border-color 0.3s ease;
}

.contact-person-card:hover .contact-person-avatar {
    border-color: var(--primary);
}

.contact-person-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.contact-person-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact-person-info {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-persons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-persons-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile: slightly narrower cards */
@media (max-width: 768px) {
    .sport-slide {
        width: 260px;
        height: 200px;
    }

    .sports-carousel-track {
        gap: 1rem;
        animation-duration: 28s;
    }
}
/* ============================================
   SOCIAL CAUSE BUTTON (index.html hero)
   ============================================ */
.btn-social-cause {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #FF6B00, #FF8C42);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-social-cause::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.5), rgba(255, 107, 0, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-social-cause::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FF8C42, #FF6B00);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-social-cause:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5); */
    border-color: #eee837;
}

.btn-social-cause:hover::before {
    opacity: 1;
}

.btn-social-cause i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    animation: none;
    transition: all 0.4s ease;
}

.btn-social-cause i:hover {
    animation: pulse-heart 0.6s ease infinite;
}

.btn-social-cause span {
    position: relative;
    z-index: 1;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   REGISTRATION BANNER (events.html)
   ============================================ */
.registration-banner {
    position: relative;
    background: #0B0B0B;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,107,0,0.15);
    border-bottom: 1px solid rgba(255,107,0,0.15);
}

.registration-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,107,0,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 30% 30% at 20% 20%, rgba(255,107,0,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated particles */
.reg-banner-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255,107,0,0.35);
    animation: reg-float 6s infinite ease-in-out;
}
.reg-banner-particles span:nth-child(1) { width:6px; height:6px; top:15%; left:10%; animation-delay:0s; }
.reg-banner-particles span:nth-child(2) { width:4px; height:4px; top:70%; left:20%; animation-delay:1.2s; }
.reg-banner-particles span:nth-child(3) { width:8px; height:8px; top:30%; right:15%; animation-delay:0.6s; }
.reg-banner-particles span:nth-child(4) { width:5px; height:5px; top:80%; right:10%; animation-delay:2s; }
.reg-banner-particles span:nth-child(5) { width:3px; height:3px; top:50%; left:50%; animation-delay:1.5s; }
.reg-banner-particles span:nth-child(6) { width:7px; height:7px; top:20%; right:40%; animation-delay:3s; }

@keyframes reg-float {
    0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%      { transform: translateY(-20px) scale(1.3); opacity: 1; }
}

.reg-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.reg-banner-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    animation: reg-pulse 2s ease-in-out infinite;
}
@keyframes reg-pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
}

.reg-banner-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.reg-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.reg-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.reg-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.reg-banner-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.reg-banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}
.reg-divider-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); opacity: 0.5; }
.reg-divider-line { flex: 1; max-width: 80px; height: 1px; background: rgba(255,107,0,0.3); }
.reg-divider-icon { color: var(--primary); font-size: 1.2rem; }

.reg-banner-cta-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .registration-banner { padding: 4rem 0; }
    .reg-banner-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
}

/* ============================================
   GOLD SPONSOR STYLES (sponsors.html)
   ============================================ */
:root {
    --gold-primary: #D4AF37;
    --gold-light:   #F5E27A;
    --gold-dark:    #A07820;
    --gold-glow:    rgba(212, 175, 55, 0.35);
}

/* Gold title */
.gold-title {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold splash bar */
.gold-splash-bar {
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.08) 20%, rgba(212,175,55,0.18) 50%, rgba(212,175,55,0.08) 80%, transparent 100%);
    border-top: 1px solid rgba(212,175,55,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 0.9rem 1rem;
    text-align: center;
}
.gold-splash-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.gold-splash-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
}
.gold-star-icon { color: var(--gold-primary); font-size: 0.9rem; }
.gold-spark {
    display: inline-block;
    width: 30px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}
.gold-spark:last-child { transform: rotate(180deg); }

/* Sponsor logo grid */
.sponsors-showcase-section { position: relative; }
.sponsors-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-logo-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(11,11,11,0.8) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 2.5rem 1.5rem 1.8rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.sponsor-logo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.sponsor-logo-card:hover {
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--gold-glow);
}
.sponsor-logo-card:hover::before { opacity: 1; }

.sponsor-logo-img-wrap {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.1);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.sponsor-logo-card:hover .sponsor-logo-img-wrap {
    border-color: rgba(212,175,55,0.4);
}
.sponsor-logo-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}
.sponsor-logo-card:hover .sponsor-logo-img-wrap img {
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 8px var(--gold-glow));
}
.sponsor-logo-fallback {
    width: 100%; height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold-primary);
}
.sponsor-logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin: 0;
}

/* Gold shimmer divider */
.gold-shimmer-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 5%;
    background: #0B0B0B;
}
.gold-shimmer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    position: relative;
    overflow: hidden;
}
.gold-shimmer-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer { 0% { left:-100%; } 100% { left:200%; } }
.gold-trophy-icon {
    color: var(--gold-primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* Gold sponsor tier cards */
.sponsor-card-gold {
    border-color: rgba(212,175,55,0.45) !important;
    background: linear-gradient(145deg, rgba(212,175,55,0.1) 0%, var(--bg-card) 100%) !important;
    position: relative;
    overflow: visible;
}
.sponsor-card-gold .sponsor-logo i,
.sponsor-card-gold .sponsor-name,
.sponsor-card-gold .sponsor-tag { color: var(--gold-primary) !important; }
.sponsor-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gold-primary), transparent 60%);
    opacity: 0.12;
    pointer-events: none;
}
.sponsor-card-gold:hover {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 20px 50px var(--gold-glow) !important;
}
.sponsor-card-silver {
    border-color: rgba(212,175,55,0.2) !important;
}
.sponsor-card-silver .sponsor-logo i { color: #C0C0C0 !important; }

/* Why Sponsor grid */
.why-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.why-sponsor-card {
    background: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}
.why-sponsor-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--gold-glow);
}
.why-sponsor-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.why-sponsor-card:hover .why-sponsor-icon {
    background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1));
    box-shadow: 0 0 20px var(--gold-glow);
}
.why-sponsor-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.why-sponsor-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Thank You section */
.sponsor-thankyou-section {
    position: relative;
    background: linear-gradient(180deg, #0D0C08 0%, #0B0B0B 100%);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.thankyou-gold-rays {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.thankyou-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.thankyou-stars { margin-bottom: 1.5rem; }
.thankyou-stars i {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin: 0 0.3rem;
    animation: star-sparkle 2s ease-in-out infinite;
}
.thankyou-stars i:nth-child(2) { animation-delay: 0.4s; }
.thankyou-stars i:nth-child(3) { animation-delay: 0.8s; }
@keyframes star-sparkle {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

.thankyou-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 4px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
}
.thankyou-highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.thankyou-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.thankyou-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}
.thankyou-divider-stars { margin-top: 1rem; }
.thankyou-divider-stars i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin: 0 0.3rem;
    opacity: 0.7;
}

/* ============================================
   CONTACT IMAGE REPLACEMENT
   ============================================ */
.contact-campus-img {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.contact-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.contact-img-wrap:hover img { transform: scale(1.04); }
.contact-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(11,11,11,0.9), transparent);
}
.contact-img-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.contact-img-text i { color: var(--primary); }
.contact-reach-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
}
.contact-reach-box:hover { border-color: var(--border-hover); }
.contact-reach-icon {
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}
.contact-reach-box h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.contact-reach-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CONTACT TEAM CARDS (new 3-column with photo)
   ============================================ */
.contact-persons-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}
.contact-person-card-new {
    padding: 0 0 2rem !important;
    overflow: hidden;
}
.contact-person-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 1.5rem;
    background: var(--bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-person-photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}
.contact-person-card-new:hover .contact-person-photo img { transform: scale(1.06); }
.contact-person-avatar-fallback {
    width: 100%; height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.5;
}
.contact-person-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 0.75rem;
}
.faculty-badge { background: rgba(59,130,246,0.15); color: #60A5FA; border: 1px solid rgba(59,130,246,0.3); }
.sec-badge     { background: rgba(255,107,0,0.15); color: var(--primary); border: 1px solid rgba(255,107,0,0.3); }
.spons-badge   { background: rgba(212,175,55,0.15); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.3); }
.contact-person-role,
.contact-person-name,
.contact-person-info {
    padding: 0 1.5rem;
}

@media (max-width: 900px) {
    .contact-persons-grid-3 { grid-template-columns: 1fr !important; }
    .sponsors-logo-grid     { grid-template-columns: repeat(2, 1fr); }
    .why-sponsor-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sponsors-logo-grid { grid-template-columns: 1fr; }
    .why-sponsor-grid   { grid-template-columns: 1fr; }
    .thankyou-title     { font-size: 2.5rem; }
}

/* ============================================
   MOBILE FIXES — global
   ============================================ */
@media (max-width: 768px) {
    /* Hero CTA wrap properly */
    .hero-cta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .btn-social-cause { font-size: 0.85rem; padding: 0.8rem 1.5rem; }

    /* Section titles */
    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

    /* About grid stacks on mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Events tab buttons scrollable */
    .tabs-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .tabs-container::-webkit-scrollbar { display: none; }
    .tab-btn { white-space: nowrap; flex-shrink: 0; }

    /* Event category header stacks */
    .event-category-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .event-category-header .category-image { width: 100%; max-height: 200px; }
    .event-category-header .category-image img { height: 200px; }

    /* Contact content stacks */
    .contact-content { flex-direction: column; }
    .contact-info, .contact-campus-img { width: 100% !important; }

    /* Sponsor tier cards */
    .sponsors-grid { grid-template-columns: 1fr; }

    /* Footer links wrap */
    .footer-links { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }

    /* Navbar text sizes */
    .navbar-brand-text { font-size: 1.1rem; }
    .navbar-brand-sub  { font-size: 0.6rem; }

    /* Stat numbers */
    .stat-number { font-size: 2.2rem; }

    /* Pronites grid */
    .pronites-about-grid,
    .pronites-about-grid.reversed { direction: ltr; grid-template-columns: 1fr; gap: 2rem; }
    .pronites-banner-small { height: 260px !important; }
    .pronites-content-small h2 { font-size: 2rem !important; }

    /* Registration banner */
    .reg-banner-title { font-size: clamp(2.5rem, 12vw, 4rem); }

    /* Gold sponsor logo grid */
    .sponsors-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sponsor-logo-img-wrap { width: 90px; height: 65px; }

    /* Contact team 3 → 1 column */
    .contact-persons-grid-3 { grid-template-columns: 1fr !important; }
    .contact-person-photo { height: 220px; border-radius: 16px; margin: 0 0 1rem; }
    .contact-person-card-new { padding: 1.5rem !important; }
    .contact-person-photo,
    .contact-person-role,
    .contact-person-name,
    .contact-person-info { padding-left: 0 !important; padding-right: 0 !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .container  { padding: 0 1rem; }
    .section    { padding: 3rem 0; }

    .sponsors-logo-grid { grid-template-columns: 1fr; }
    .sponsor-logo-card  { padding: 2rem 1rem 1.5rem; }

    .why-sponsor-grid { grid-template-columns: 1fr; }

    .reg-banner-title { font-size: 2.6rem; letter-spacing: 2px; }

    .contact-img-wrap img { height: 220px; }

    .footer-name { font-size: 1rem; }
}