/* Hero Carousel Styles */
:root { 
    --primary-color: #FF4845;
    --primary-dark: #A01520;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --bg-dark: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #FF4845 0%, #A01520 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 72, 69, 0.9) 0%, rgba(160, 21, 32, 0.9) 100%);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Orbitron', monospace;
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* ADD THESE NEW RED VARIABLES */
    --red-accent: #FF6B6B;
    --red-light: #FF8E8E;
    --red-dark: #CC3835;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 170px;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 72, 69, 0.3) 0%,     ✅ RED ✓
        rgba(160, 21, 32, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: -1;
}

/* Navigation Controls */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.carousel-nav.prev {
    left: 2rem;
}

.carousel-nav.next {
    right: 2rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.carousel-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.carousel-dot:hover::before,
.carousel-dot.active::before {
    width: 100%;
    height: 100%;
}

.carousel-dot.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 72, 69, 0.6);
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 2;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-badge span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 0.9;
}

.title-subtitle {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    font-family: var(--font-display);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 72, 69, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 72, 69, 0.8), 0 0 40px rgba(255, 72, 69, 0.6);
    }
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(255, 72, 69, 0.3);
}
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

     @keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 72, 69, 0.3);  /* 🔴 CHANGE FROM GREEN */
    }
    70% {
        box-shadow: 0 8px 25px rgba(255, 72, 69, 0.7);  /* 🔴 CHANGE FROM GREEN */
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 72, 69, 0.3);  /* 🔴 CHANGE FROM GREEN */
    }
}

        /* Countdown Timer */
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem 1rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 100px;
        }

        .countdown-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 900;
            font-family: var(--font-display);
            color: var(--primary-color);
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Particle Effects */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel-nav {
                font-size: 1.5rem;
                padding: 0.8rem;
            }

            .carousel-nav.prev {
                left: 1rem;
            }

            .carousel-nav.next {
                right: 1rem;
            }

            .event-details {
                gap: 1.5rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .countdown-timer {
                gap: 1rem;
            }

            .countdown-item {
                min-width: 80px;
                padding: 1rem 0.5rem;
            }

            .countdown-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 180vh;
                padding-top: 80px;
                padding-bottom: 30px;
            }

            .title-subtitle {
                font-size: 3.5rem !important;
            }

            .event-details {
                flex-direction: column;
                gap: 1rem;
            }

            .detail-item {
                font-size: 0.9rem;
                padding: 0.8rem 1rem;
            }

            .countdown-timer {
                gap: 0.8rem;
            }

            .countdown-item {
                min-width: 70px;
                padding: 0.8rem 0.3rem;
            }

            .countdown-number {
                font-size: 1.8rem;
            }
        }
        
        
 /* Enhanced Ticket Section Styles */
.tickets-section {
    background: var(--bg-section);
    position: relative;
    padding: 100px 0;
}

.tickets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

