/* Base Styles and Variables */
.logo img {
    width: 75px; /* Set logo width */
    height: auto; /* Maintain aspect ratio */
    margin: auto;
   
}


:root {
    --deep-blue: #1A237E;
    --light-blue: #4285F4;
    --bright-yellow: #FFD700;
    --soft-yellow: #FFEB3B;
    --dark-navy: #0D1B2A;
    --coral-accent: #FF5733;
    --white: #FFFFFF;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    --card-shadow: 0 10px 30px rgba(13, 27, 42, 0.3);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --capsule-glow: 0 0 20px rgba(255, 215, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background-color: var(--dark-navy);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.7), rgba(26, 35, 126, 0.8));
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    backdrop-filter: blur(5px);
    background-color: rgba(13, 27, 42, 0.2);
}

header.scrolled {
    background-color: rgba(13, 27, 42, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.clock-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bright-yellow);
    position: relative;
    margin-right: 15px;
    animation: glow 3s infinite alternate;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.hour-hand, .minute-hand {
    position: absolute;
    background-color: var(--bright-yellow);
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
}

.hour-hand {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
}

.minute-hand {
    width: 1px;
    height: 15px;
    transform: translate(-50%, -100%) rotate(270deg);
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--bright-yellow);
    text-shadow: var(--text-shadow);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bright-yellow);
    transition: var(--transition-fast);
}

nav ul li a:hover:after, 
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.cosmic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.festival-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--bright-yellow);
    text-shadow: var(--text-shadow);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.festival-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--soft-yellow);
    text-shadow: var(--text-shadow);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.7s;
}

.festival-dates {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    letter-spacing: 2px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.9s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s, opacity 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.6);
}

.cta-button:hover:before {
    opacity: 1;
    transform: scale(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--bright-yellow);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--bright-yellow);
    border-bottom: 2px solid var(--bright-yellow);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrowDown 1.5s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Tickets Section - Time Capsule Theme */
.tickets-section {
    position: relative;
    padding: 8rem 5% 6rem;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.9), rgba(26, 35, 126, 0.8));
    overflow: hidden;
}

.cosmic-clock {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
}

.clock-center {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--bright-yellow);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clock-hour {
    position: absolute;
    width: 4px;
    height: 120px;
    background-color: var(--bright-yellow);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
}

.clock-minute {
    position: absolute;
    width: 2px;
    height: 180px;
    background-color: var(--bright-yellow);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(180deg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--bright-yellow);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--white);
}

.ticket-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Time Capsule Ticket Styling */
.ticket-card.time-capsule {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(13, 27, 42, 0.9));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid rgba(66, 133, 244, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    padding-top: 30px;
}

.ticket-card.time-capsule:nth-child(2) {
    animation-delay: 0.2s;
}

.ticket-card.time-capsule:nth-child(3) {
    animation-delay: 0.4s;
}

.ticket-card.time-capsule:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.5), var(--capsule-glow);
    border-color: rgba(255, 215, 0, 0.5);
}

.ticket-card.time-capsule.featured {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2), var(--capsule-glow);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.ticket-card.time-capsule.featured:hover {
    transform: translateY(-25px) scale(1.08);
}

.time-portal {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--bright-yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
    animation: pulseGlow 3s infinite alternate;
}

.capsule-lid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, var(--bright-yellow), transparent);
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.year-marker {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity:1;
}

.time-icon {
    margin-bottom: 1rem;
    color: var(--bright-yellow);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--coral-accent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 15px;
    z-index: 1;
}

.ticket-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.discount-badge {
    display: inline-block;
    background-color: var(--bright-yellow);
    color: var(--dark-navy);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 1rem;
}

.ticket-content {
    padding: 2rem;
}

.ticket-info {
    text-align: center;
    margin-bottom: 1rem;
}

.ticket-quantity {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.regular-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.regular-price span {
    text-decoration: line-through;
}

.bundle-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-yellow);
    margin-bottom: 0.5rem;
}

.savings {
    font-size: 0.9rem;
    color: var(--soft-yellow);
}

