        /* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Fixed Color System */
            --bg-primary: #020617;
            --bg-section: #020617;
            --bg-card: #0b1226;
            --text-primary: #f8fafc;
            --text-muted: #9ca3af;
            --accent-gold: #d4af37;
            
            /* Typography */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            
            /* Spacing - Large & Editorial */
            --section-padding: 140px 6%;
            --container-max: 1320px;
            
            /* Transitions */
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* ==================== NAVIGATION ====================
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 28px 6%;
            background: transparent;
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(2, 6, 23, 0.98);
            backdrop-filter: blur(12px);
            padding: 20px 6%;
            border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

      /*   .logo {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .logo span {
            color: var(--accent-gold);
            font-weight: 400;
         */

       /*  .nav-links {
            display: flex;
            gap: 48px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 0.8px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        } */

       /*  .reserve-btn {
            background: transparent;
            color: var(--accent-gold);
            padding: 11px 28px;
            border: 1px solid var(--accent-gold);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 13px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .reserve-btn:hover {
            background: var(--accent-gold);
            color: var(--bg-primary);
        } */

        /* ==================== HERO SECTION ==================== */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.65)), 
                        url('restro.jpg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 880px;
            padding: 0 40px;
        }

        .hero-subtitle {
            font-size: 13px;
            letter-spacing: 3.5px;
            color: var(--accent-gold);
            margin-bottom: 32px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 78px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 36px;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .hero-description {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 56px;
            line-height: 1.9;
            font-weight: 300;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 17px 44px;
            border: 1px solid var(--accent-gold);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--accent-gold);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 17px 44px;
            border: 1px solid rgba(248, 250, 252, 0.3);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .btn-secondary:hover {
            border-color: var(--text-primary);
            background: rgba(248, 250, 252, 0.05);
        }

        /* ==================== SECTIONS ==================== */
        section {
            padding: var(--section-padding);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            /* background-color: #071422; */
        }

        .section-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-subtitle {
            font-size: 12px;
            letter-spacing: 3.5px;
            color: var(--accent-gold);
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 52px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 28px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.9;
            font-weight: 300;
        }

        .divider {
            width: 60px;
            height: 1px;
            background: var(--accent-gold);
            margin: 32px auto;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--bg-section);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-image {
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 640px;
            object-fit: cover;
            transition: var(--transition);
            filter: brightness(0.85);
        }

        .about-image:hover img {
            transform: scale(1.03);
            filter: brightness(0.9);
        }

        .about-text h2 {
            font-family: var(--font-heading);
            font-size: 44px;
            color: var(--text-primary);
            margin-bottom: 32px;
            font-weight: 500;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.9;
            font-weight: 300;
        }

        .signature {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .signature-name {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--text-primary);
            font-style: italic;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .signature-title {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
        }

        /* ==================== HOURS & CONTACT ==================== */
        .hours-contact {
            background: var(--bg-primary);
        }

        .hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 80px;
  justify-content: center;
}


        .info-card {
            background: var(--bg-card);
            padding: 64px 48px;
            border: 1px solid rgba(212, 175, 55, 0.08);
            transition: var(--transition);
            text-align: center;
        }

        .info-card:hover {
            border-color: rgba(212, 175, 55, 0.2);
            transform: translateY(-8px);
        }

        .info-icon {
            font-size: 36px;
            margin-bottom: 32px;
            opacity: 0.7;
        }

        .info-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--text-primary);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .info-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 2;
            font-weight: 300;
        }

        .info-card p strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ==================== MENU SECTION ==================== */
        .menu {
            background: var(--bg-section);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 56px 80px;
            margin-top: 80px;
        }

        .menu-item {
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 16px;
            gap: 20px;
        }

        .menu-item h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .menu-price {
            font-size: 18px;
            color: var(--accent-gold);
            font-weight: 400;
            white-space: nowrap;
        }

        .menu-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
            font-weight: 300;
        }

        /* ==================== VIDEO SECTION ==================== */
        .video-section {
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            height: 75vh;
            background: linear-gradient(rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.6)),
                        url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1920&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .play-button {
            width: 90px;
            height: 90px;
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .play-button:hover {
            background: var(--accent-gold);
            transform: scale(1.08);
        }

        .play-button::after {
            content: '▶';
            font-size: 24px;
            color: var(--accent-gold);
            margin-left: 4px;
        }

        .play-button:hover::after {
            color: var(--bg-primary);
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials {
            background: var(--bg-section);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            margin-top: 80px;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 56px 44px;
            border-left: 1px solid var(--accent-gold);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
        }

        .quote-icon {
            font-size: 40px;
            color: var(--accent-gold);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 24px;
            font-family: var(--font-heading);
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 36px;
            font-style: italic;
            font-weight: 300;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .author-info h4 {
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .author-info p {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 300;
        }
/* ===============================
   TESTIMONIALS – PREMIUM BG
================================ */

.testimonials {
  position: relative;
  background: url("https://lh3.googleusercontent.com/gps-cs-s/AG0ilSwhKVj1X3JrQQFyLNZqD0zHp0IhEzAs-PN1HI5zWruvFH8Fi7yQGeZDoYBGGwujfSj6KYeuzrLHpBteOj0kuO4j9adRq-QRp_MugpD679AxkWDmF6ZxuuWN0oCIH40HNoha2-GJ=s680-w680-h510-rw") center / cover no-repeat;
  padding: 100px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2,6,23,0.92),
      rgba(2,6,23,0.85)
    );
  backdrop-filter: blur(6px);
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

/* glass cards */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

        /* ==================== ORDER & VOUCHER ==================== */
        .order-voucher {
            background: var(--bg-primary);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 56px;
            margin-top: 80px;
        }

        .action-card {
            background: var(--bg-card);
            padding: 80px 64px;
            border: 1px solid rgba(212, 175, 55, 0.08);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .action-card:hover {
            border-color: rgba(212, 175, 55, 0.2);
            transform: translateY(-8px);
        }

        .action-card-icon {
            font-size: 48px;
            margin-bottom: 36px;
            opacity: 0.7;
        }

        .action-card h3 {
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--text-primary);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .action-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 44px;
            line-height: 1.9;
            font-weight: 300;
        }

        /* ==================== BLOG SECTION ==================== */
        .blog {
            background: var(--bg-section);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 44px;
            margin-top: 80px;
        }

        .blog-card {
            background: var(--bg-card);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.05);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
            filter: brightness(0.8);
        }

        .blog-card:hover .blog-image {
            transform: scale(1.05);
            filter: brightness(0.85);
        }

        .blog-image-wrapper {
            overflow: hidden;
        }

        .blog-content {
            padding: 40px 36px;
        }

        .blog-date {
            font-size: 12px;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .blog-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.4;
            font-weight: 500;
        }

        .blog-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 24px;
            font-weight: 300;
        }

        .read-more {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .read-more:hover {
            gap: 12px;
        }

        /* ==================== RESERVATION FORM ==================== */
        .reservation {
            background: linear-gradient(rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.92)),
                        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover fixed;
        }

        .reservation-form {
            max-width: 840px;
            margin: 80px auto 0;
            background: var(--bg-card);
            padding: 72px 64px;
            border: 1px solid rgba(212, 175, 55, 0.12);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: var(--bg-primary);
            border: 1px solid rgba(212, 175, 55, 0.12);
            color: var(--text-primary);
            padding: 16px 20px;
            font-size: 14px;
            font-family: var(--font-body);
            transition: var(--transition);
            font-weight: 300;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .submit-btn {
            width: 100%;
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 18px;
            border: none;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 24px;
        }

        .submit-btn:hover {
            background: var(--text-primary);
        }

        /* ==================== LOCATION & MAP ==================== */
        .location {
            background: var(--bg-section);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 80px;
        }

        .location-info h3 {
            font-family: var(--font-heading);
            font-size: 36px;
            color: var(--text-primary);
            margin-bottom: 40px;
            font-weight: 500;
        }

        .location-details {
            margin-bottom: 48px;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 32px;
        }

        .location-icon {
            font-size: 20px;
            color: var(--accent-gold);
            min-width: 24px;
            opacity: 0.8;
        }

        .location-item p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.9;
            font-weight: 300;
        }

        .location-item p strong {
            color: var(--text-primary);
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .map-container {
            height: 560px;
            background: var(--bg-primary);
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.8)),
                        url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--text-muted);
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--bg-primary);
            padding: 100px 6% 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 72px;
            margin-bottom: 64px;
        }

        .footer-section h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--text-primary);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 26px;
            color: var(--text-primary);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .footer-logo span {
            color: var(--accent-gold);
            font-weight: 400;
        }

        .footer-section p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            font-weight: 300;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 16px;
            transition: var(--transition);
        }

        .social-icon:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 300;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 100px 5%;
            }

            .hero h1 {
                font-size: 62px;
            }

            .section-title {
                font-size: 44px;
            }

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
                gap: 64px;
            }

            .about-image img {
                height: 500px;
            }

            .hours-grid,
            .testimonials-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero-description {
                font-size: 16px;
            }

            .section-title {
                font-size: 36px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .reservation-form {
                padding: 56px 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 80px 5%;
            }

            .hero h1 {
                font-size: 38px;
            }

            .section-title {
                font-size: 32px;
            }

            .logo {
                font-size: 22px;
            }

            .reservation-form {
                padding: 44px 28px;
            }

            .action-card {
                padding: 64px 40px;
            }
        }




        /* extra finishing */

        .about,
