:root {
    --primary-bg: #071c1f;
    --accent-color: #c5a059;
    --accent-hover: #a8894a;
    --bg-light: #f9f7f2;
    --text-white: #ffffff;
    --text-muted: #a6adad;
    --text-dark: #071c1f;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 90px;
    --container-max-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* Common Section Header */
.section-header {
    margin-bottom: 50px;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.subtitle::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.title span {
    color: var(--accent-color);
}

/* Navbar styles */
.navbar-container {
    background-color: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-container.scrolled {
    background-color: var(--primary-bg);
    padding: 10px 0;
    position: fixed;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--navbar-height);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Adjust height based on navbar-height and logo aspect ratio */
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-bg);
    min-width: 200px;
    padding: 15px 0;
    border-top: 3px solid var(--accent-color);
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
}

.search-btn:hover {
    color: var(--accent-color);
}

.divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255,255,255,0.1);
}

.order-btn {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.order-btn:hover {
    background-color: var(--accent-hover);
}

/* Mobile Toggle */

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    background-color: var(--primary-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    margin-bottom: 40px;
}

.stat-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-pics {
    display: flex;
    align-items: center;
}

.stat-pics img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--primary-bg);
    margin-left: -15px;
}

.stat-pics img:first-child {
    margin-left: 0;
}

.stat-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: -15px;
    border: 3px solid var(--primary-bg);
}

.stat-text strong {
    display: block;
    font-size: 1.1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-info {
    display: flex;
    gap: 40px;
}

.info-item {
    flex: 1;
}

.info-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    position: relative;
    margin-bottom: 8px;
}

.progress {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 10px;
}

.progress-val {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hero-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.main-img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 500px;
}

.side-img-top {
    height: 240px;
}

.side-img-bottom {
    height: 240px;
}

.floating-badge {
    position: absolute;
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 5;
}

.floating-badge h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.floating-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.chef-badge {
    top: -30px;
    right: -30px;
}

.location-badge {
    bottom: -30px;
    right: -30px;
}

/* Category Section */
        .rtt-scroll-section {
            padding: 2rem 0;
            background: #071c1f;
            overflow: hidden;
        }

        .rtt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .rtt-carousel-wrapper {
            position: relative;
            width: 100%;
        }

        .rtt-carousel-container {
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(
                to right,
                transparent,
                black 10%,
                black 90%,
                transparent
            );
        }

        .rtt-category-grid {
            display: flex;
            gap: 1.5rem;
            animation: rtt-scroll 30s linear infinite;
            width: fit-content;
            padding: 1rem 0;
        }

        /* Pause animation on hover */
        .rtt-category-grid:hover {
            animation-play-state: paused;
        }

        .rtt-category-card {
            flex: 0 0 auto;
            width: 140px;
            text-align: center;
            padding: 1.2rem 0.8rem;
            background: #071c1f;
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .rtt-category-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: white;
        }

        .rtt-category-card.active {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
        }

        .rtt-cat-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 0.8rem;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid transparent;
            transition: border-color 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .rtt-category-card:hover .rtt-cat-icon {
            border-color: #ff6b6b;
        }

        .rtt-category-card.active .rtt-cat-icon {
            border-color: white;
        }

        .rtt-cat-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .rtt-category-card span {
            font-size: 0.95rem;
            font-weight: 600;
            display: block;
            margin-top: 0.5rem;
            color: #2d3748;
        }

        .rtt-category-card.active span {
            color: rgb(32, 15, 15);
        }

        @keyframes rtt-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Duplicate the content for seamless loop */
        .rtt-category-grid {
            animation: rtt-scroll 30s linear infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .rtt-category-card {
                width: 110px;
                padding: 1rem 0.5rem;
            }
            
            .rtt-cat-icon {
                width: 70px;
                height: 70px;
            }
            
            .rtt-category-card span {
                font-size: 0.85rem;
            }
                .date-input, .time-input{
        width: 40% !important;
        
    }
        }


/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
}

