
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0A0A0A;
    color: #ffffff;
    overflow-x: hidden;
}

/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-btn{
    display: none;
}


.sign-in-btn {
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.sign-in-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A, #1a1a1a);
    overflow: hidden;
}

.services-hero{
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A, #1a1a1a);
    overflow: hidden;
}


.hero-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}


.hero-slide.active {
    opacity: 1;
    z-index: 1;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/image_1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-arrow {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #D4AF37, transparent);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #D4AF37;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-5px);
        opacity: 0.9;
    }
}

.mouse-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    animation: scroll-bounce 2s infinite;
}

.mouse-indicator:hover {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.mouse-wheel {
    width: 2px;
    height: 6px;
    background: #D4AF37;
    border-radius: 1px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 2s infinite;
}

.mouse-indicator:hover .mouse-wheel {
    background: #ffffff;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.heading{
    margin: 1.5rem 0;
    font-weight: bold ;
    color: #D4AF37;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.services-hero .hero-title{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #0A0A0A;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content .pop_card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
}

.popup-content .card-image {
    width: 100%;
    height: 200px;
    border-bottom: 1px solid #444;
}

.popup-content .card-info {
    padding: 15px;
    margin-bottom: 0;
}

.popup-content .card-title {
    font-size: 22px;
    margin-bottom: 5px;
}

.popup-content .price {
    font-size: 18px;
    color: #fcb900;
    margin-bottom: 10px;
}

.popup-content .description {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.popup-content .label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.popup-content .input {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.color-swatch {
    position: relative;
    cursor: pointer;
}

.color-swatch input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid transparent;
}

.color-swatch input[type="radio"]:checked + .swatch {
    border-color: #fcb900;
}

.quantity-stepper {
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
}

.quantity-stepper button {
    width: 30px;
    height: 30px;
    margin: 0 10px ;
    font-size: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: white;
    color: #000;
    cursor: pointer;
    line-height: 1;
    text-align: center;
}

.quantity-stepper span {
    font-size: 20px;
    font-weight: 500;
    color: #ccc;
}

.popup-content .card-btn {
    width: 100%;
    background-color: #fcb900;
    color: #000;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.card-btn:hover {
    background-color: #e0a800;
}

.close-button {
    position: absolute;
    top: 0px;
    right: 6px;
    font-size: 24px;
    cursor: pointer;

}

.cta-btn.secondary:hover {
    background: #D4AF37;
    color: #0A0A0A;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 3rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #D4AF37;
}

.section-subtitle, #description {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #121212, #1a1a1a);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Horizontal Scroll Sections */
.scroll-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    scroll-snap-align: start;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}


.card-image {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

.card-info {
    padding: 1rem;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #0A0A0A;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Tickets Section */
.tickets {
    background: linear-gradient(135deg, #121212, #1a1a1a);
}

.tickets-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;

}

.tickets-nav button {
    background: transparent;
    color: #cccccc;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tickets-nav button.active {
    background: #D4AF37;
    color: #0A0A0A;
    border-color: #D4AF37;
}

/* Merchandise Section */
.merchandise {
    background: #0A0A0A;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
}


/* Services*/
.our-services{
    background: #0A0A0A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 0.7rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.services img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}

.services-text {
    font-size: 1rem;
    /*font-style: italic;*/
    color: #cccccc;
    margin-bottom: 1rem;
}

.services-action {
    color: #D4AF37;
    text-decoration-line: none;
    font-weight: 300;
}



/* Testimonials */
.testimonials {
    background: #0A0A0A;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.testimonial {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #D4AF37;
    font-weight: 600;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    background: linear-gradient(135deg, #121212, #1a1a1a);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item, .gallery-item img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 10px;
    display: flex;
    max-width: 400px;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    font-weight: 600;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.3s ease;
}


.gallery-item:hover {
    border-radius: 10px;
    transform: scale(1.05);

    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Newsletter */
.newsletter {
    background: #0A0A0A;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #D4AF37;
}

.newsletter-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #0A0A0A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: #121212;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #D4AF37;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a{
    color: black;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}


.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

.No_item{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px!important;
    color: #5c5c5c;
}

#banner{
    z-index: 999;
    position: sticky;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {

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

    .section-subtitle, #description {
        font-size: 1em;
    }

    .tickets-nav button{
        font-size: 13px;
    }

    .services-hero{
        height: 45vh;

    }

    .scroll-container{
       justify-content: start;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0, 0, 0, 0.91);
        width: 100%;
        overflow: hidden;
        padding: 30px 50px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .nav-links.show-nav {
        max-height: 320px;
        opacity: 1;
        visibility: visible;
        padding: 30px 50px;
    }

    .nav-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .nav-btn{
        display: block;
        font-size: 35px;
        color: #fff2f2;
        cursor: pointer;
    }




    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /*.tickets-nav {
        flex-direction: column;
        gap: 1rem;
    }*/

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: auto;
    }

    .card {
        flex: 0 0 280px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .mouse-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
