/* ==========================================================================
   RESET AND BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --magical-gold: #f59e0b;
    --magical-amber: #d97706;
    --magical-blue: #3b82f6;
    --background-dark: #1a1a2e;
    --text-light: #fbbf24;
    --text-white: #ffffff;
    --text-amber: #f3f4f6;
    --border-gold: rgba(251, 191, 36, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.3);
    --hover-bg: rgba(251, 191, 36, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Baskerville', serif;
    background: 
        linear-gradient(rgba(15, 15, 20, 0.9), rgba(25, 20, 15, 0.85)),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?q=80&w=2070') no-repeat center top / cover,
        url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?q=80&w=2070') no-repeat center 25% / cover,
        url('https://images.unsplash.com/photo-1520637836862-4d197d17c93a?q=80&w=2070') no-repeat center 50% / cover,
        url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?q=80&w=2070') no-repeat center 75% / cover,
        var(--background-dark);
    background-attachment: fixed, fixed, fixed, fixed, fixed;
    background-size: cover, cover, cover, cover, auto;
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.font-harry {
    font-family: 'MedievalSharp', cursive;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 5px var(--magical-gold), 0 0 10px var(--magical-gold), 0 0 15px var(--magical-gold);
        text-shadow: 0 0 5px var(--magical-gold);
    }
    50% { 
        box-shadow: 0 0 10px var(--magical-gold), 0 0 20px var(--magical-gold), 0 0 30px var(--magical-gold);
        text-shadow: 0 0 10px var(--magical-gold);
    }
}

@keyframes magical-parallax {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-5px) scale(1.02); 
    }
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%) rotate(45deg); 
    }
    100% { 
        transform: translateX(100%) rotate(45deg); 
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    background: url('https://i.postimg.cc/QCZGGR17/13.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none; /* Hidden by default, shown by JS */
}

/* Hide default cursor for the entire document */
html, * {
    cursor: none !important;
}

/* ==========================================================================
   PARTICLE BACKGROUND
   ========================================================================== */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--magical-gold);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
    opacity: 0.6;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(251, 191, 36, 0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'MedievalSharp', cursive;
    font-size: 1.5rem;
    color: var(--magical-gold);
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--magical-gold));
    transition: all 0.3s ease;
    object-fit: contain;
    max-width: 200px;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 15px var(--magical-gold)) brightness(1.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-amber);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--magical-gold);
    text-shadow: 0 0 10px var(--magical-gold);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--magical-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   COMMON STYLES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    padding: 2rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Remove transform to prevent overlapping */
    transform: none !important;
}

/* Specific height adjustments for sections */
#events {
    min-height: auto;
    padding: 3rem 0;
}

#contact {
    min-height: auto;
    padding: 3rem 0;
}

.section-title {
    font-family: 'MedievalSharp', cursive;
    font-size: 3rem;
    text-align: center;
    color: var(--magical-gold);
    margin-bottom: 3rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ==========================================================================
   SECTION BACKGROUNDS
   ========================================================================== */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(5, 10, 15, 0.1), rgba(15, 20, 25, 0.1)),
        url('Assets/WhatsApp Image 2025-08-02 at 08.41.01_1fc88a0d.jpg') no-repeat center / cover;
    opacity: 0.6;
    z-index: -1;
    /* Remove animation to prevent movement */
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(20, 15, 10, 0.1), rgba(30, 25, 20, 0.4)),
        url('Assets/WhatsApp Image 2025-08-02 at 08.41.05_3ed9f5dc.jpg') no-repeat center / cover;
        
    opacity: 0.4;
    z-index: -1;
    /* Remove animation to prevent movement */
}

#timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(10, 20, 15, 0.4), rgba(20, 30, 25, 0.3)),
        url('Assets/WhatsApp Image 2025-08-02 at 08.41.02_6bf0c116.jpg') no-repeat center / cover;
    opacity: 0.35;
    z-index: -1;
    /* Remove animation to prevent movement */
}

#events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(15, 15, 15, 0.1), rgba(25, 25, 25, 0.4)),
        url('Assets/WhatsApp Image 2025-08-02 at 08.41.03_76f4c6e7.jpg') no-repeat center / cover;
    opacity: 0.5;
    z-index: -1;
    /* Remove animation to prevent movement */
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(25, 15, 5, 0.1), rgba(35, 25, 15, 0.1)),
        url('Assets/WhatsApp Image 2025-08-02 at 08.41.04_cd43942f.jpg') no-repeat center / cover;
    opacity: 0.4;
    z-index: -1;
    /* Remove animation to prevent movement */
}

/* ==========================================================================
   LANDING SECTION
   ========================================================================== */
.landing-section {
    justify-content: center;
    text-align: center;
    /* Ensure proper spacing */
    margin-top: 80px; /* Account for fixed navbar */
}

.landing-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    
    filter: drop-shadow(0 0 20px var(--magical-gold));
    /*animation: pulse-glow 2s ease-in-out infinite;*/
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 0 30px var(--magical-gold)) brightness(1.1);
    transform: scale(1.05);
}