.testimonials,
.blog,
.location {
  opacity: 0.95;
}
.chef-pick {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-left: 12px;
  opacity: 0.8;
}
.menu-item {
  padding-bottom: 44px;
}

.menu-item p {
  margin-top: 10px;
}
.menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}
.menu-cta {
  text-align: center;
  margin-top: 90px;
}

.menu-link {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  transition: all 0.35s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(212,175,55,0.6);
  transform: scaleX(0.4);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.menu-link:hover::after {
  transform: scaleX(1);
}
.form-note {
  margin-top: 18px;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  font-weight: 300;
}
.menu-item h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-link::after {
  background: rgba(212,175,55,0.4);
}
.submit-btn {
  transition: background 0.35s ease, transform 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}
.footer-legal {
  margin-top: 12px;
  font-size: 11px;
  color: #9ca3af;
}




/* whatsapp-toggle  */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  background: rgba(11, 18, 38, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);

  color: #d4af37;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 999;

  transition: all 0.35s ease;
}

.whatsapp-float:hover {
  background: #d4af37;
  color: #020617;
  transform: translateY(-3px);
}

.wa-icon {
  font-size: 14px;
}

@media (max-width: 480px) {
  .wa-text {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
}




/* time and date in one - calendar */

/* input[type="datetime-local"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 18, 38, 0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f8fafc;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
} */
/* Premium calendar input */
input[type="date"],
select {
  background: rgba(11, 18, 38, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f8fafc;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
  cursor: pointer;
}

/* Time reveal animation */
.time-group {
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
  max-height: 120px;
}

.time-group.hidden {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  pointer-events: none;
}
.time-group {
  grid-column: 1 / -1;   /* 🔥 spans full row */
}


/* ==============================
   FIX SELECT DROPDOWN VISIBILITY
================================ */

/* Base select styling */
.reservation-form select {
  background-color: #0b1226;      /* dark background */
  color: #f8fafc;                 /* light text */
  border: 1px solid rgba(255,255,255,0.15);
  appearance: none;
}

/* Dropdown options */
.reservation-form select option {
  background-color: #0b1226;      /* SAME as select */
  color: #f8fafc;                 /* readable text */
}

/* On focus */
.reservation-form select:focus {
  outline: none;
  border-color: #d4af37;          /* premium gold */
  box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
}

/* Disabled placeholder option */
.reservation-form select option[value=""] {
  color: #9ca3af;
}
.reservation-form select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 40px;
}


















.special-menu {
  background: #071422;
  padding: 140px 6%;
  color: #f8fafc;
}

.special-menu-inner {
  max-width: 1200px;
  margin: auto;
  /* text-align: center; */
}

.menu-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  
}
span.menu-eyebrow {
    display: flex;
    justify-content: center;}
    
.menu-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 22px 0;
  text-align: center;

}

.menu-divider {
  width: 60px;
  height: 1px;
  background: #d4af37;
  margin: 30px auto 80px;
}

/* LAYOUT */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGES */
.menu-image img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}

/* MENU LIST */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.dish {
  font-family: "Playfair Display", serif;
}

.price {
  color: #d4af37;
  white-space: nowrap;
}

/* CHEF TAG */
.chef-pick {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 8px;
  color: #d4af37;
  opacity: 0.75;
}

/* CTA */
.menu-cta {
  margin-top: 80px;
}

.menu-cta a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.menu-cta a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(212,175,55,0.5);
  transform: scaleX(0.4);
  transition: transform 0.35s ease;
}

.menu-cta a:hover::after {
  transform: scaleX(1);
}

.menu-image img {
  transition: opacity 0.45s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-image {
    display: none;
  }
}
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.menu-categories .cat {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.menu-categories .cat.active {
    color: var(--bg-primary);
}

.menu-categories .cat.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #d4af37;
}