.time-description {
    text-align: center;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.ticket-features {
    list-style: none;
    margin-top: 1.5rem;
}

.ticket-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.ticket-features li i {
    color: var(--bright-yellow);
    margin-right: 10px;
    font-size: 1rem;
}

.ticket-button {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 auto 2rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.ticket-card.featured .ticket-button {
    background: linear-gradient(135deg, var(--bright-yellow), var(--coral-accent));
    color: var(--dark-navy);
}

.ticket-button:hover {
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
    transform: translateY(-3px);
}

.ticket-card.time-capsule .ticket-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.ticket-card.time-capsule .ticket-button:hover:before {
    left: 100%;
}

.ticket-info-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--white);
}

.single-ticket-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--bright-yellow);
    text-decoration: none; /* Changed to none for a cleaner look */
    font-weight: 500;
    width: auto;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 1rem; /* Reduced padding */
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    border-radius: 30px; /* Reduced border radius */
    border: 2px solid var(--bright-yellow); /* Added border */
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.single-ticket-link:hover {
    color: var(--soft-yellow);
    transform: scale(1.05); /* Added scale effect on hover */
}


/* Reseller Section */
.reseller-section {
    padding: 6rem 5%;
    background-color: rgba(13, 27, 42, 0.7);
    position: relative;
    overflow: hidden;
}

.reseller-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reseller-info {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.time-keeper-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.time-keeper-badge i {
    color: var(--bright-yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

.time-keeper-badge span {
    font-weight: 600;
    letter-spacing: 1px;
}

.reseller-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--bright-yellow);
    text-shadow: var(--text-shadow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: rgba(26, 35, 126, 0.3);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition-fast);
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    background-color: rgba(26, 35, 126, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.3);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-item h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.reseller-signup {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background-color: rgba(26, 35, 126, 0.4);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--bright-yellow);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(13, 27, 42, 0.5);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.phone-input {
    display: flex;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: rgba(26, 35, 126, 0.6);
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.phone-input input {
    border-radius: 0 5px 5px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.reseller-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: #25D366; /* WhatsApp green */
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.reseller-submit-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.reseller-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background-color: rgba(13, 27, 42, 0.7);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-content {
    background-color: rgba(26, 35, 126, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    line-height: 0;
    color: var(--bright-yellow);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--bright-yellow);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background-color: rgba(26, 35, 126, 0.7);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-navy);
    padding: 5rem 5% 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;

}

.clock-logo.small {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: var(--bright-yellow);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.link-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 0.8rem;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.link-column ul li a:hover {
    color: var(--bright-yellow);
}

.social-media {
    display: flex;
    gap: 1.5rem;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-fast);
}

.social-media a:hover {
    background-color: var(--bright-yellow);
    color: var(--dark-navy);
    transform: translateY(-5px);
}




.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        opacity: 0.1;
        transform: translateX(-50%) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .festival-title {
        font-size: 4rem;
    }
    
    .festival-subtitle {
        font-size: 2rem;
    }
    
    .ticket-container {
        gap: 20px;
    }
    
    .reseller-container {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .festival-title {
        font-size: 3rem;
    }
    
    .festival-subtitle {
        font-size: 1.5rem;
    }
    
    .ticket-card.time-capsule {
        min-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .festival-title {
        font-size: 2.5rem;
    }
    
    .festival-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
}


@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .social-media {
        margin-top: 1rem;
    }
    
    .social-media {
        margin-top: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .festival-title {
        font-size: 3rem;
    }
    
    .festival-subtitle {
        font-size: 1.5rem;
    }
    
    .festival-dates {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .ticket-card.time-capsule {
        min-width: 100%;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-navy);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        list-style: none;
        text-align: center;
    }
    
    .mobile-menu ul li {
        margin: 2rem 0;
    }
    
    .mobile-menu ul li a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        cursor: pointer;
    }
}

@media (max-width: 576px) {
    .festival-title {
        font-size: 2.5rem;
    }
    
    .festival-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .ticket-header h3 {
        font-size: 1.5rem;
    }
    
    .bundle-price {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}