/* Main Tickets Grid (Regular & VIP) */
.main-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-showcase {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.ticket-showcase.featured {
    transform: scale(1.02);
}

.ticket-showcase:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.ticket-showcase.featured:hover {
    transform: translateY(-10px) scale(1.04);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  background: linear-gradient(135deg, #FF4845 0%, #A01520 100%);  /* 🔴 REPLACE */
    box-shadow: 0 4px 15px rgba(255, 72, 69, 0.3);
    color: var(--text-primary);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    
}

.ticket-design-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.ticket-design-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ticket-showcase:hover .ticket-design-img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

.ticket-showcase:hover .ticket-overlay {
    opacity: 1;
}

.ticket-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ticket-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.ticket-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.ticket-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ticket-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ticket-features i {
    color: var(--primary-color);
}

/* Premium Tables Section */
.premium-tables-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 72, 69, 0.2);
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.premium-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.premium-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.premium-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.premium-table:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gold-table {
    border: 2px solid #daa520;
}

.gold-table:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.platinum-table {
    border: 2px solid #c0c0c0;
    transform: scale(1.02);
}

.platinum-table:hover {
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.table-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #c0c0c0, #ffffff);
    color: #333;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.table-header {
    margin-bottom: 2rem;
}

.table-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.gold-table .table-icon {
    background: linear-gradient(45deg, #daa520, #ffd700);
    color: #333;
}

.platinum-table .table-icon {
    background: linear-gradient(45deg, #c0c0c0, #ffffff);
    color: #333;
}

.table-header h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.table-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.table-price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.table-price .amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.gold-table .table-price {
    color: #daa520;
}

.platinum-table .table-price {
    color: #c0c0c0;
}

.table-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature i {
    width: 20px;
    color: var(--primary-color);
}

.table-cta {
    margin-top: 2rem;
}

.call-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Ticket Notice */
.ticket-notice {
  background: rgba(255, 72, 69, 0.05);                           /* 🔴 REPLACE */
    border: 1px solid rgba(255, 72, 69, 0.2);
   
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.notice-content i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-text h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.notice-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
   background: rgba(255, 72, 69, 0.1);                            /* 🔴 REPLACE */
    border: 1px solid rgba(255, 72, 69, 0.3);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ticket-showcase.featured {
        transform: none;
    }
    
    .premium-tables-grid {
        grid-template-columns: 1fr;
    }
    
    .platinum-table {
        transform: none;
    }
    
    .platinum-table:hover {
        transform: translateY(-10px);
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-design-container {
        height: 250px;
    }
    
    .ticket-price .amount {
        font-size: 2rem;
    }
    
    .table-price .amount {
        font-size: 1.5rem;
    }
    
    .premium-table {
        padding: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
    }
}


/* Past Events Video Section Styles */
.past-events-section {
    background: var(--bg-dark);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.past-events-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 72, 69, 0.03) 0%, transparent 70%);
    animation: rotateClockwise 30s linear infinite;
}

@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.video-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--bg-section);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 72, 69, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-button i {
    margin-left: 3px; /* Center play icon properly */
}

.video-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.video-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 72, 69, 0.1);                            /* 🔴 REPLACE */
    border: 1px solid rgba(255, 72, 69, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
   
}

.video-stats i {
    font-size: 0.8rem;
}

/* Videos CTA */
.videos-cta {
    text-align: center;
  background: rgba(255, 72, 69, 0.05);                           /* 🔴 REPLACE */
    border: 2px solid rgba(255, 72, 69, 0.2);
   
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.videos-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: var(--font-display);
}

.videos-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.videos-cta .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Video Controls Styling */
video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-timeline {
    filter: brightness(1.2) contrast(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-wrapper {
        height: 180px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .video-stats {
        gap: 0.5rem;
    }
    
    .video-stats span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .videos-cta {
        padding: 2rem 1.5rem;
    }
    
    .videos-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-item {
        padding: 1rem;
    }
    
    .video-wrapper {
        height: 160px;
    }
    
    .past-events-section {
        padding: 60px 0;
    }
    
    .videos-cta {
        padding: 1.5rem 1rem;
    }
}

/* Animation Enhancements */
.video-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.video-item:nth-child(1) {
    animation-delay: 0.2s;
}

.video-item:nth-child(2) {
    animation-delay: 0.4s;
}

.video-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Loading State */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 72, 69, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.video-wrapper video:not([src=""]) ~ ::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Enhanced Footer Styles */
.footer {
    background: var(--secondary-color);
    padding: 2rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 3rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(255, 72, 69, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .overlay-content i {
        font-size: 1.5rem;
    }
    
    .overlay-content span {
        font-size: 0.8rem;
    }
    
    .view-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}


/* Updated Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-section);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-primary);
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-width: 2px;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 72, 69, 0.3);
}


/* Premium Glenfiddich Sponsorship Section */
.glenfiddich-sponsorship {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.1) 0%, rgba(184, 134, 11, 0.1) 50%, rgba(139, 69, 19, 0.1) 100%);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.glenfiddich-sponsorship:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.6);
}

.glenfiddich-sponsorship::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #b8860b, #daa520, #ffd700, #b8860b);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glenfiddich-sponsorship:hover::before {
    opacity: 0.3;
}

.sponsorship-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sponsorship-title {
    color: #daa520;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.premium-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #b8860b, #daa520);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    animation: prestigePulse 3s ease-in-out infinite;
}

@keyframes prestigePulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.6);
    }
}

.premium-badge i {
    color: #ffd700;
    font-size: 1rem;
}