.menu-content {
  display: flex;
  flex-direction: column;
}

.menu-group {
  display: none;
}

.menu-group.active {
  display: block;
}

.menu-item {
  padding: 18px 0 26px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.menu-item p {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
  line-height: 1.8;
}



/* ===============================
   SECTION ORNAMENT (AFTER ABOUT)
================================ */
.section-ornament {
  display: flex;
  justify-content: left;
  padding: 60px 0;
  background: #ffffff; /* or same bg as about */
}

.section-ornament img {
  width: 160px;
  opacity: 0.85;
  display: block;
}
.section-ornament {
  background: #020617;
}

/* video added */

/* ===============================
   FULL WIDTH VIDEO SECTION
================================ */

.full-video {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

/* background fill */
.video-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-bg-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) brightness(0.55);
  transform: scale(1.15);
}

/* foreground content */
.video-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

/* ===============================
   MAIN VIDEO FRAME
================================ */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9; /* desktop */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   MOBILE → 9:16
================================ */
@media (max-width: 768px) {
  .video-wrapper {
    aspect-ratio: 9 / 16;
    max-width: 420px;
    border-radius: 16px;
  }
}

/* ===============================
   PLAY BUTTON
================================ */

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-play-btn:hover {
  transform: scale(1.08);
  background: rgba(0,0,0,0.75);
}

.video-wrapper.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ===============================
   LIGHT HEADER TEXT
================================ */
.section-header.light {
  color: #fff;
  margin-bottom: 40px;
}

.section-header.light .divider {
  background: rgba(255,255,255,0.4);
}



/* ===============================
   MENU – SUBTLE AMBIENCE
================================ */

.menu-bg {
  position: relative;
  background: #020617;
  overflow: hidden;
}

/* left texture */
.menu-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 40%;
  height: 100%;
  background: url("food1.jpg") center / cover no-repeat;
  opacity: 0.08;
  filter: blur(20px);
}

/* right texture */
.menu-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: url("food2.jpg") center / cover no-repeat;
  opacity: 0.08;
  filter: blur(20px);
}

/* keep content above */
.special-menu-inner {
  position: relative;
  z-index: 2;
}
/* ===============================
   BLOG – SOFT AMBIENCE
================================ */

.blog {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 45%;
  height: 100%;
  background: url("food-blog.jpg") center / cover no-repeat;
  opacity: 0.05;
  filter: blur(26px);
}

.blog::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 45%;
  height: 100%;
  background: url("interior-blog.jpg") center / cover no-repeat;
  opacity: 0.05;
  filter: blur(26px);
}

.blog .container {
  position: relative;
  z-index: 2;
}
/* ===============================
   SPECIAL OFFERINGS – AMBIENCE
================================ */

.order-voucher {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.order-voucher::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 40%;
  height: 100%;
  background: url("food-offer1.jpg") center / cover no-repeat;
  opacity: 0.07;
  filter: blur(22px);
}

.order-voucher::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: url("food-offer2.jpg") center / cover no-repeat;
  opacity: 0.07;
  filter: blur(22px);
}

.order-voucher .container {
  position: relative;
  z-index: 2;
}
/* ===============================
   OPENING HOURS – MINIMAL TEXTURE
================================ */

.hours-contact {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.hours-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("interior-hours.jpg") center / cover no-repeat;
  opacity: 0.035;
  filter: blur(32px);
}

.hours-contact .container {
  position: relative;
  z-index: 2;
}




/* all section syncing in color and other mapping */

section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,0.08),
    transparent
  );
}
.info-card,
.testimonial-card,
.blog-card,
.action-card {
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}



/* testimonial - slider  */

.slider-testimonials {
  background: radial-gradient(circle at top, #0b122a, #020617);
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.8s cubic-bezier(.2,.9,.2,1);
}

.testimonial-card {
  min-width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 85%;
  }
}












/* ===============================
   TESTIMONIAL SLIDER (3 VISIBLE)
================================ */

.testimonials-slider {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 48px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* exactly 3 cards visible */
.testimonial-card {
  min-width: calc((100% - 96px) / 3);
}

/* tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc((100% - 48px) / 2);
  }
}

/* mobile */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}








/* ===============================
   NAV LOGO – SVG SYSTEM (FINAL)
================================ */
/* .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

Icon SVG
.logo-mark {
  height: 52px;        ⬅️ bigger = premium
  width: auto;
  display: block;
}

Text SVG
.logo-text {
  height: 233px;
  width: auto;
  display: block;
} */

/* Navbar height sync */
/* nav {
  min-height: 92px;
}

Scrolled state
nav.scrolled {
  min-height: 78px;
}

nav.scrolled .logo-mark {
  height: 44px;
}

nav.scrolled .logo-text {
  height: 203px;
} */

/* Mobile */
/* @media (max-width: 768px) {
  nav {
    min-height: 76px;
  }

  .logo-mark {
    height: 42px;
  }

  .logo-text {
    height: 203px;
  }
}
nav {
  padding: 28px 6%;
  min-height: 92px;
}
/* == =============================
   NAVBAR – PREMIUM PROPORTION
================================ */
/* nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  height: 96px;              🔥 fixed height
  padding: 0 6%;             ⬅️ remove vertical padding

  display: flex;
  align-items: center;

  background: transparent;
  transition: var(--transition);
}

nav.scrolled {
  height: 80px;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
/* ===============================
   LOGO – FINAL PREMIUM SCALE
================================ */
/* .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

icon
.logo-mark {
  height: 80px;      🔥 visually strong
  width: auto;
  display: block;
} */

/* text */
/*
.logo-text {
  height: 204px;      perfect optical ratio
  width: auto;
  display: block;
  margin-top: 2px;   baseline correction
  margin-left: -3.5rem;
}

scroll
nav.scrolled .logo-mark {
  height: 80px;
}

nav.scrolled .logo-text {
  height: 204px;
}
@media (max-width: 768px) {
  nav {
    height: 80px;
  }

  .logo-mark {
    height: 80px;
  }

  .logo-text {
    height: 204px;
  }
}
 */





/* gemini */
/* ============================================================
   PREMIUM MOBILE NAVIGATION (CIRCULAR REVEAL)
============================================================ */

/* The Toggle Button */
 .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Transform Hamburger to 'X' */
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #020617; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 2000;
        
        /* THE PREMIUM REVEAL: Circular Clip Path */
        clip-path: circle(0% at 90% 5%);
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 5%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered text entry */
    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }

    .nav-links a {
        font-family: var(--font-heading);
        font-size: 28px;
        color: var(--text-primary);
        letter-spacing: 2px;
    }
} 

