@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

      /* CSS Variables - Modern Design System */
      :root {
        /* Primary Colors */
        --primary-dark: #0f0f0f;
        --primary-dark-light: #1a1a1a;
        --accent-gold: #d4af37;
        --accent-gold-light: #e5c471;
        --text-light: #f5f5f5;
        --text-white: #ffffff;
        --text-dark: rgba(255, 255, 255, 0.8);

        /* Legacy color definitions for existing elements */
        --primary-color: #1a1a1a;
        --secondary-color: #d4af37;
        --light-color: #f5f5f5;
        --text-color: #1a1a1a;
        --dark-color: #0f0f0f;

        /* Spacing Scale */
        --space-8: 8px;
        --space-16: 16px;
        --space-24: 24px;
        --space-32: 32px;
        --space-40: 40px;
        --space-48: 48px;
        --space-56: 56px;
        --space-64: 64px;

        /* Shadows */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
        --shadow: var(--shadow-md);

        /* Transitions */
        --transition: 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
        --transition-smooth: 0.3s ease-in-out;
      }

      /* Header-venue styles (moved here) */
      .header-venue {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 14px 0;
      }

      .header-left {
        flex: 0 0 auto;
      }
      .header-center {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
      }
      .header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .logo-img {
        height: 40px;
        width: auto;
        display: block;
        transition: all var(--transition);
      }

      /* Modern Logo Link Styles */
      .logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all var(--transition);
      }

      .logo-link:hover img {
        filter: brightness(1.1);
        transform: scale(1.05);
      }

      .choose-venue {
        color: #fff;
        background: rgba(0, 0, 0, 0.15);
        padding: 8px 18px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        text-transform: uppercase;
        font-size: 12px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all var(--transition);
      }

      .choose-venue:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.5);
        color: var(--accent-gold-light);
      }

      .book-btn {
        display: inline-block;
        background: var(--accent-gold);
        color: var(--primary-dark);
        padding: 10px 22px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
        text-transform: uppercase;
        font-size: 12px;
        border: none;
        cursor: pointer;
        transition: all var(--transition);
        letter-spacing: 0.5px;
      }

      .book-btn:hover {
        background: var(--accent-gold-light);
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
        transform: translateY(-2px);
      }

      .circle-menu {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.1);
        border: 1.5px solid rgba(212, 175, 55, 0.3);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: all var(--transition);
      }

      .circle-menu:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.6);
        color: var(--accent-gold-light);
      }

      /* Adjust header overlay - Modern Glassmorphism */
      header.overlay {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 8px 0;
      }

      /* Remove legacy nav-links forcing; mobile menu overlay used below */

      @media (max-width: 768px) {
        .choose-venue {
          display: none;
        }
        .logo-img {
          height: 32px;
        }
      }

      /* Mobile menu overlay */
      .mobile-menu {
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.96);
        z-index: 350;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
      }

      .mobile-menu.open {
        transform: translateY(0);
      }

      .mobile-menu .menu-inner {
        text-align: center;
      }
      .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0 0 18px 0;
      }
      .mobile-menu li {
        margin: 14px 0;
      }
      .mobile-menu a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        font-weight: 600;
      }
      .mobile-menu .book-btn {
        display: inline-block;
        margin-top: 8px;
      }

      /* CSS Reset */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background-color: var(--light-color);
        color: var(--text-color);
        line-height: 1.6;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        letter-spacing: -0.3px;
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.5px;
      }

      p {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(0, 0, 0, 0.7);
      }

      a {
        transition: var(--transition-smooth);
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Styles */
      header {
        background-color: white;
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: flex;
        align-items: center;
      }

      .logo i {
        color: var(--secondary-color);
        margin-right: 10px;
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
      }

      .nav-links a:hover {
        color: var(--secondary-color);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        left: 0;
        bottom: -5px;
        transition: var(--transition);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        padding: 80px 0 60px;
        text-align: center;
      }

      .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-color);
        line-height: 1.2;
      }

      .hero p {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 40px;
      }

      .highlight {
        color: var(--secondary-color);
        font-weight: 700;
      }

      /* Restaurant Cards */
      .restaurants-section {
        padding: 60px 0 80px;
        background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title h2 {
        font-size: 2.8rem;
        color: var(--primary-color);
        margin-bottom: 16px;
        font-family: "Playfair Display", serif;
      }

      .section-title p {
        color: rgba(0, 0, 0, 0.6);
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.05rem;
      }

      .restaurants-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 32px;
      }

      .restaurant-card {
        background: rgba(255, 255, 255, 0.5);
        border: 1.5px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition);
        backdrop-filter: blur(10px);
      }

      .restaurant-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.6);
        background: rgba(255, 255, 255, 0.7);
      }

      .restaurant-img {
        height: 240px;
        width: 100%;
        background-size: cover;
        background-position: center;
      }

      .restaurant-info {
        padding: 32px;
      }

      .restaurant-info h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        color: var(--primary-color);
      }

      .restaurant-info p {
        color: rgba(0, 0, 0, 0.65);
        margin-bottom: 20px;
        height: auto;
        overflow: visible;
        font-size: 0.95rem;
      }

      .restaurant-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 24px;
      }

      .feature-tag {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: var(--primary-color);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(212, 175, 55, 0.2);
      }

      .btn {
        display: inline-block;
        background-color: var(--accent-gold);
        color: var(--primary-color);
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all var(--transition);
        border: none;
        cursor: pointer;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
      }

      .btn:hover {
        background-color: var(--accent-gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--accent-gold);
        color: var(--accent-gold);
      }

      .btn-outline:hover {
        background-color: var(--accent-gold);
        color: var(--primary-dark);
      }

      /* Gallery Section - NEW */
      .gallery-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #fafaf8 0%, #f0f0f0 100%);
      }

      .gallery-section .section-title h2 {
        color: var(--primary-color);
      }

      .gallery-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 48px;
      }

      .filter-btn {
        padding: 10px 22px;
        background: white;
        border: 1.5px solid rgba(212, 175, 55, 0.2);
        border-radius: 25px;
        cursor: pointer;
        font-weight: 500;
        transition: all var(--transition);
        color: var(--primary-color);
        font-size: 0.9rem;
      }

      .filter-btn:hover,
      .filter-btn.active {
        background: var(--accent-gold);
        color: var(--primary-dark);
        border-color: var(--accent-gold);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
      }

      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
      }

      .gallery-item {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        position: relative;
        transition: all var(--transition);
        height: 250px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        cursor: pointer;
      }

      .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.15);
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition);
      }

      .gallery-item:hover img {
        transform: scale(1.08);
      }

      .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(15, 15, 15, 0.95), rgba(15, 15, 15, 0.5), transparent);
        color: white;
        padding: 24px;
        transform: translateY(40px);
        transition: all var(--transition);
        opacity: 0;
      }

      .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
        opacity: 1;
      }

      .gallery-overlay h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
        font-family: "Playfair Display", serif;
      }

      .gallery-overlay p {
        font-size: 0.85rem;
        opacity: 0.85;
        color: white;
      }

      /* About Section */
      .about-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
        color: white;
        position: relative;
      }

      .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          radial-gradient(600px at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 80%);
        pointer-events: none;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .about-text h2 {
        font-size: 2.6rem;
        margin-bottom: 24px;
        color: var(--text-white);
        font-family: "Playfair Display", serif;
      }

      .about-text p {
        margin-bottom: 20px;
        opacity: 0.85;
        line-height: 1.8;
        color: var(--text-dark);
        font-size: 1.05rem;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 48px;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--accent-gold);
        margin-bottom: 8px;
        font-family: "Playfair Display", serif;
      }

      .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-dark);
      }

      /* Testimonials Section */
      .testimonials-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f6f3ec 100%);
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
      }

      .testimonials-marquee {
        overflow: hidden;
        position: relative;
      }

      .testimonials-track {
        display: flex;
        gap: 28px;
        width: max-content;
        animation: testimonialsScroll 32s linear infinite;
      }

      .testimonials-marquee:hover .testimonials-track {
        animation-play-state: paused;
      }

      @keyframes testimonialsScroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.75);
        border: 1.5px solid rgba(212, 175, 55, 0.25);
        border-radius: 12px;
        padding: 28px;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
        min-width: 280px;
        max-width: 360px;
      }

      .testimonial-card::before {
        content: "“";
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 3rem;
        color: rgba(212, 175, 55, 0.2);
        font-family: "Playfair Display", serif;
        line-height: 1;
      }

      .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.18);
        border-color: rgba(212, 175, 55, 0.5);
      }

      .testimonial-text {
        color: rgba(0, 0, 0, 0.7);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--primary-color);
        font-family: "Playfair Display", serif;
      }

      .testimonial-meta h4 {
        font-size: 1rem;
        margin-bottom: 2px;
        color: var(--primary-color);
        font-family: "Playfair Display", serif;
      }

      .testimonial-meta span {
        font-size: 0.85rem;
        color: rgba(0, 0, 0, 0.6);
      }

      /* Footer */
      footer {
        background-color: var(--primary-dark);
        color: white;
        padding: 64px 0 32px;
        border-top: 1.5px solid rgba(212, 175, 55, 0.15);
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 48px;
        margin-bottom: 48px;
      }

      .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        font-family: "Playfair Display", serif;
      }

      .footer-logo-img {
        height: 50px;
        width: auto;
        display: block;
      }

      .footer-logo i {
        color: var(--accent-gold);
        margin-right: 10px;
      }

      .footer-about p {
        opacity: 0.75;
        margin-bottom: 20px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.8);
      }

      .footer-links h3,
      .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 12px;
        font-family: "Playfair Display", serif;
        color: var(--text-white);
      }

      .footer-links h3::after,
      .footer-contact h3::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: var(--accent-gold);
        bottom: 0;
        left: 0;
      }

      .footer-links ul {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all var(--transition);
        font-size: 0.95rem;
      }

      .footer-links a:hover {
        color: var(--accent-gold);
      }

      .footer-contact p {
        margin-bottom: 16px;
        opacity: 0.75;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
      }

      .footer-contact i {
        margin-right: 12px;
        color: var(--accent-gold);
        width: 16px;
      }

      .copyright {
        text-align: center;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
      }

      .copyright p {
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        padding: 20px;
        overflow-y: auto;
        box-sizing: border-box;
      }

      .modal-content {
        background-color: white;
        border-radius: 12px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: modalFade 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
        margin: 20px auto;
        box-sizing: border-box;
      }

      @keyframes modalFade {
        from {
          opacity: 0;
          transform: translateY(-30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .modal-header {
        padding: 28px 24px 16px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        box-sizing: border-box;
      }

      .modal-header h3 {
        font-size: 1.6rem;
        color: var(--primary-color);
        font-family: "Playfair Display", serif;
        margin: 0;
        flex: 1;
      }

      .close-modal {
        background: none;
        border: none;
        font-size: 1.6rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: color var(--transition);
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .close-modal:hover {
        color: var(--accent-gold);
      }

      .modal-body {
        padding: 0 24px 24px 24px;
        box-sizing: border-box;
      }

      .modal-image {
        height: 280px;
        width: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        margin-bottom: 24px;
        display: block;
      }

      .modal-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
      }

      /* Image Modal Styles */
      .image-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1001;
        justify-content: center;
        align-items: center;
      }

      .image-modal-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
      }

      .image-modal-content img {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
      }

      .close-image-modal {
        position: absolute;
        top: -50px;
        right: 0;
        background: none;
        border: none;
        color: white;
        font-size: 2.2rem;
        cursor: pointer;
        transition: color var(--transition);
      }

      .close-image-modal:hover {
        color: var(--accent-gold);
      }

      .image-caption {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 1rem;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .about-content {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .section-title h2 {
          font-size: 2.4rem;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }

        .stats {
          gap: 32px;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: white;
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
          display: flex;
        }

        .nav-links li {
          margin: 10px 0;
        }

        .mobile-menu-btn {
          display: block;
        }

        .hero h1 {
          font-size: 2.2rem;
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .restaurants-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }

        .gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
          gap: 16px;
        }

        .about-text h2 {
          font-size: 2.2rem;
        }

        .footer-content {
          gap: 32px;
        }

        .contact-grid {
          grid-template-columns: 1fr;
        }

        .modal {
          padding: 12px;
          align-items: flex-start;
          padding-top: 60px;
        }

        .modal-content {
          max-width: 95%;
          max-height: 85vh;
        }

        .modal-header {
          padding: 16px 16px 12px;
        }

        .modal-header h3 {
          font-size: 1.4rem;
        }

        .modal-close {
          font-size: 1.5rem;
        }

        .modal-body {
          padding: 16px;
        }

        .modal-image {
          height: 200px;
          margin-bottom: 16px;
        }
      }

      @media (max-width: 576px) {
        .hero h1 {
          font-size: 1.8rem;
        }

        .section-title h2 {
          font-size: 1.8rem;
          margin-bottom: 40px;
        }

        .section-title p {
          font-size: 0.95rem;
        }

        .modal {
          padding: 8px;
          padding-top: 40px;
        }

        .modal-content {
          max-width: 100%;
          border-radius: 8px;
        }

        .modal-header {
          padding: 12px 12px 8px;
          flex-direction: column;
          align-items: flex-start;
        }

        .modal-header h3 {
          font-size: 1.3rem;
          width: 100%;
        }

        .close-modal {
          font-size: 1.5rem;
          position: absolute;
          top: 8px;
          right: 8px;
          min-width: auto;
        }

        .modal-body {
          padding: 12px;
        }

        .modal-image {
          height: 180px;
          margin-bottom: 12px;
        }

        .modal-features {
          gap: 8px;
          margin-bottom: 12px;
        }

        .stats {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .gallery-grid {
          grid-template-columns: 1fr;
        }

        .gallery-item {
          height: 220px;
        }

        .restaurant-info {
          padding: 20px;
        }

        .restaurant-info h3 {
          font-size: 1.4rem;
        }

        .about-text h2 {
          font-size: 1.8rem;
        }

        .stat-number {
          font-size: 2.2rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 24px;
        }
      }
      /* Tamasha Story Section */
      .tamasha-story-section {
        padding: 80px 0;
        background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
      }

      .tamasha-story-section .section-title h2 {
        color: var(--primary-color);
      }

      .story-content {
        max-width: 1200px;
        margin: 0 auto;
        line-height: 1.8;
      }

      .story-intro {
        background: rgba(212, 175, 55, 0.08);
        border-left: 4px solid var(--accent-gold);
        padding: 24px;
        border-radius: 8px;
        margin-bottom: 40px;
      }

      .story-intro p {
        color: rgba(0, 0, 0, 0.75);
        margin-bottom: 16px;
        font-size: 1.05rem;
      }

      .story-intro p:last-child {
        margin-bottom: 0;
      }

      .story-content h3 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-top: 40px;
        margin-bottom: 16px;
        font-family: "Playfair Display", serif;
      }

      .story-content p {
        color: rgba(0, 0, 0, 0.7);
        margin-bottom: 16px;
        font-size: 1rem;
      }

      .locations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        margin: 32px 0;
      }

      .location-card {
        background: rgba(255, 255, 255, 0.6);
        border: 1.5px solid rgba(212, 175, 55, 0.2);
        border-radius: 12px;
        padding: 28px;
        transition: all var(--transition);
      }

      .location-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.4);
      }

      .location-card h4 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 16px;
        font-family: "Playfair Display", serif;
      }

      .location-card p {
        color: rgba(0, 0, 0, 0.7);
        margin-bottom: 12px;
        font-size: 0.95rem;
      }

      .location-card p:last-child {
        margin-bottom: 0;
      }