.main-title {
    font-family: 'MedievalSharp', cursive;
    font-size: 4rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.college-name {
    font-size: 1.2rem;
    color: var(--text-amber);
    margin-bottom: 3rem;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-container {
    margin: 3rem 0;
}

.countdown-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--magical-gold);
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-block {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.3));
    border: 2px solid var(--magical-gold);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.countdown-block:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.countdown-block span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--magical-gold);
    font-family: 'Cinzel', serif;
}

.countdown-block label {
    font-size: 0.9rem;
    color: var(--text-amber);
    font-family: 'Cinzel', serif;
    margin-top: 0.5rem;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */
.cta-button {
    background: linear-gradient(45deg, var(--magical-amber), var(--magical-gold));
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    background: linear-gradient(45deg, var(--magical-gold), var(--magical-amber));
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-card:hover::before {
    transform: translateX(100%);
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--magical-gold);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.about-card i {
    font-size: 3rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-amber);
    line-height: 1.6;
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--magical-gold);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: var(--magical-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--magical-gold);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

.timeline-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--magical-gold);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-amber);
    line-height: 1.6;
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.event-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.1) 0%, 
        rgba(219, 39, 119, 0.1) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.05), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.event-card:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.event-card:active {
    transform: translateY(-5px) scale(1.01);
}

.event-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.7);
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 25px rgba(251, 191, 36, 0.9);
}

.event-title {
    font-size: 1.75rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
    font-family: 'Cinzel Decorative', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.event-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magical-gold), transparent);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.event-card:hover .event-title::after {
    width: 100px;
    opacity: 1;
}

.event-description {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.meta-item i {
    color: var(--magical-gold);
    font-size: 1.1rem;
}

.event-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    margin-top: auto;
}

.event-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d97706, #b45309);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.event-button:active {
    transform: translateY(0);
}

.event-button:hover::before {
    opacity: 1;
}

.event-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.event-card:hover .event-glow {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: #0f172a;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.close-modal:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.7);
}

.modal-header h2 {
    font-size: 2.25rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
    font-family: 'Cinzel Decorative', serif;
}

.modal-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: rgba(251, 191, 36, 0.1);
    color: #f8fafc;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.modal-body {
    padding: 2rem 2.5rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    color: var(--magical-gold);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: 'Cinzel Decorative', serif;
}

.modal-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--magical-gold), transparent);
}

.modal-section p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--magical-gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.detail-item h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.95rem;
}

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

.rules-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.rules-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--magical-gold);
    font-size: 1.2rem;
    line-height: 1.6;
}

.coordinator-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.coordinator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.coordinator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.coordinator-info h4 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.coordinator-info p {
    color: #94a3b8;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coordinator-info a {
    color: var(--magical-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.coordinator-info a:hover {
    color: #f8fafc;
    text-decoration: underline;
}

.modal-footer {
    padding: 1.5rem 2.5rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.btn-cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .event-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .coordinator-card {
        flex-direction: column;
        text-align: center;
    }
    
    .coordinator-info p {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* Add floating animation to event cards on hover */
.event-card {
    animation: float 6s ease-in-out infinite;
}

/* Add delay to each card for a wave effect */
.event-card:nth-child(2) { animation-delay: 0.5s; }
.event-card:nth-child(3) { animation-delay: 1s; }
.event-card:nth-child(4) { animation-delay: 1.5s; }
.event-card:nth-child(5) { animation-delay: 2s; }

.event-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
}

.event-card p {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-details {
    margin-top: auto;
}

.team-info, .duration-info {
    color: var(--text-amber);
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-main {
    max-width: 800px;
    width: 100%;
}

.acceptance-letter {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2rem;
}

.acceptance-letter h3 {
    font-family: 'Cinzel', serif;
    color: var(--magical-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.letter-content {
    color: var(--text-amber);
    line-height: 1.6;
}

.greeting {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

.address-box {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid var(--magical-gold);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    font-style: normal;
}

.address-box p:first-child {
    font-weight: bold;
    color: var(--magical-gold);
}

.signature {
    font-family: 'Cinzel', serif;
    margin-top: 1rem;
}

.map-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container h3 {
    font-family: 'Cinzel', serif;
    color: var(--magical-gold);
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.map-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magical-gold), transparent);
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding-bottom: 50%; /* 2:1 aspect ratio for better map view */
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.map-frame:hover {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
    transform: translateY(-5px);
}

.map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    filter: grayscale(20%) sepia(10%) hue-rotate(5deg);
}

.map-frame iframe:hover {
    filter: grayscale(0%) sepia(0%) hue-rotate(0deg);
}

.map-instructions {
    text-align: center;
    margin-top: 1.2rem;
    color: var(--text-amber);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.map-instructions i {
    color: var(--magical-gold);
    margin-right: 0.5rem;
}

.map-instructions:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .map-container {
        padding: 1.5rem;
    }
    
    .map-frame {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {
    .map-container {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .map-container h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .map-frame {
        padding-bottom: 75%;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .map-container h3 {
        font-size: 1.3rem;
    }
    
    .map-frame {
        padding-bottom: 100%;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-gold);
    padding-bottom: 2rem;
    text-align: center;
    /* Ensure footer stays at bottom */
    position: relative;
    z-index: 10;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--magical-gold));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 20px var(--magical-gold)) brightness(1.1);
    transform: scale(1.05);
}

.footer-title {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.5rem;
    color: var(--magical-gold);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    list-style: none;
}

.social-links a {
    color: var(--magical-gold);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--magical-gold);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-amber);
    font-size: 0.9rem;
}

/* ==========================================================================
   COORDINATORS SECTION
   ========================================================================== */
#coordinators {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://i.pinimg.com/736x/7a/8a/a9/7a8aa9bbc63ba236d3942aaf97e274da.jpg') no-repeat center center/cover;
    position: relative;
    padding: 6rem 0;
    background-attachment: fixed;
}

.coordinators-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.coordinators-group {
    margin-bottom: 3rem;
}

.coordinators-group:last-child {
    margin-bottom: 0;
}

.group-title {
    color: var(--magical-gold);
    font-family: 'Cinzel', serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.group-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magical-gold), transparent);
}

.coordinators-grid {
    display: grid;
    gap: 2rem;
    justify-content: center;
}

.faculty-coordinators {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
}

.event-coordinators {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
}

.coordinator {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--magical-gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.coordinator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--magical-gold), var(--magical-amber));
}