/* ============================================================
   MOBILE UX OPTIMIZATIONS
============================================================ */

@media (max-width: 768px) {
    /* Prevent horizontal shaking */
    html, body { overflow-x: hidden; width: 100%; }

    /* Hero Text Scaling */
    .hero h1 { font-size: 40px; line-height: 1.2; }
    .hero-subtitle { font-size: 11px; letter-spacing: 2px; }

    /* Sticky & Swipable Menu Categories */
    .menu-categories {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 10px 0;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .menu-categories::-webkit-scrollbar { display: none; }
    .menu-categories .cat { flex: 0 0 auto; padding: 0 15px; }

    /* Section Spacing for Mobile */
    section { padding: 80px 20px; }

    /* Testimonial slider gap adjustment */
    .testimonials-track { gap: 20px; }
    .testimonial-card { min-width: 100% !important; }
}

/* Ensure Logo remains visible on scroll */
/* nav.scrolled .logo-mark { height: 60px; }
nav.scrolled .logo-text { height: 160px; margin-left: -2.5rem; } */



















@media (max-width: 768px) {
    /* MENU LAYOUT FIX */
    .menu-layout {
        display: block; /* Remove grid for better flow */
        width: 100%;
    }

    /* Hide side images on mobile to prevent clutter */
    .menu-image.left, 
    .menu-image.right {
        display: none;
    }

    /* Adjust Menu Items for narrow screens */
    .menu-item {
        padding: 20px 0;
    }

    .menu-head {
        flex-direction: column; /* Stack dish name and price */
        gap: 5px;
        align-items: flex-start;
    }

    .dish {
        font-size: 20px; /* Slightly larger for mobile readability */
        line-height: 1.2;
    }

    .price {
        font-size: 16px;
        font-weight: 500;
    }

    /* Category Buttons: Make them a scrollable pill-bar */
    .menu-categories {
        justify-content: flex-start;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .menu-categories .cat {
        font-size: 10px;
        letter-spacing: 2px;
        background: rgba(255,255,255,0.03);
        padding: 8px 16px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .menu-categories .cat.active {
        background: var(--accent-gold);
        color: var(--bg-primary);
    }
}

@media (max-width: 768px) {
    .reservation-form {
        padding: 40px 20px; /* Smaller padding for narrow screens */
        margin-top: 40px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .form-grid {
        gap: 20px; /* Tighter gap for mobile */
    }

    .form-group label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 12px 15px; /* Thinner inputs for mobile */
        font-size: 15px; /* Prevents iOS auto-zoom on focus */
        border-radius: 8px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .form-note {
        font-size: 11px;
        line-height: 1.5;
    }
}


:root {
    /* Adding depth with shadows and glass */
    --glass-bg: rgba(11, 18, 38, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    
    /* Refining Typography spacing */
    --letter-spacing-wide: 3px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Luxury Section Dividers */
section::after {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.2;
}

/* Premium Card Style (Universal) */
.info-card, .blog-card, .action-card, .testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border) !important;
    transition: var(--transition-smooth) !important;
}

.info-card:hover, .blog-card:hover, .action-card:hover {
    border-color: var(--accent-gold) !important;
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

/* Desktop Hover Detail */
.menu-item {
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 0;
}

.menu-item:hover {
    padding-left: 15px;
}

.menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.menu-item:hover::before {
    width: 10px;
}

@media (max-width: 768px) {
    .menu-item:hover { padding-left: 0; } /* Disable for mobile */
    .menu-head .dish { font-size: 1.1rem; letter-spacing: 0.5px; }
    .menu-item p { font-size: 13px; opacity: 0.8; }
}

.reservation-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-premium);
}

/* Input Micro-interactions */
.form-group input, .form-group select, .form-group textarea {
    border: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 15px 5px !important;
}

.form-group input:focus {
    border-bottom-color: var(--accent-gold) !important;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .submit-btn { border-radius: 50px; } /* Pills look more modern on mobile */
}

























/* ==================== PREMIUM ROOT & VARIABLES ==================== */
:root {
    --bg-deep: #020617;
    --bg-card-glass: rgba(15, 23, 42, 0.7);
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== GLOBAL STYLES ==================== */
body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .dish {
    font-family: 'Playfair Display', serif;
}

/* Premium Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

/* ==================== HEADER & NAVIGATION ==================== */
/* nav {
    height: 90px;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    height: 70px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-premium);
} */

/* ==================== PREMIUM HERO ==================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== MENU SECTION (ADVANCED) ==================== */
.special-menu {
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.cat {
    padding: 12px 24px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-dim);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-premium);
}

.cat.active, .cat:hover {
    background: var(--accent-gold);
    color: var(--bg-deep);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

.menu-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 25px 0;
    transition: var(--transition-premium);
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-head .dish {
    font-size: 24px;
    color: var(--text-main);
}

.menu-head .price {
    font-weight: 600;
    color: var(--accent-gold);
}

/* ==================== RESERVATION FORM ==================== */
.reservation-form {
    max-width: 900px;
    padding: 80px;
    border-radius: 24px;
    background: var(--bg-card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group input, .form-group select, .form-group textarea {
    border: none;
    border-bottom: 1px solid var(--glass-border);
    background: transparent;
    border-radius: 0;
    padding: 18px 10px;
    color: #fff;
    transition: var(--transition-premium);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

/* ==================== PREMIUM FOOTER ==================== */
footer {
    background: #010409;
    padding: 100px 6% 40px;
}

.footer-logo span {
    text-shadow: 0 0 15px var(--accent-gold-glow);
}

/* ==================== RESPONSIVE PERFECTION ==================== */
/* @media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #020617; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 2000;
        
        ADJUSTED: This now targets the toggle's general area (Top Right)
        Change the 92% and 4% if your toggle is further left or down
        clip-path: circle(0% at 92% 4%); 
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    .nav-links.active {
        This expands the circle to cover the whole screen
        clip-path: circle(150% at 92% 4%);
        pointer-events: all;
    }


    .nav-links li { transform: translateY(30px); opacity: 0; }
    .nav-links.active li { 
        transform: translateY(0); 
        opacity: 1; 
        transition: 0.4s ease forwards;
    }

    .menu-layout { display: flex; flex-direction: column; }
    .menu-image { display: none; }
}

@media (max-width: 768px) {
    section { padding: 80px 24px; }
    
    .menu-categories {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
        scrollbar-width: none;
    }
    
    .reservation-form {
        padding: 40px 24px;
        margin: 0 10px;
    }

    .form-grid { grid-template-columns: 1fr; }
    
    .menu-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .dish { font-size: 1.2rem !important; }
}

.nav-toggle {
    display: none; Hidden on desktop
    align-items: center;
    justify-content: center;
    margin-left: auto; Pushes it to the right of the logo
    height: 40px;
    width: 40px;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
} */











/* ==================== PREMIUM FOOTER STYLES ==================== */
.footer {
    background: #010409; /* Deeper black for high contrast */
    padding-top: 120px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle background texture for footer */
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

/* Brand Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 25px;
}
.footer-logo-mark { height: 50px; width: auto; }
.footer-logo-text { 
    font-family: var(--font-heading); 
    font-size: 24px; 
    color: #fff; 
    letter-spacing: 1px;
}
.footer-logo-text span { color: var(--accent-gold); }

.footer-tagline {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-socials { display: flex; gap: 15px; }
.social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: grid; place-items: center;
    text-decoration: none;
    color: var(--accent-gold);
    font-size: 11px; font-weight: 600;
    transition: var(--transition-premium);
    border-radius: 50%;
}
.social-link:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-5px);
}

/* Links & Columns */
.footer-heading {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-premium);
}
.footer-links a:hover { color: var(--accent-gold); padding-left: 8px; }

/* Hours & Contact */
.footer-contact-list { list-style: none; }
.footer-contact-list li { margin-bottom: 20px; }
.footer-contact-list .label { 
    display: block; font-size: 10px; text-transform: uppercase; 
    color: var(--accent-gold); letter-spacing: 2px; margin-bottom: 5px;
}
.footer-contact-list p { color: #fff; font-size: 14px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-dim);
    font-size: 14px;
}
.dots { flex: 1; border-bottom: 1px dashed rgba(212, 175, 55, 0.2); margin: 0 10px; }

.footer-cta {
    display: inline-block;
    margin-top: 30px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 5px;
    transition: var(--transition-premium);
}
.footer-cta:hover { letter-spacing: 3px; border-bottom-width: 2px; }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}
.bottom-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 12px;
}
.bottom-links { display: flex; gap: 25px; }
.bottom-links a { color: var(--text-dim); text-decoration: none; transition: 0.3s; }
.bottom-links a:hover { color: #fff; }

/* ==================== FOOTER RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer { padding-top: 80px; }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand, .footer-tagline { margin-left: auto; margin-right: auto; }
    .footer-socials { justify-content: center; }
    .hours-row { justify-content: center; }
    .dots { display: none; }
    .hours-row span:first-child::after { content: ": "; }
    
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .bottom-links { justify-content: center; }
}
/* ===============================
   FOOTER LOGO - SYNC WITH NAV
================================ */

/* Specific override to maintain layout within footer brand column */
.footer-logo-override {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px; /* Spacing before tagline */
    justify-content: flex-start; /* Aligns left on desktop */
}

/* Inherits your premium navbar logo sizes */
.footer-logo-override .logo-mark {
    height: 70px; /* Slightly smaller than nav for visual balance in footer */
    width: auto;
}

.footer-logo-override .logo-text {
    height: 180px; /* Proportional to the footer logo mark */
    width: auto;
    margin-left: -2.8rem; /* Keeps the tight premium kerning */
    filter: brightness(1); /* Ensures it stays white/gold */
}

/* Responsive Sync */
@media (max-width: 768px) {
    .footer-logo-override {
        justify-content: center; /* Centers logo on mobile footer */
    }
    
    .footer-logo-override .logo-mark {
        height: 60px;
    }

    .footer-logo-override .logo-text {
        height: 150px;
        margin-left: -2.2rem;
    }
}


/* Update your Navigation CSS */
/* nav {
    position: fixed;
    top: 10px; Floating effect
    left: 50%;
    transform: translateX(-50%);
    width: 90%; 
    max-width: var(--container-max);
    height: 80px;
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px; Capsule shape
    z-index: 1000;
    padding: 0 40px;
    transition: var(--transition-premium);
} */

/* nav.scrolled {
    top: 10px;
    height: 65px;
    width: 93%;
    background: rgba(2, 6, 23, 0.9);
    border-color: var(--glass-border);
} */

/* Perfect alignment for the logo within the floating bar */
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
html {
    scroll-behavior: smooth;
}

/* Selection color (Gold instead of Blue) */
::selection {
    background: var(--accent-gold);
    color: #000;
}

/* Smooth Image Loading */
img {
    transition: filter 0.5s ease;
}

img:not([src]) {
    filter: blur(10px);
}



.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gold);
    z-index: 2000;
    width: 0%;
    transition: width 0.1s ease-out;
}

















/* ==================== PRE-LOADER STYLES ==================== */
/* ==================== INVITATIONAL SPLIT LOADER ==================== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent; /* Panels provide the color */
}

/* The two sliding panels */
.loader-panel {
    position: absolute;
    top: 0;
    width: 50.5%; /* Slight overlap to prevent 1px gap */
    height: 100%;
    background: #020617;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1;
}

/* .panel-left { left: 0; border-right: 1px solid rgba(212, 175, 55, 0.1); }
.panel-right { right: 0; border-left: 1px solid rgba(212, 175, 55, 0.1); } */

/* When hidden, slide panels out */
.loader-wrapper.loader-hidden .panel-left { transform: translateX(-100%); }
.loader-wrapper.loader-hidden .panel-right { transform: translateX(100%); }
.loader-wrapper.loader-hidden .loader-center-content { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(1.1); 
    transition: 0.8s ease-out;
}

.loader-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.premium-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.premium-loader-logo {
    height: 110px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

/* The Gold Scanner Light */
.gold-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        transparent
    );
    animation: goldScan 2s infinite ease-in-out;
}

.premium-loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.est-text {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.loader-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
    transition: width 1s ease;
}

.brand-name {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 300;
}

@keyframes goldScan {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
/* ==================== DARK MODE GOOGLE MAP ==================== */
.map-container iframe {
    filter: grayscale(1) invert(92%) contrast(85%) hue-rotate(180deg);
    /* Inverts the standard map to match your dark theme perfectly */
    border: none;
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0.5) invert(92%) contrast(90%) hue-rotate(180deg);
}

/* Fade out loader class */
.loader-hidden {
    opacity: 0;
    pointer-events: none;
}





/* video sec-gemini */

/* ============================================================
   PREMIUM VIDEO SECTION - CINEMATIC SYSTEM
============================================================ */

.premium-video-experience {
    position: relative;
    padding: 160px 0;
    background: #020617;
    overflow: hidden;
}

/* 1. Ambient Background Layer */
.video-ambient-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
    filter: blur(60px) brightness(0.4);
    transform: scale(1.2);
    pointer-events: none;
}

.video-ambient-glow video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. Content Layout */
.video-inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-text-overlay {
    text-align: center;
    margin-bottom: 60px;
}

.video-eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.video-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    font-weight: 500;
}