.glenfiddich-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.glenfiddich-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
}

.logo-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.glenfiddich-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.6));
    transition: var(--transition);
    z-index: 2;
}

.glenfiddich-sponsorship:hover .glenfiddich-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.8));
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #daa520;
    border-radius: 50%;
    animation: floatParticles 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1.2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2.4s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 3.6s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 4.8s;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

.glenfiddich-details {
    text-align: left;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #daa520;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
    background: linear-gradient(45deg, #b8860b, #daa520, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.brand-tagline {
    color: #f0e68c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    color: #daa520;
    font-size: 1.1rem;
    width: 20px;
}

.partnership-note {
    background: rgba(218, 165, 32, 0.1);
    border-left: 4px solid #daa520;
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
}

.partnership-note p {
    margin: 0;
    color: #f0e68c;
    font-style: italic;
    font-size: 1rem;
}

/* Decorative Elements */
.sponsorship-decorations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.decoration-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
}

.center-ornament {
    color: #daa520;
    font-size: 2rem;
    animation: ornamentGlow 2s ease-in-out infinite;
}

@keyframes ornamentGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(218, 165, 32, 0.8);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .glenfiddich-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .glenfiddich-details {
        text-align: center;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .sponsorship-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sponsorship-title {
        font-size: 1.5rem;
    }
    
    .glenfiddich-sponsorship {
        padding: 2rem 1.5rem;
    }
    
    .credit-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .credit-text {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .glenfiddich-logo-container {
        width: 120px;
        height: 120px;
    }
    
    .glenfiddich-logo {
        width: 100px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .glenfiddich-sponsorship {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .decoration-line {
        width: 60px;
    }
}


.simple-credit {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.simple-credit p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.simple-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.simple-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Additional CSS for Lineup Page - Add to main.css */

/* Lineup Hero Section */
.lineup-hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(255, 72, 69, 0.8) 0%, rgba(255, 110, 107, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 170px;
}

.lineup-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.lineup-hero .hero-content {
    position: relative;
    z-index: 2;
}

.lineup-hero .title-line-1,
.lineup-hero .title-line-2 {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 0.9;
}

.lineup-hero .title-line-1 {
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lineup-hero .title-line-2 {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.lineup-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 2rem auto 3rem;
    line-height: 1.6;
}

/* Lineup Sections */
.lineup-section {
    padding: 80px 0;
    position: relative;
}

.headliners-section {
    background: var(--bg-dark);
}

.supporting-section {
    background: var(--bg-section);
}

.comedians-section {
    background: var(--bg-dark);
}

.djs-section {
    background: var(--bg-section);
}

.more-artists-section {
    background: var(--bg-dark);
}

/* Headliners Showcase */
.headliners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.artist-card-large {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-section);
}

.artist-card-large:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.artist-card-large .artist-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.artist-card-large .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card-large:hover .artist-image img {
    transform: scale(1.1);
}

.artist-card-large .artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 72, 69, 0.9) 0%, rgba(160, 21, 32, 0.9) 100%);
    color: var(--text-primary);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.artist-card-large:hover .artist-overlay {
    transform: translateY(0);
}

.artist-card-large .artist-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 900;
}

.artist-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.artist-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.artist-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.headliner-badge {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 72, 69, 0.3);
}

/* Medium Artist Cards */
.artists-grid-lineup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.artist-card-medium {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
}

.artist-card-medium:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.artist-card-medium .artist-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.artist-card-medium .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card-medium:hover .artist-image img {
    transform: scale(1.05);
}

.artist-card-medium .artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-primary);
    padding: 1.5rem;
    text-align: center;
}

.artist-card-medium .artist-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.artist-card-medium .artist-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* Comedy and DJ Specific Styles */
.comedy-card,
.dj-card {
    position: relative;
}

.comedy-badge,
.dj-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 72, 69, 0.3);
}