.main-about-img {
    grid-column: 1 / 10;
    grid-row: 1 / 12;
    z-index: 2;
}

.side-about-img {
    grid-column: 7 / 13;
    grid-row: 6 / 13;
    z-index: 3;
    border: 10px solid var(--primary-bg);
}

.about-images .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.quality-badge {
    position: absolute;
    bottom: 50px;
    left: -40px;
    z-index: 5;
}

.about-title {
    margin-bottom: 25px;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Special Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.menu-title {
    margin-bottom: 20px;
}

.menu-description {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.featured-dish img {
    width: 100%;
    border-radius: 20px;
}

.menu-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-header h4 {
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    color: var(--accent-color);
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-image {
    position: relative;
}

.booking-image img {
    width: 80%;
    margin-left: 65px;
    height: 650px;
    border-radius: 20px;
}

.reservation-badge {
    position: absolute;
    top: -20px;
    left: 60px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.booking-form input {
    flex: 1;
    padding: 15px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    color: var(--text-white);
    font-family: inherit;
}

.booking-form input::placeholder {
    color: var(--text-muted);
}

.booking-form input:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #0c2529;
    padding: 100px 0;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-style: italic;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-btn {
    width: 50px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--accent-hover);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.footer-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-item h3 {
    margin-bottom: 15px;
}

.footer-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    border-radius: 5px;
}

.footer-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 3.5rem; }
    .chef-badge, .location-badge { right: 0; }
    .chef-badge {
    top: -52px;
    height: 96px;
    padding: 0px;
    width: 122px;}
    .booking-form input{
        width: 100%;
    }
    .booking-image img {
    width: 80%;
    margin-left: 15px;
    height: 300px;
    border-radius: 20px;
}
.subtitle::before{
    margin-bottom: 10px;
}
.feature-icon{
    margin-bottom: 15px;
}
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 80px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-info { justify-content: center; width: 100%; }
    .hero-images { max-width: 600px; margin: 0 auto; }
    .about-grid, .menu-grid, .booking-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .about-content { display: flex; flex-direction: column; align-items: center; }
    .about-description { margin-left: auto; margin-right: auto; }
    .about-images { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 80%; height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column; padding: 100px 40px;
        transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .nav-actions { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-info { flex-direction: column; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .form-row { flex-direction: column; }
}




/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-container {
    background: linear-gradient(135deg, #0c2529 0%, #071c1f 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.1);
}

.popup-close:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-header h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.popup-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form .form-group {
    width: 100%;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background-color: rgba(197, 160, 89, 0.1);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: var(--text-muted);
}

.popup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.popup-form select option {
    background-color: var(--primary-bg);
    color: var(--text-white);
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.popup-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.popup-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
}

.popup-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 20px;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Animation for popup */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .popup-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
}



        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup-container {
            background: linear-gradient(135deg, #0c2529 0%, #071c1f 100%);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(197, 160, 89, 0.3);
            transform: translateY(-50px);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-container {
            transform: translateY(0);
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 30px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .popup-close:hover {
            background-color: var(--accent-color);
            color: var(--primary-bg);
            transform: rotate(90deg);
        }

        .popup-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .popup-header h2 {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .popup-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .popup-form .form-group {
            width: 100%;
        }

        .popup-form input,
        .popup-form select,
        .popup-form textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .popup-form input:focus,
        .popup-form select:focus,
        .popup-form textarea:focus {
            border-color: var(--accent-color);
            outline: none;
            background-color: rgba(197, 160, 89, 0.1);
        }

        .popup-form input::placeholder,
        .popup-form textarea::placeholder {
            color: var(--text-muted);
        }

        .popup-form select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }

        .popup-form select option {
            background-color: var(--primary-bg);
            color: var(--text-white);
        }

        .popup-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .popup-submit {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            margin-top: 10px;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
        }

        .popup-submit:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
        }

        .popup-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .success-message {
            text-align: center;
            padding: 20px;
        }

        .success-message i {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .success-message h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .success-message p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* Fix for category scroll - starts only after content */
        .category-section {
            background-color: #0c2529;
            padding: 80px 0;
            overflow: hidden;
        }

        .carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .carousel-container {
            flex: 1;
            overflow: hidden;
            padding: 20px 0;
        }

        .category-grid {
            display: flex;
            gap: 40px;
            width: max-content;
            /* Animation starts after 3 seconds */
            animation: scroll 20s linear infinite 0s;
        }

        .category-grid:hover {
            animation-play-state: paused;
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 8 - 40px * 8));
    }
}

        .category-card {
            min-width: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .cat-icon {
            width: 120px;
            height: 120px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 50%;
            overflow: hidden;
            transition: var(--transition);
            border: 3px solid rgba(255,255,255,0.1);
        }

        .cat-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-card span {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-white);
            text-transform: uppercase;
        }

        .category-card:hover .cat-icon {
            background-color: var(--accent-color);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
            border-color: var(--text-white);
        }

        /* Special Menu Section Styles */
        .special-menu-section {
            background-color: var(--primary-bg);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
        }

        .menu-title {
            margin-bottom: 20px;
        }

        .menu-description {
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .featured-dish img {
            width: 100%;
            border-radius: 20px;
        }

        .menu-category {
            margin-bottom: 50px;
        }

        .category-title {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }

        .menu-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }

        .menu-item img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
        }

        .item-info {
            flex: 1;
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .item-header h4 {
            font-size: 1.1rem;
        }

        .price {
            font-weight: 700;
            color: var(--accent-color);
        }

        .item-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* WhatsApp Float Button Styles */
        .whatsapp-float {
            position: fixed;
            bottom: 40px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #20b859;
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float i {
            font-size: 35px;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Tooltip on hover */
        .whatsapp-float .tooltip {
            visibility: hidden;
            width: 120px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 70px;
            right: 0;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
            pointer-events: none;
        }

        .whatsapp-float:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        @media (max-width: 1200px) {
            .container { padding: 0 40px; }
        }

        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
            .menu-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .category-grid {
                gap: 20px;
            }
            .category-card {
                min-width: 120px;
            }
            .cat-icon {
                width: 100px;
                height: 100px;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-float i {
                font-size: 28px;
            }
        }
    

        /* Gallery Section Styles */
.gallery-section {
    padding: 40px 0;
    background-color: #071c1f;
}

.gallery-section .section-header.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-overlay .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    background: #ff6b6b;
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.gallery-overlay .btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* Date and Time Input Styles with White Icons */
.date-input-wrapper, .time-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input, .time-input {
    width: 100%;
    padding: 12px 15px 12px 40px !important;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.date-input::-webkit-calendar-picker-indicator,
.time-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 1;
    cursor: pointer;
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    font-size: 1.1rem;
    z-index: 1;
}

/* For Firefox */
.date-input, .time-input {
    color-scheme: dark;
}

/* Space Select Styles */
.space-select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.space-select option {
    background-color: #2a2a2a;
    color: white;
}

/* Popup Footer */
.popup-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.popup-footer .btn {
    flex: 1;
    padding: 14px;
    font-size: 1rem;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ff6b6b;
    color: white;
}

/* Full Menu Popup */
.menu-popup-container {
    max-width: 800px !important;
    max-height: 80vh;
    overflow-y: auto;
}

.menu-popup-content {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.menu-category-full {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.category-title-full {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title-full::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
}

.menu-items-full {
    display: grid;
    gap: 12px;
}

.menu-item-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item-full:hover {
    background-color: rgba(255, 107, 107, 0.1);
    transform: translateX(5px);
}

.menu-item-full.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #ff6b6b;
}

.menu-item-full span:first-child {
    color: white;
    font-weight: 500;
}

.menu-item-full .price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Featured Items Section */
.featured-items {
    margin-top: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.featured-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.15);
}

.featured-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ff6b6b;
    padding: 5px;
}

.featured-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.featured-item .price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* View Full Menu Button */
.view-full-menu-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.view-full-menu-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-footer {
        flex-direction: column;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-popup-container {
        width: 95%;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-full {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}





.date-wrapper {
    position: relative;
    display: inline-block;
}

#calendarIcon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
}


/*-------------------------Booking System-----------------------------------*/



        .lc-app {
            --bg: #071c1f;
            --card: #0b2428;
            --card2: #0d2b2f;
            --border: #1c4a52;
            --border2: #254e56;
            --gold: #c8a45a;
            --gold2: #e8c87a;
            --gold3: #a07830;
            --gold4: rgba(200, 164, 90, 0.12);
            --rose: #c45070;
            --rose2: #e8708a;
            --teal: #1e8090;
            --teal2: #25a0b4;
            --text: #ede5d8;
            --muted: #6a9098;
            --muted2: #3d6068;
            --booked: #180c0f;
            --booked-b: #4a1a22;
            --seat-base: #0e3038;
            --seat-hover: #143c46;
            --seat-sel: #2a1e06;
            --seat-arm: #0a2028;

            background: var(--bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 16px;
            font-family: 'Raleway', sans-serif;
            position: relative;
            overflow-x: hidden;
        }

        .lc-app::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 55% 35% at 15% 5%, rgba(201, 164, 90, 0.05) 0%, transparent 65%),
                radial-gradient(ellipse 45% 55% at 85% 95%, rgba(196, 80, 112, 0.04) 0%, transparent 65%),
                radial-gradient(ellipse 70% 25% at 50% 50%, rgba(30, 128, 144, 0.03) 0%, transparent 70%);
        }

        .lc-app::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.5;
            background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.6' fill='%23c8a45a' fill-opacity='.07'/%3E%3C/svg%3E");
        }

        .lc-inner {
            width: 100%;
            max-width: 920px;
            position: relative;
            z-index: 2;
        }

        /* STEPPER */
        .lc-stepper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 44px;
            animation: lc-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .lc-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            position: relative;
            flex: 1;
            max-width: 110px;
        }

        .lc-step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid var(--border);
            background: var(--card);
            color: var(--muted2);
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }

        .lc-step-txt {
            font-size: 9px;
            letter-spacing: 2px;
            color: var(--muted2);
            text-transform: uppercase;
            font-weight: 400;
            text-align: center;
            transition: color 0.4s;
        }

        .lc-step-line {
            flex: 1;
            height: 1px;
            background: var(--border);
            transition: background 0.4s;
            margin: 0 -1px;
            position: relative;
            top: -15px;
        }

        .lc-step.active .lc-step-num {
            border-color: var(--gold);
            background: var(--gold4);
            color: var(--gold2);
        }

        .lc-step.active .lc-step-txt {
            color: var(--gold);
        }

        .lc-step.done .lc-step-num {
            border-color: var(--gold3);
            background: rgba(160, 120, 48, 0.2);
            color: var(--gold);
        }

        .lc-step.done .lc-step-txt {
            color: var(--muted);
        }

        .lc-step-line.done {
            background: var(--gold3);
        }

        /* HEADER */
        .lc-header {
            text-align: center;
            margin-bottom: 36px;
            animation: lc-rise 0.7s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .lc-orn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .lc-orn-l {
            width: 70px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold));
        }

        .lc-orn-r {
            width: 70px;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .lc-orn-ico {
            color: var(--gold);
            font-size: 14px;
        }

        .lc-cinema {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 8px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .lc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4.5vw, 46px);
            font-weight: 300;
            color: var(--text);
            line-height: 1.1;
        }

        .lc-title em {
            font-style: italic;
            color: var(--gold2);
        }

        .lc-sub {
            margin-top: 8px;
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--muted);
            text-transform: uppercase;
            font-weight: 300;
        }

        /* PANELS */
        .lc-panel {
            display: none;
            animation: lc-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .lc-panel.show {
            display: block;
        }

        /* MOVIE CARD */
        .lc-movie-card {
            background: linear-gradient(135deg, var(--card), var(--card2));
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }

        .lc-movie-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.35;
        }

        .lc-poster {
            width: 58px;
            height: 80px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            border: 1px solid var(--rose);
            flex-shrink: 0;
            background: linear-gradient(145deg, #1a0810, #2d1020);
            box-shadow: 0 4px 18px rgba(196, 80, 112, 0.2);
        }

        .lc-minfo {
            flex: 1;
        }

        .lc-mname {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            color: var(--text);
            margin-bottom: 4px;
        }

        .lc-mmeta {
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.9;
            font-weight: 300;
        }

        .lc-mmeta b {
            color: var(--gold);
            font-weight: 400;
        }

        .lc-badge {
            display: inline-block;
            background: rgba(201, 164, 90, 0.1);
            border: 1px solid rgba(201, 164, 90, 0.3);
            color: var(--gold);
            font-size: 9px;
            letter-spacing: 2px;
            padding: 2px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-top: 6px;
        }

        .lc-lbl {
            font-size: 9px;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* DATES */
        .lc-dates {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: none;
            margin-bottom: 28px;
        }

        .lc-dates::-webkit-scrollbar {
            display: none;
        }

        .lc-dbtn {
            flex-shrink: 0;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px 14px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 66px;
        }

        .lc-dbtn:hover:not(.lc-disabled) {
            border-color: var(--gold);
            background: rgba(201, 164, 90, 0.06);
        }

        .lc-dbtn.lc-active {
            background: rgba(201, 164, 90, 0.12);
            border-color: var(--gold);
            box-shadow: 0 0 18px rgba(201, 164, 90, 0.12);
        }

        .lc-dbtn.lc-disabled {
            opacity: 0.35;
            cursor: not-allowed;
            pointer-events: none;
        }

        .lc-dday {
            font-size: 9px;
            letter-spacing: 2px;
            color: var(--muted);
            text-transform: uppercase;
        }

        .lc-dnum {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 300;
            color: var(--text);
            line-height: 1.1;
            margin: 2px 0;
        }

        .lc-dmon {
            font-size: 9px;
            letter-spacing: 1.5px;
            color: var(--muted2);
            text-transform: uppercase;
        }

        .lc-dbtn.lc-active .lc-dday,
        .lc-dbtn.lc-active .lc-dmon {
            color: var(--gold);
        }

        .lc-dbtn.lc-active .lc-dnum {
            color: var(--gold2);
        }

        /* TIMINGS */
        .lc-times {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .lc-tbtn {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 13px 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .lc-tbtn:hover {
            border-color: var(--teal);
            background: rgba(30, 128, 144, 0.05);
        }

        .lc-tbtn.lc-active {
            background: rgba(30, 128, 144, 0.13);
            border-color: var(--teal);
            box-shadow: 0 0 18px rgba(30, 128, 144, 0.14);
        }

        .lc-ttime {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            color: var(--text);
            letter-spacing: 1px;
        }

        .lc-tend {
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 1px;
            margin-top: 2px;
            font-weight: 300;
        }

        .lc-tbtn.lc-active .lc-ttime {
            color: var(--teal2);
        }

        /* SCREEN */
        .lc-screen-wrap {
            text-align: center;
            margin-bottom: 32px;
        }

        .lc-screen-glow {
            width: 72%;
            margin: 0 auto 8px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, #3af0ff 50%, var(--teal) 70%, transparent 100%);
            border-radius: 50%;
            box-shadow: 0 0 28px 5px rgba(30, 128, 144, 0.4), 0 0 55px 10px rgba(30, 128, 144, 0.14);
        }

        .lc-screen-lbl {
            font-size: 8px;
            letter-spacing: 6px;
            color: var(--muted2);
            text-transform: uppercase;
        }

        /* SEAT LAYOUT: 3 rows, each row has 2 pairs (total 6 pairs) */
        .lc-seat-area {
            margin-bottom: 28px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-right: 50px;
        }

        .lc-row {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 12px;
            margin-bottom: 0;
            flex-wrap: wrap;
        }

        .lc-rlbl {
            font-family: 'Cinzel', serif;
            font-size: 12px;
            color: var(--gold);
            width: 80px;
            text-align: right;
            margin-bottom: 6px;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .lc-pair {
            display: flex;
            gap: 2px;
            align-items: flex-end;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .lc-pair:hover:not(.lc-booked) {
            transform: translateY(-4px);
        }

        .lc-pair.lc-selected:not(.lc-booked) {
            transform: translateY(-5px);
        }

        .lc-pair.lc-booked {
            cursor: not-allowed;
            opacity: 0.45;
        }

        .lc-seat {
            width: 42px;
            position: relative;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
            transition: filter 0.3s;
        }

        .lc-pair:hover:not(.lc-booked) .lc-seat {
            filter: drop-shadow(0 6px 14px rgba(201, 164, 90, 0.25));
        }

        .lc-pair.lc-selected:not(.lc-booked) .lc-seat {
            filter: drop-shadow(0 6px 18px rgba(201, 164, 90, 0.45));
        }

        .lc-heart {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            font-size: 12px;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            filter: drop-shadow(0 0 4px rgba(232, 112, 138, 0.8));
        }

        .lc-pair.lc-selected:not(.lc-booked) .lc-heart {
            transform: translateX(-50%) scale(1);
        }

        .lc-plbl {
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 8px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            white-space: nowrap;
            color: var(--muted2);
            font-weight: 500;
            transition: color 0.3s;
        }

        .lc-pair.lc-selected:not(.lc-booked) .lc-plbl {
            color: var(--gold);
        }

        .lc-aisle {
            width: 28px;
        }

        /* LEGEND */
        .lc-legend {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .lc-leg {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 9px;
            letter-spacing: 2px;
            color: var(--muted);
            text-transform: uppercase;
        }

        .lc-leg-ico svg {
            width: 28px;
            height: auto;
        }

        /* BUTTONS */
        .lc-next-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold3));
            background-size: 200% 100%;
            border: none;
            border-radius: 14px;
            padding: 17px;
            color: #0d0a04;
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s;
            margin-top: 18px;
        }

        .lc-next-btn:hover:not(:disabled) {
            background-position: 100% 0;
            box-shadow: 0 8px 28px rgba(201, 164, 90, 0.35);
            transform: translateY(-1px);
        }

        .lc-next-btn:disabled {
            opacity: 0.28;
            cursor: not-allowed;
        }

        .lc-back-btn {
            background: none;
            border: 1px solid var(--border2);
            border-radius: 12px;
            padding: 12px 28px;
            color: var(--muted);
            font-family: 'Raleway', sans-serif;
            font-size: 12px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .lc-back-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .lc-btnrow {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 6px;
        }

        .lc-btnrow .lc-next-btn {
            flex: 1;
        }

        /* SUMMARY & FORM */
        .lc-sum-card,
        .lc-form-card {
            background: linear-gradient(135deg, var(--card), var(--card2));
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .lc-sum-card::before,
        .lc-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.35;
        }

        .lc-sum-head,
        .lc-form-head {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lc-sum-rows {
            margin-bottom: 18px;
        }

        .lc-sum-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid rgba(28, 74, 82, 0.35);
            gap: 12px;
        }

        .lc-slbl {
            font-size: 10px;
            letter-spacing: 2px;
            color: var(--muted);
            text-transform: uppercase;
            font-weight: 300;
            flex-shrink: 0;
        }

        .lc-sval {
            font-size: 13px;
            color: var(--text);
            font-weight: 400;
            text-align: right;
        }

        .lc-sval.gold {
            color: var(--gold2);
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
        }

        .lc-includes {
            background: rgba(7, 28, 31, 0.7);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 18px 20px;
            margin-bottom: 20px;
        }

        .lc-inc-title {
            font-size: 10px;
            letter-spacing: 3px;
            color: var(--teal2);
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 14px;
        }

        .lc-inc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        @media (max-width: 560px) {
            .lc-inc-grid {
                grid-template-columns: 1fr;
            }
        }

        .lc-inc-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: rgba(30, 128, 144, 0.06);
            border: 1px solid rgba(30, 128, 144, 0.15);
            border-radius: 10px;
        }

        .lc-inc-ico {
            font-size: 20px;
            flex-shrink: 0;
        }

        .lc-inc-name {
            font-size: 12px;
            color: var(--text);
            font-weight: 500;
        }

        .lc-inc-note {
            font-size: 10px;
            color: var(--muted);
            margin-top: 1px;
            font-weight: 300;
        }

        /* FORM */
        .lc-fgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
        }

        @media (max-width: 480px) {
            .lc-fgrid {
                grid-template-columns: 1fr;
            }
        }

        .lc-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .lc-field.lc-full {
            grid-column: 1 / -1;
        }

        .lc-field label {
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 500;
        }

        .lc-inp {
            background: rgba(7, 28, 31, 0.7);
            border: 1px solid var(--border2);
            border-radius: 10px;
            padding: 13px 15px;
            color: var(--text);
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.4px;
            transition: all 0.3s;
            outline: none;
            width: 100%;
        }

        .lc-inp:focus {
            border-color: var(--gold);
            background: rgba(201, 164, 90, 0.04);
            box-shadow: 0 0 0 2px rgba(201, 164, 90, 0.08);
        }

        /* SUCCESS */
        .lc-success {
            background: linear-gradient(145deg, var(--card), var(--card2));
            border: 1px solid var(--gold);
            border-radius: 24px;
            padding: 44px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 60px rgba(201, 164, 90, 0.1);
            animation: lc-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .lc-suc-ico {
            font-size: 58px;
            margin-bottom: 18px;
            display: block;
            animation: lc-bounce 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .lc-suc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-style: italic;
            color: var(--gold2);
            margin-bottom: 6px;
        }

        .lc-suc-sub {
            font-size: 10px;
            letter-spacing: 3px;
            color: var(--muted);
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .lc-suc-box {
            background: rgba(7, 28, 31, 0.7);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px;
            margin-bottom: 18px;
            text-align: left;
            font-size: 13px;
            color: var(--text);
            line-height: 2;
        }

        .lc-suc-info {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 22px;
        }

        .lc-suc-tel {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(30, 128, 144, 0.1);
            border: 1px solid rgba(30, 128, 144, 0.3);
            border-radius: 12px;
            padding: 12px 22px;
            font-size: 14px;
            color: var(--teal2);
            letter-spacing: 1px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .lc-suc-again {
            background: linear-gradient(135deg, var(--gold3), var(--gold));
            border: none;
            border-radius: 12px;
            padding: 14px 36px;
            color: #0d0a04;
            font-family: 'Cinzel', serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .lc-suc-again:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 164, 90, 0.3);
        }

        .lc-toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(70px);
            background: var(--card);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 13px 24px;
            border-radius: 12px;
            font-size: 13px;
            z-index: 9999;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
            opacity: 0;
            pointer-events: none;
            text-align: center;
            max-width: 88vw;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
        }

        .lc-toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .lc-toast.err {
            border-color: var(--rose);
        }

        .lc-toast.ok {
            border-color: var(--gold);
        }

        @keyframes lc-rise {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes lc-pop {
            from {
                opacity: 0;
                transform: scale(0.88);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes lc-bounce {
            0% {
                transform: scale(0) rotate(-10deg);
            }

            70% {
                transform: scale(1.15) rotate(3deg);
            }

            100% {
                transform: scale(1) rotate(0);
            }
        }
        
        
        
                /* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Prevent jump on button click */
.lc-app {
    scroll-margin-top: 100px;
}

/* Make sure buttons don't cause page jump */
.lc-next-btn, 
.lc-back-btn, 
.lc-suc-again {
    cursor: pointer;
}