.video-accent-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 25px auto;
}

/* 3. Cinematic Frame Wrapper */
.cinematic-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px; /* Sharp premium edges */
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    cursor: pointer;
    overflow: hidden;
}

/* Floating Borders for Luxury feel */
.frame-border-top, .frame-border-bottom {
    position: absolute;
    width: 100px;
    height: 1px;
    background: var(--accent-gold);
    z-index: 10;
    transition: width 0.8s ease;
}
.frame-border-top { top: 20px; left: 20px; border-left: 1px solid var(--accent-gold); height: 30px; }
.frame-border-bottom { bottom: 20px; right: 20px; border-right: 1px solid var(--accent-gold); height: 30px; }

.cinematic-frame-wrapper:hover .frame-border-top,
.cinematic-frame-wrapper:hover .frame-border-bottom {
    width: 200px;
}

.cinematic-frame-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* 4. Play Button Micro-interactions */
.video-overlay-control {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.play-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.play-icon {
    color: #fff;
    font-size: 24px;
    margin-left: 5px;
}

.play-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
}

.play-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* 5. Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .premium-video-experience { padding: 100px 0; }
    .cinematic-frame-wrapper { max-width: 90%; }
}

@media (max-width: 768px) {
    .cinematic-frame-wrapper {
        aspect-ratio: 9 / 16; /* Cinematic Portrait for Mobile Reels style */
        max-width: 85%;
        border-radius: 20px; /* Softer for mobile */
    }
    
    .video-footer-stats {
        flex-direction: column;
        gap: 20px;
    }

    .frame-border-top, .frame-border-bottom { display: none; }
}