.comedy-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.dj-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* CTA Section */
.lineup-cta-section {
    background: var(--bg-section);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.lineup-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Alternating Backgrounds */
.lineup-section:nth-child(even) {
    background: var(--bg-section);
}

.lineup-section:nth-child(odd) {
    background: var(--bg-dark);
}

/* Add subtle animations */
.artist-card-large,
.artist-card-medium {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.artist-card-large:nth-child(1) { animation-delay: 0.1s; }
.artist-card-large:nth-child(2) { animation-delay: 0.2s; }
.artist-card-large:nth-child(3) { animation-delay: 0.3s; }
.artist-card-large:nth-child(4) { animation-delay: 0.4s; }

.artist-card-medium:nth-child(1) { animation-delay: 0.1s; }
.artist-card-medium:nth-child(2) { animation-delay: 0.2s; }
.artist-card-medium:nth-child(3) { animation-delay: 0.3s; }
.artist-card-medium:nth-child(4) { animation-delay: 0.4s; }
.artist-card-medium:nth-child(5) { animation-delay: 0.5s; }
.artist-card-medium:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .lineup-hero {
        height: 80vh;
        padding-top: 120px;
    }
    
    .lineup-hero .title-line-1,
    .lineup-hero .title-line-2 {
        font-size: 3rem;
    }
    
    .lineup-hero .hero-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .headliners-showcase {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .artist-card-large {
        height: 350px;
    }
    
    .artists-grid-lineup {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .artist-card-medium {
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lineup-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .lineup-hero {
        height: 45vh;
    }
    
    .lineup-hero .title-line-1,
    .lineup-hero .title-line-2 {
        font-size: 2.5rem;
    }
    
    .headliners-showcase {
        grid-template-columns: 1fr;
    }
    
    .artists-grid-lineup {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .artist-card-medium {
        height: 200px;
    }
    
    .artist-card-large .artist-overlay {
        padding: 1.5rem;
    }
    
    .artist-card-medium .artist-overlay {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Updated Lineup Categories */
.lineup-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
  
    background: linear-gradient(135deg, #FF4845 0%, #A01520 100%);
    border-radius: 2px;
}

/* Vintage artists special styling */
.artist-card.vintage {
    position: relative;
    overflow: hidden;
}

.artist-card.vintage::before {
    content: 'ðŸŽµ';
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    font-size: 1.2rem;
    opacity: 0.8;
}

.artist-card.vintage .artist-overlay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%);
}

/* Hosts Grid Layout */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.host-card {
    width: 100%;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.host-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.host-card .artist-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.host-card .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.host-card:hover .artist-image img {
    transform: scale(1.1);
}

.host-card .artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    text-align: center;
}

.host-card .artist-overlay h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.host-card .artist-overlay p {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0;
}

/* Lineup CTA styling */
.lineup-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 72, 69, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lineup-category {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .hosts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .host-card .artist-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .host-card {
        max-width: none;
    }
}


/* About Page Styles - Add to main.partnership-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.partnership-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partnership-logo {
    text-align: center;
}

.partner-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.3));
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.5));
}

/* Event Details Section */
.event-details-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 72, 69, 0.5);
}

.detail-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.detail-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.detail-card strong {
    color: var(--primary-color);
}

/* About CTA Section */
.about-cta-section {
    background: var(--bg-section);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.about-cta-section .cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.about-cta-section .cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.about-cta-section .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: 70vh;
        padding-top: 120px;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 3rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-grid .flier-showcase {
        order: -1;
    }
    
    .event-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brownhill-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .brownhill-content .brownhill-image {
        order: -1;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .about-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 45vh;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 2.5rem;
    }
    
    .about-overview,
    .event-highlights,
    .about-brownhill,
    .partnership-section,
    .event-details-section {
        padding: 60px 0;
    }
    
    .event-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .highlight-card,
    .detail-card {
        padding: 1.5rem;
    }
    
    .flier-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-cta-section .cta-content p {
        font-size: 1rem;
    }
}

/* Animation Enhancements */
.highlight-card,
.detail-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }css */

/* About Hero Section */
.about-hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(255, 72, 69, 0.8) 0%, rgba(255, 110, 107, 0.9) 100%), 
            url('images/flier.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero .title-line-1,
.about-hero .title-line-2 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 0.9;
}

.about-hero .title-line-1 {
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .title-line-2 {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Event Overview Section */
.about-overview {
    padding: 100px 0;
    background: var(--bg-dark);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.overview-content .section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Event Stats */
.event-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 72, 69, 0.05);
    border: 1px solid rgba(255, 72, 69, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 72, 69, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Flier Showcase */
.flier-showcase {
    position: relative;
}

.flier-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
}

.flier-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-flier {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.flier-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.flier-container:hover .flier-overlay {
    opacity: 1;
}

.flier-container:hover .event-flier {
    transform: scale(1.05);
}

.flier-overlay .overlay-content {
    text-align: center;
    color: var(--text-primary);
}

.flier-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.flier-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Highlights Section */
.event-highlights {
    padding: 100px 0;
    background: var(--bg-section);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.highlight-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* About Brownhill Section */
.about-brownhill {
    padding: 100px 0;
    background: var(--bg-dark);
}

.brownhill-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.brownhill-text .section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.brownhill-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.brownhill-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.brownhill-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.brownhill-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.brownhill-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.brownhill-image {
    position: relative;
}

.brownhill-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

/* Partnership Section */
.partnership-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.partnership-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.partnership-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partnership-logo {
    text-align: center;
}

.partner-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.3));
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.5));
}

