html{
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.card{
    padding: 40px !important;
    background: transparent;
    border: transparent;
    align-items: center;
}


.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background:transparent; /* Dark background matching theme */
    padding: 20px;
}
.container{
    justify-content: center;
    align-items: center;
    height: 70vh;
    background:transparent; /* Dark background matching theme */
    padding: 20px;
}

body{
    /* background: #000; */
    width: 100vw;
    height: 100vh;
    background: url('../images/body_bg.jpg');
    background-size: cover;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}


.section1, .section2{
    width: 100%;
    min-height: 80vh;
    position: relative;
    transform-style: preserve-3d;
    scroll-snap-align: start;
}

.section1{
    height: 100vh;
}

.section1::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("../images/landing/main_bg.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(-1px) scale(2.2);
}
.section1::after{
    content: "";
    width: 100%;
    position: absolute;
    background: url("../images/landing/main_bg.jpeg");
    background-size: cover;
}

.section1 .text{
    top: 10%;
    transform: translateZ(-0.5px) scale(1.5,1.6) translate(-33%, 10%) ;
}



.section2{
    height: 100vh;
    background: #000;  
}

.section1 .text{
    top: 30%;
    left: 50%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 12vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3),
                5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,e1) translate(-50%, 10%);

}
.section2 .text{
    top: 30%;
    left: 50%;
    position: absolute;
    font-family: 'Franklin Gothic Heavy';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3),
                5px 5px 70px rgba(255, 255, 255, 0.5);
    transform: scale(1,1.1) translate(-50%, 10%);
}


/* ==================================================================================================================================================== */
 /* ========================================   P R E   L O A D E R     ======================================================================================== */
/* ==================================================================================================================================================== */




/* Preloader Container */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    background: #000;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Animation */
.loader {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid #ffd369;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 210, 105, 0.7);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide preloader after page load */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Mobile Specific Loader */
@media (max-width: 768px) {
    #preloader{
        background: rgba(0, 0, 0);
    }
    .loader {
        background: black;
        height: 65px !important;
        border-width: 2px !important;
        box-shadow: 0 0 5px rgba(255, 210, 105, 0.6) !important;
    }
}


/* ==================================================================================================================================================== */
 /* ========================================   N A V B A R    ======================================================================================== */
/* ==================================================================================================================================================== */

.custom-navbar {
    background: transparent;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none;
    background: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-logo {
    height: 35px;
    width: auto;
    max-height: 100%;
}

.nav-link {
    color: white;
    transition: color 0.3s;
    font-size: 1.2rem;
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.custom-navbar .nav-link {
    color: #f1f1f1;
    font-weight: 500;
    transition: color 0.3s;
}

.custom-navbar .nav-link:hover {
    color: #FFD54F;
}

.brand-title {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.8);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logout-btn {
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #FFD700;
    color: #000;
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.9);
}

/* MOBILE SPECIFIC STYLES */
@media (max-width: 768px) {
    .custom-navbar {
        padding: 12px;
        margin-top: 15px;            /* Increased space from the top */
    }

    .navbar-logo {
        height: 45px;                /* Slightly smaller logo */
    }

    .navbar-toggler {
        font-size: 1.6rem;           /* Balanced hamburger icon */
    }

    .nav-link {
        font-size: 1.1rem;           /* Reduced font size */
        padding: 6px 0;
    }

    .logout-btn {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .collapse.navbar-collapse {
        position: absolute;
        top: 85px;                   /* Move dropdown menu down */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 12px;
        z-index: 10;
        text-align: center;
    }
}


/* Hide default collapse behavior */
.mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}
/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}



/* ==================================================================================================================================================== */
 /* ========================================   L A N D I N G C O N T A I N E R     ======================================================================================== */
/* ==================================================================================================================================================== */

.landing-hero {
    /* background: #000; */
    color: #fff;
    height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.hero-left, .hero-center, .hero-right {
    flex: 1;
}

.hero-left {
    text-align: left;
}

.hero-center {
    display: flex;
    justify-content: center;
}

.hero-right {
    text-align: right;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(130, 129, 128, 0.5);
}

.hero-title .highlight {
    display: block;
    font-size: 3rem;
    color: #959f96;
    text-shadow: 0 0 20px rgb(0, 0, 0);
    
}

.hero-subtitle {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #d3a716;
    
}

.hero-image {
    max-width: 250px;
}

.event-meta p {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.event-description {
    font-size: 0.95rem;
    color: #bbb;
    margin: 15px 0;
}

.btn-book {
    display: inline-block;
    padding: 12px 25px;
    background: #c8963e;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(200, 150, 50, 0.8);
}

.btn-book:hover {
    background: #ffd369;
    box-shadow: 0 0 20px rgba(255, 210, 105, 1);
    transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-left, .hero-center, .hero-right {
        text-align: center;
    }
}



.booking-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background:transparent; /* Dark background matching theme */
    padding: 20px;
}



.booking-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.booking-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-image img {
    max-width: 30vw;
    height: auto;
}

.booking-form-card {
    flex: 2;
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 0 15px rgba(255, 210, 105, 0.2); */
    color: white;
}

.booking-form-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd369;
    text-shadow: 0 0 10px rgba(255, 210, 105, 0.8);
}

/* Responsive for mobile */
@media (max-width: 991px) {
    .booking-container {
        flex-direction: column;
        gap: 20px;
    }

    .booking-image {
        display: none;
    }

    .booking-form-card {
        width: 100%;
        max-width: 400px;
    }
}



/* ==================================================================================================================================================== */
 /* ========================================   P A Y M E N T     ======================================================================================== */
/* ==================================================================================================================================================== */




/* Container */
.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    padding: 20px;
}

/* Card Styling */
.payment-card {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Title */
.payment-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Event Details */
.payment-details p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #f1f1f1;
}

/* Button */
.pay-btn {
    margin-top: 20px;
    background: #FFD700;
    color: #111;
    border: none;
    padding: 12px 20px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.pay-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-card {
        padding: 20px;
    }

    .payment-title {
        font-size: 1.5rem;
    }

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