/* Hide controls when playing */
.cinematic-frame-wrapper.playing .video-overlay-control {
    opacity: 0;
    pointer-events: none;
}

/* 6. Video Footer Stats */
.video-footer-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.stat-item span {
    color: var(--accent-gold);
    font-weight: 700;
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}


/* Make the loader text breathe while waiting */
.brand-name {
    animation: textBreathe 3s infinite ease-in-out;
    background: linear-gradient(90deg, #fff, #d4af37, #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes textBreathe {
    0% { opacity: 0.5; background-position: 0% 50%; }
    50% { opacity: 1; background-position: 100% 50%; }
    100% { opacity: 0.5; background-position: 0% 50%; }
}

/* Make the loader line pulse */
.loader-line {
    box-shadow: 0 0 15px var(--accent-gold);
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1) !important;
}


/* Make the loader text breathe while waiting */
.brand-name {
    animation: textBreathe 3s infinite ease-in-out;
    background: linear-gradient(90deg, #fff, #d4af37, #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes textBreathe {
    0% { opacity: 0.5; background-position: 0% 50%; }
    50% { opacity: 1; background-position: 100% 50%; }
    100% { opacity: 0.5; background-position: 0% 50%; }
}

/* Make the loader line pulse */
.loader-line {
    box-shadow: 0 0 15px var(--accent-gold);
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1) !important;
}
.loader-center-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 200px;
    background: var(--accent-gold);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

.loader-panel {
    position: absolute;
    top: 0;
    /* Change 50% to 51% to create a 1% overlap in the middle */
    width: 51%; 
    height: 100%;
    background: #020617; /* Ensure this matches your body background */
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1;
    /* IMPORTANT: Remove any borders or box-shadows that might create a line */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.panel-left { 
    left: 0; 
}

.panel-right { 
    right: 0; 
}

/* Ensure the wrapper underneath is the same color */
.loader-wrapper {
    background-color: #020617;
}

@media (max-width: 991px) {
    .nav-links {
        /* FIX: Align origin to the toggle button (approx 90% right, 40px down) */
        clip-path: circle(0% at 90% 40px);
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
        opacity: 0;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 40px);
        pointer-events: all;
        opacity: 1;
    }

    /* Keep toggle button ON TOP of the opening menu */
    .nav-toggle {
        z-index: 3000 !important;
        position: relative;
    }
}
@media (max-width: 991px) {

  /* FULL SCREEN MOBILE MENU – NO GAPS */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 0 !important;

    background: #020617;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;

    z-index: 3000;

    /* OPEN FROM CORNER */
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);

    pointer-events: none;
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0%);
    pointer-events: all;
  }

  /* link animation */
  .nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--text-primary);
  }
}
@media (max-width: 991px) {
  nav {
    /* top: 0 !important; */
    left: 0 !important;
    transform: none !important;

    /* width: 100% !important; */
    border-radius: 0 !important;
    padding: 0 24px !important;
  }
}



/* ===============================
   LOGO RESPONSIVE FIX (FINAL)
================================ */

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

  Keep capsule shape intact
  nav {
    height: 64px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
  }

  Logo container
  .logo {
    gap: 10px;
  }

  Icon only
  .logo-mark {
    height: 42px !important;
  }

  HIDE TEXT LOGO ON MOBILE
  .logo-text {
    display: none !important;
  }
}
Capsule stability
nav {
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

Prevent logo from stretching nav
.logo {
  flex-shrink: 0;
}

Prevent toggle from stretching nav
.nav-toggle {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav-toggle {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  nav {
    height: 58px !important;
    padding: 0 14px !important;
  }

  .logo-mark {
    height: 36px !important;
  }
}
/* ================ ===============
   RESPONSIVE LOGO (BOTH VISIBLE)
================================ 

@media (max-width: 768px) {

  nav {
    height: 64px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 70%;
    overflow: hidden; prevents pushing capsule
  }

  .logo-mark {
    height: 40px !important;
    flex-shrink: 0;
  }

  .logo-text {
            height: 156px !important;
        margin-left: -38px !important;
    max-width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 360px) {

  nav {
    height: 58px !important;
    padding: 0 14px !important;
  }

  .logo-mark {
    height: 40px !important;
  }

  .logo-text {
        height: 156px !important;
        margin-left: -38px !important;  }
}
NAV STABILITY
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.nav-toggle {
  flex-shrink: 0;
}


@media (max-width: 991px) {

  .nav-links {
    position: fixed !important;

    FORCE true edge-to-edge
    inset: -1px !important;   🔥 removes hairline gaps
    width: calc(100vw + 2px) !important;
    height: calc(100vh + 2px) !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #020617;
    border-radius: 0 !important;

    overflow: hidden;
  }
}
LOCK SCROLL WHEN NAV IS OPEN
body.nav-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none

}
body.nav-open {
  overscroll-behavior: none;
}
body.nav-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: none;
}
body.nav-open .scroll-progress {
  opacity: 0;
}

body.loading {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}
body.nav-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: none;
}*/
html.loading,
body.loading {
  overflow: hidden !important;
  height: 100%;
  touch-action: none;
  overscroll-behavior: none;
}
.loader-panel {
  width: 50%;
}
.loader-wrapper {
  overflow: hidden;
}
.testimonial-card {
  min-width: 300px;                 /* smaller base */
  max-width: 340px;
  padding: 26px 28px;               /* tighter padding */
  
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.03);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
      0 30px 90px rgba(0,0,0,0.6),
      inset 0 0 0 1px rgba(212,175,55,0.35);
  }
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: #cbd5f5;
  font-style: italic;
  margin-bottom: 22px;
}