/* Event Details Section */
.event-details-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 72, 69, 0.5);
}

.detail-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.detail-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.detail-card strong {
    color: var(--primary-color);
}

/* About CTA Section */
.about-cta-section {
    background: var(--bg-section);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.about-cta-section .cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.about-cta-section .cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.about-cta-section .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: 70vh;
        padding-top: 120px;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 3rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-grid .flier-showcase {
        order: -1;
    }
    
    .event-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brownhill-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .brownhill-content .brownhill-image {
        order: -1;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .about-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 45vh;
    }
    
    .about-hero .title-line-1,
    .about-hero .title-line-2 {
        font-size: 2.5rem;
    }
    
    .about-overview,
    .event-highlights,
    .about-brownhill,
    .partnership-section,
    .event-details-section {
        padding: 60px 0;
    }
    
    .event-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .highlight-card,
    .detail-card {
        padding: 1.5rem;
    }
    
    .flier-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-cta-section .cta-content p {
        font-size: 1rem;
    }
}

/* Animation Enhancements */
.highlight-card,
.detail-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Contact Page Styles - Add to main.css */

/* Contact Hero */
.contact-hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 170px;
}

.contact-hero .title-line-1,
.contact-hero .title-line-2 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 0.9;
}

.contact-hero .title-line-1 {
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .title-line-2 {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--text-primary);
}

.availability {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 72, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
    display: block;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #e91e63, #f06292, #ff9800);
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.social-icon.youtube {
    background: linear-gradient(45deg, #ff0000, #ff5722);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 72, 69, 0.3);
}

.social-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-handle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.venue-details h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.venue-address {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.venue-address i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.venue-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.venue-features .feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.map-content {
    text-align: center;
    color: var(--text-secondary);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.map-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-content p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
        padding-top: 120px;
    }
    
    .contact-hero .title-line-1,
    .contact-hero .title-line-2 {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 60vh;
    }
    
    .contact-hero .title-line-1,
    .contact-hero .title-line-2 {
        font-size: 2.5rem;
    }
    
    .contact-methods,
    .contact-form-section,
    .social-section,
    .location-section {
        padding: 60px 0;
    }
    
    .contact-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Page Styles - Add to main.css */

/* Gallery Hero Section */
.gallery-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 170px;
}

.gallery-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: -2;
}

.gallery-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255, 72, 69, 0.3) 0%, 
        rgba(255, 110, 107, 0.5) 50%, 
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: -1;
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero .event-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 72, 69, 0.3);
}

.gallery-hero .hero-title .title-line-1,
.gallery-hero .hero-title .title-line-2 {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 0.9;
}

.gallery-hero .hero-title .title-line-1 {
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-hero .hero-title .title-line-2 {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.gallery-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 100px 0 50px;
    background: var(--bg-dark);
}

.filter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-header h2 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.filter-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 72, 69, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 72, 69, 0.2);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(255, 72, 69, 0.4);
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Main Gallery Grid */
.main-gallery {
    padding: 0 0 100px;
    background: var(--bg-dark);
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item-main {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-section);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 72, 69, 0.2);
}