.coordinator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magical-gold), var(--magical-amber));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #000;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coordinator:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.coordinator:hover .coordinator-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.coordinator-info h4 {
    color: var(--magical-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.coordinator-role {
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.coordinator-contact a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.coordinator-contact a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--magical-gold);
    transform: translateX(5px);
}

.coordinator-contact i {
    color: var(--magical-gold);
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .event-coordinators {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .faculty-coordinators,
    .event-coordinators {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .coordinator {
        padding: 1.5rem;
    }
    
    .group-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   MODAL STYLES
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 30, 0.98));
    border: 2px solid var(--magical-gold);
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Cinzel', serif;
    color: var(--magical-gold);
    margin: 0;
    flex-grow: 1;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    line-height: 1;
}

.close-modal:hover {
    color: var(--magical-gold);
}

.modal-body {
    padding: 1.5rem;
}

.event-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-white);
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
}

.detail-item i {
    color: var(--magical-gold);
    width: 20px;
    text-align: center;
}

.detail-item.prizes {
    grid-column: 1 / -1;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-gold);
    margin-top: 0.5rem;
}

.event-rules {
    margin-bottom: 2rem;
}

.event-rules h3 {
    color: var(--magical-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-rules h3 i {
    font-size: 1.2em;
}

.event-rules ul {
    list-style: none;
    padding-left: 1.5rem;
}

.event-rules li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.event-rules li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--magical-gold);
}

.event-coordinator {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    margin-bottom: 2rem;
}

.event-coordinator h3 {
    color: var(--magical-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coordinator-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.coordinator-avatar {
    width: 60px;
    height: 60px;
    background: var(--magical-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.coordinator-info h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coordinator-contact a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.coordinator-contact a:hover {
    color: var(--magical-gold);
}

.coordinator-contact i {
    width: 20px;
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--magical-gold);
    color: #000;
    border: none;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background: #e69009;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.btn i {
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .coordinator-card {
        flex-direction: column;
        text-align: center;
    }
    
    .coordinator-contact {
        align-items: center;
    }
}

/* ==========================================================================
   FACULTY & STUDENT CARDS IN MODAL
   ========================================================================== */
.event-coordinators {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.event-coordinators h3 {
    color: var(--magical-gold);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.event-coordinators h3 i {
    margin-right: 10px;
    color: var(--magical-gold);
}

.coordinator-card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.coordinator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.coordinator-avatar {
    width: 50px;
    height: 50px;
    background: var(--magical-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    margin-right: 1rem;
    flex-shrink: 0;
}

.coordinator-info {
    flex-grow: 1;
}

.coordinator-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-white);
    font-size: 1.1rem;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.coordinator-contact a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.coordinator-contact a:hover {
    color: var(--magical-gold);
}

.coordinator-contact i {
    margin-right: 8px;
    color: var(--magical-gold);
    width: 16px;
    text-align: center;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.student-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.student-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.student-avatar {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--magical-gold);
}

.student-info h4 {
    margin: 0 0 0.3rem 0;
    color: var(--text-white);
    font-size: 1rem;
}

.student-contact {
    display: flex;
    gap: 0.8rem;
}

.student-contact a {
    color: var(--text-white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.student-contact a:hover {
    color: var(--magical-gold);
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        height: 95px;
        max-width: 180px;
    }

    .main-logo {
        max-width: 300px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-block {
        padding: 1rem 0.75rem;
    }

    .countdown-block span {
        font-size: 1.5rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-sidebar {
        height: auto;
        justify-content: flex-start;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-logo {
        height: 40px;
        max-width: 150px;
    }

    .main-logo {
        max-width: 250px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .countdown-block span {
        font-size: 1.25rem;
    }

    .countdown-block label {
        font-size: 0.8rem;
    }
}