.quote-icon {
  font-size: 26px;
  color: rgba(212,175,55,0.35);
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
}

.author-info h4 {
  font-size: 14px;
  font-weight: 500;
  color: #f8fafc;
}

.author-info p {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
}
.testimonials-track {
  display: flex;
  gap: 28px;            /* tighter gap */
  padding: 20px 0;
}
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
    max-width: 280px;
    padding: 22px 22px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    #d4af37,
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}
.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.65);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.order-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Card */
.order-card {
  background: rgba(11,18,38,0.85);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 36px 34px;
  border-radius: 20px;
  max-width: 340px;
  width: 90%;
  text-align: center;

  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.45s ease;
}

.order-overlay.active .order-card {
  transform: translateY(0) scale(1);
}

.order-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
  margin-bottom: 12px;
}

.order-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 28px;
}

/* Options */
.order-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-option {
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.35s ease;
}

.order-option span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.order-option small {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Platform accents */
.order-option.zomato {
  background: rgba(239,79,95,0.12);
  border-color: rgba(239,79,95,0.35);
}

.order-option.swiggy {
  background: rgba(252,128,25,0.12);
  border-color: rgba(252,128,25,0.35);
}

.order-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}


/* ===============================
   NAV – FINAL CENTERED CAPSULE
================================ */

 /*nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 40px);   spacing from edges
  max-width: 1320px;

  height: 80px;
  padding: 0 32px;

    /* margin: 0 20px;              🔥 REAL left & right distance */
/*   margin-left: 20px;   🔥 real spacing
  margin-right: 20px; 

  display: flex;
  align-items: center;

  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;

  z-index: 3000;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
  height: 66px;
  background: rgba(2, 6, 23, 0.92);
  border-color: rgba(212,175,55,0.18);
}
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.nav-toggle {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  nav {
    height: 64px;
    padding: 0 18px;
        margin: 0 14px;   /* 🔥 visible side gap on mobile */
    /* width: calc(100% - 20px); tighter edge spacing */
  /* } */
/* } */
/* @media (max-width: 360px) {
  nav {
    height: 58px;
    padding: 0 14px;
        margin: 0 10px;

  }
}

@media (max-width: 1024px) {
  nav {
    margin-left: 16px;
    margin-right: 16px;
    height: 72px;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  nav {
    margin-left: 14px;
    margin-right: 14px;
    height: 64px;
    padding: 0 18px;
  }
}
@media (max-width: 360px) {
  nav {
    margin-left: 10px;
    margin-right: 10px;
    height: 58px;
    padding: 0 14px;
  }
} */


/* ===============================
   FINAL RESPONSIVE FLOATING NAV
================================ 

nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 32px);
  max-width: 1320px;

  height: 72px;
  padding: 0 26px;

  display: flex;
  align-items: center;

  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;

  z-index: 3000;
  transition:
    background 0.35s ease,
    height 0.35s ease,
    border-color 0.35s ease;
}

SCROLL STATE
nav.scrolled {
  background: rgba(2, 6, 23, 0.95);
  height: 64px;
  border-color: rgba(212,175,55,0.18);
}

INNER LAYOUT
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

LOGO
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  height: 40px;
  transition: transform 0.35s ease;
}

.logo-text {
  height: 145px;
  margin-left: -34px;
  transition: transform 0.35s ease;
}

Keep logo visually stable on scroll
nav.scrolled .logo-mark,
nav.scrolled .logo-text {
  transform: scale(0.95);
}

LINKS
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

CTA
.reserve-btn {
  border: 1px solid rgba(212,175,55,0.6);
  padding: 8px 18px;
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reserve-btn:hover {
  background: #d4af37;
  color: #020617;
}

 ===============================
   MOBILE NAV
================================ 

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #d4af37;
  display: block;
  transition: all 0.3s ease;
}

MOBILE MENU
@media (max-width: 991px) {

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .nav-links {
    position: fixed;
    inset: 0;

    background: #020617;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 2px;
    color: #f8fafc;
  }
}

MOBILE SIZE FIX
@media (max-width: 768px) {
  nav {
    height: 64px;
    padding: 0 18px;
  }

  nav.scrolled {
    height: 60px;
  }

  .logo-mark {
    height: 36px;
  }

  .logo-text {
    height: 125px;
    margin-left: -30px;
  }
}
 */

 