.gallery-item-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-main:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-overlay-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 72, 69, 0.8) 0%,
        rgba(255, 110, 107, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-main:hover .gallery-overlay-main {
    opacity: 1;
}

.gallery-overlay-main .overlay-content {
    text-align: center;
    color: var(--text-primary);
    padding: 2rem;
}

.gallery-overlay-main .overlay-content i {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.gallery-overlay-main .overlay-content span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.gallery-overlay-main .image-details {
    margin-top: 1rem;
}

.gallery-overlay-main .image-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-overlay-main .image-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 72, 69, 0.5);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 72, 69, 0.2);
}

.lightbox-info h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lightbox-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 72, 69, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 72, 69, 0.5);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item-main {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item-main {
        height: 250px;
    }
    
    .social-gallery-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero .hero-title .title-line-1,
    .gallery-hero .hero-title .title-line-2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .gallery-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .filter-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .gallery-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item-main {
        height: 220px;
    }
    
    .gallery-overlay-main .overlay-content i {
        font-size: 2rem;
    }
    
    .gallery-overlay-main .overlay-content span {
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: -40px;
        right: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Photo Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    


    
    .social-info h3 {
        font-size: 1.5rem;
    }
    
    .hashtags {
        justify-content: center;
    }
    
    .upload-card {
        padding: 2rem 1rem;
    }
    
    .upload-card i {
        font-size: 2.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-filter-section {
        padding: 80px 0 30px;
    }
    
    .filter-header h2 {
        font-size: 2rem;
    }
    
    .filter-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gallery-item-main {
        height: 180px;
    }
    
    .gallery-overlay-main .overlay-content {
        padding: 1rem;
    }
    
    .gallery-overlay-main .overlay-content i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-overlay-main .overlay-content span {
        font-size: 0.8rem;
    }
    
    .gallery-overlay-main .image-details h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay-main .image-details p {
        font-size: 0.8rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        padding: 0 1rem;
    }
    
    .lightbox-info {
        padding: 1rem;
    }
    
    .lightbox-info h4 {
        font-size: 1.1rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
    
    /* Photo Stats Extra Small */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Social Gallery Extra Small */
    .hashtags {
        gap: 0.5rem;
    }
    
    .hashtag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .social-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
    
    .upload-card {
        padding: 1.5rem 1rem;
    }
    
    .upload-card i {
        font-size: 2rem;
    }
    
    .upload-card h4 {
        font-size: 1.1rem;
    }
    
    /* CTA Section Extra Small */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .gallery-cta-section {
        padding: 80px 0;
    }
}

/* Photo Stats Section */
.photo-stats {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.photo-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 72, 69, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 72, 69, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 72, 69, 0.5);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Social Gallery Section */
.social-gallery {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.social-gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 72, 69, 0.03) 0%, transparent 70%);
    animation: rotateClockwise 30s linear infinite;
}

.social-gallery-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .social-gallery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .upload-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .social-gallery-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .upload-card {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

.social-info h3 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hashtag {
    background: rgba(255, 72, 69, 0.1);
    border: 1px solid rgba(255, 72, 69, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.hashtag:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 72, 69, 0.3);
}

.social-links-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-btn.instagram:hover {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.social-btn.tiktok:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.social-btn.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.social-btn i {
    font-size: 1.5rem;
}

.upload-info {
    position: relative;
}

.upload-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 72, 69, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.upload-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 72, 69, 0.05);
    transform: translateY(-5px);
}

.upload-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.upload-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.upload-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Gallery CTA Section */
.gallery-cta-section {
    padding: 100px 0;
    background: var(--bg-section);
    text-align: center;
    position: relative;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.cta-content h2 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Add More Placeholder Styling */
.add-more-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 72, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-more-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(255, 72, 69, 0.05);
}

.add-more-content {
    text-align: center;
    color: var(--text-secondary);
}

.add-more-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.add-more-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.add-more-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Performance optimizations */
.gallery-item-main img {
    will-change: transform;
}

.gallery-overlay-main {
    will-change: opacity;
}

/* Accessibility improvements */
.filter-btn:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading animation for gallery items */
.gallery-item-main.loading {
    background: linear-gradient(90deg, var(--bg-section) 25%, rgba(255, 72, 69, 0.1) 50%, var(--bg-section) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}