:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Responsive Base Styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: clamp(40px, 8vw, 100px) 20px;
}

h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: clamp(20px, 4vw, 40px);
}

p {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.6;
}

/* Responsive Grid */
.grid {
    display: grid;
    gap: clamp(20px, 4vw, 30px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--black) !important;
}

/* Specific hover effect for ticket cards */
.ticket-card.hover-card:hover {
    background: var(--white) !important;
}

.ticket-card.hover-card:hover h3,
.ticket-card.hover-card:hover div,
.ticket-card.hover-card:hover ul,
.ticket-card.hover-card:hover li {
    color: var(--black) !important;
}

.ticket-card.hover-card:hover .cta-button {
    background: var(--gold);
    color: var(--white);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--black);
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

    .venue-section,
    .tickets-section,
    .agenda-section {
        padding: 60px 20px;
    }

    .carousel-container {
        height: 400px;
    }

    .ticket-card,
    .venue-amenity,
    .agenda-day {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }

    .venue-details,
    .tickets-grid,
    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 10px;
    }

    .pre-title {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }

    .carousel-container {
        height: 250px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100vw;
    height: 600px;
    margin: 40px 0;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.carousel {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 1.5s ease-out;
}

.carousel-slide {
    position: relative;
    width: 25%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}

.carousel-slide.active img {
    transform: scale(1);
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid var(--gold);
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.pre-title {
    color: var(--gold);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 2px solid var(--gold);
    min-width: 100px;
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.countdown-label {
    font-size: 14px;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

.venue-section {
    padding: 100px 20px;
    background-color: var(--black);
    text-align: center;
}

.venue-image {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border: 3px solid var(--gold);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid var(--gold);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* FAQ Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question h3 {
    color: var(--gold);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 20px;
}

.faq-answer ul {
    margin: 15px 0;
}

.faq-answer li {
    margin: 12px 0;
    position: relative;
    padding-left: 20px;
}

.faq-answer li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.faq-toggle {
    color: var(--gold);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 80px;
    }
}
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: var(--black);
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 80vh;
            margin: 0;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            display: none;
        }
        
        .carousel-slide.active {
            opacity: 1;
            display: block;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            padding: 10px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--gold);
        }
        
        .carousel-dot:hover {
            background-color: rgba(212, 175, 55, 0.7);
        }
        
        .carousel-dot.active {
            background-color: var(--gold);
            transform: scale(1.2);
        }