nav{
position:fixed;top:0;width:100%;z-index:1000;
padding:28px 6%;background:transparent;transition:var(--transition)
}
nav.scrolled{
background:rgba(2,6,23,.98);
backdrop-filter:blur(12px);
padding:20px 6%;
border-bottom:1px solid rgba(212,175,55,.08)
}
.nav-container{
max-width:var(--container-max);
margin:auto;
display:flex;justify-content:space-between;align-items:center
}
.logo{
font-family:var(--font-heading);
font-size:28px;color:#fff;text-decoration:none
}
.logo span{color:var(--accent-gold)}
.nav-links{display:flex;gap:48px;list-style:none}
.nav-links a{
color:var(--text-muted);
text-decoration:none;
font-size:14px;
letter-spacing:.8px
}
.nav-links a:hover{color:#fff}
.reserve-btn{
border:1px solid var(--accent-gold);
padding:11px 28px;
color:var(--accent-gold);
text-transform:uppercase;
font-size:13px
}
.reserve-btn:hover{background:var(--accent-gold);color:#020617}

@font-face {
    font-family: "SanvaFont";
    src: url("fonts/YaroRg-Bold\ \(2\).ttf") format("truetype");
}

/* container */
.plain-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* SVG icon */
.logo-icon {
    width: 32px;
    height: 32px;
    filter: none;          /* ❌ remove glow */
}

/* text */
.logo-text {
    font-family: "SanvaFont", sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1;
    color: #ffffff;        /* plain white */
    text-shadow: none;     /* ❌ remove neon */
}

.logo-text span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: none;
}
/* =========================
   NAV LOGO (PREMIUM)
========================= */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-text strong {
  font-weight: 600;
  margin-left: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-logo img {
    height: 36px;
  }
  .brand-text {
    font-size: 1.1rem;
  }
}
.nav-logo img {
  height: 48px;
  width: auto;
}

/* ===============================
   NAV LOGO – FINAL RESPONSIVE
================================ */

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* DESKTOP */
.nav-logo img {
  height: 68px;              /* 🔥 BIG & PREMIUM */
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}

/* SCROLL STATE */
nav.scrolled .nav-logo img {
  height: 56px;              /* Shrinks smoothly */
}

/* TABLET */
@media (max-width: 1024px) {
  .nav-logo img {
    height: 60px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-logo img {
    height: 48px;            /* Still visible & bold */
  }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
  .nav-logo img {
    height: 44px;
  }
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  height: 96px;              /* FIXED HEIGHT */
  padding: 0 6%;             /* ❌ NO vertical padding */

  display: flex;
  align-items: center;

  background: transparent;
  transition: var(--transition);
}

nav.scrolled {
  height: 80px;
  background: rgba(2,6,23,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo,
.hamburger {
  flex-shrink: 0;
}


/* ===============================
   NAV LOGO – FINAL
================================ */

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;              /* perfect desktop size */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* subtle hover polish */
.nav-logo:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

/* when navbar shrinks on scroll */
nav.scrolled .nav-logo img {
  height: 36px;
}

/* mobile */
@media (max-width: 768px) {
  .nav-logo img {
    height: 34px;
  }
}
.footer-logo-override:hover img {
  filter: drop-shadow(0 6px 18px rgba(212,175,55,0.25));
}
/* ===============================
   NAVBAR BASE
================================ */

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* initial transparent nav */
#navbar {
  background: transparent;
}

/* after scroll */
#navbar.scrolled {
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* ===============================
   NAV LOGO – PREMIUM RESPONSIVE
================================ */

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0; /* gives center feel */
  transition: padding 0.35s ease;
}

.nav-logo img {
  height: 64px;              /* BIG by default */
  width: auto;
  object-fit: contain;
  transition:
    height 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

/* SCROLLED STATE */
#navbar.scrolled .nav-logo {
  padding: 10px 0;
}

#navbar.scrolled .nav-logo img {
  height: 42px;              /* shrink smoothly */
  opacity: 0.96;
  transform: translateY(-1px);
}

/* ===============================
   RESPONSIVE TUNING
================================ */

/* tablets */
@media (max-width: 1024px) {
  .nav-logo img {
    height: 56px;
  }

  #navbar.scrolled .nav-logo img {
    height: 40px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .nav-logo {
    padding: 14px 0;
  }

  .nav-logo img {
    height: 48px;
  }

  #navbar.scrolled .nav-logo img {
    height: 36px;
  }
}

.order-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
}

.order-close:hover {
  opacity: 1;
}

/* ===============================
   PREMIUM MOBILE SCROLL INDICATOR
================================ */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-gold),
    transparent
  );
  border-radius: 10px;
}

/* Hover (desktop only, harmless on mobile) */
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}
body.nav-open::-webkit-scrollbar {
  width: 0;
}

body.nav-open {
  scrollbar-width: none;
}
body.nav-open .scroll-progress {
  opacity: 0;
}
/* ===============================
   GLOBAL SCROLL LOCK (FINAL)
================================ */

html.nav-open,
body.nav-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
  overscroll-behavior: none;
}

/* Hide progress bar when nav is open */
body.nav-open .scroll-progress {
  opacity: 0;
  pointer-events: none;
}

/* Hide scrollbar completely when nav open */
body.nav-open::-webkit-scrollbar {
  width: 0;
}
body.nav-open {
  scrollbar-width: none;
}



/* Whatsapp - Toggle  */

/* ===============================
   WHATSAPP FLOATING TOGGLE
================================ */

.whatsapp-toggle {
  position: fixed;
  bottom: 26px;
  right: 26px;

  width: 58px;
  height: 58px;

  background: #25D366; /* WhatsApp green */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 999;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.whatsapp-toggle img {
  width: 34px;
  height: 34px;
  display: block;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .whatsapp-toggle:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  }
}

/* Mobile size */
@media (max-width: 480px) {
  .whatsapp-toggle {
    width: 52px;
    height: 52px;
    bottom: 22px;
    right: 22px;
  }

  .whatsapp-toggle img {
    width: 30px;
    height: 30px;
  }
}
.whatsapp-toggle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
/* Scroll hide / show animation */
.whatsapp-toggle {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.whatsapp-toggle.hide {
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
}




.whatsapp-toggle {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}

.whatsapp-toggle.hide {
  transform: translateY(90px);
  opacity: 0;
  pointer-events: none;
}



 /* form - connecting popup */

 /* Success Modal Styling */
.reservation-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reservation-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.reservation-modal-card {
    background: #0b1226;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reservation-modal-overlay.active .reservation-modal-card {
    transform: translateY(0) scale(1);
}

.modal-decoration {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100px; height: 3px;
    background: var(--accent-gold);
    border-radius: 0 0 10px 10px;
}

/* Checkmark Animation */
.success-icon-wrap { margin-bottom: 25px; display: flex; justify-content: center; }
.checkmark-circle {
    width: 80px; height: 80px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.checkmark {
    width: 40px; height: 20px;
    border-left: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    transform: rotate(-45deg);
    opacity: 0;
}

.reservation-modal-overlay.active .checkmark {
    animation: checkmarkDraw 0.8s 0.4s ease forwards;
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; opacity: 1; }
    50% { width: 0; height: 20px; opacity: 1; }
    100% { width: 40px; height: 20px; opacity: 1; }
}

.modal-title { font-family: var(--font-heading); font-size: 28px; color: #fff; margin-bottom: 15px; }
.modal-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 5px; }
.modal-description { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 30px; }

/* Progress Bar */
.modal-loading-bar { width: 100%; height: 2px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; margin-bottom: 15px; }
.loading-progress { 
    width: 0%; height: 100%; background: var(--accent-gold); 
}

.reservation-modal-overlay.active .loading-progress {
    animation: progressLoad 3s linear forwards;
}

@keyframes progressLoad { to { width: 100%; } }

.modal-footer-text { font-size: 11px; color: #555; }
.modal-close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; cursor: pointer; opacity: 0.5; }




/* SOCIAL LINK PREMIUM STYLING */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.social-link img {
    width: 38.5px;   /* Icon size */
    height: 38.5px;
    object-fit: contain;
    filter: brightness(1); /* Keeps colors clear */
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.social-link:hover img {
    transform: scale(1.1);
    /* filter: brightness(0) invert(1); Turns icon white/black on gold hover */
}


