
    :root {
      --primary: #c82333;
      --primary-hover: #a71d2a;
      --accent: #f59e0b;
      --bg-cream: #fdfbf7;
      --surface: #ffffff;
      --text-main: #1c1917;
      --text-muted: #78716c;
      --border: #e7e5e4;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
      --radius: 16px;
    }

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-cream);
      color: var(--text-main);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    h1, h2, h3, .brand-font {
      font-family: 'Cinzel', serif;
    }

    /* --- Navigation --- */
    nav {
      position: sticky;
      top: 0;
      background: rgba(253, 251, 247, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--border);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--text-main);
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .btn-nav {
      background-color: var(--primary);
      color: white !important;
      padding: 0.6rem 1.2rem;
      border-radius: 99px;
      transition: background-color 0.2s !important;
    }

    .btn-nav:hover {
      background-color: var(--primary-hover) !important;
    }

    /* --- Hero Section --- */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--text-main);
    }

    .hero-content h1 span {
      color: var(--primary);
    }

    .hero-content p {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn-primary {
      background-color: var(--primary);
      color: white;
      padding: 0.85rem 1.75rem;
      border-radius: 99px;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(200, 35, 51, 0.3);
      transition: transform 0.2s, background-color 0.2s;
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--text-main);
      padding: 0.85rem 1.75rem;
      border-radius: 99px;
      text-decoration: none;
      font-weight: 600;
      border: 1.5px solid var(--border);
      transition: background-color 0.2s;
    }

    .btn-secondary:hover {
      background-color: rgba(0,0,0,0.03);
    }

    .hero-image-wrapper {
      position: relative;
    }

    .hero-image-wrapper img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
    }

    /* --- Container & Headers --- */
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--text-main);
      margin-bottom: 0.5rem;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 1.05rem;
    }

    /* --- Menu Grid & Tabs --- */
    .menu-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .tab-btn {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 0.6rem 1.5rem;
      border-radius: 99px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .tab-btn.active, .tab-btn:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem;
    }

    .menu-card {
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .menu-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .menu-card-body {
      padding: 1.5rem;
    }

    .badge {
      display: inline-block;
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .badge-veg {
      background-color: #dcfce7;
      color: #15803d;
    }

    .badge-nonveg {
      background-color: #fee2e2;
      color: #b91c1c;
    }

    .menu-card-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
    }

    .menu-card-header h3 {
      font-size: 1.25rem;
    }

    .price {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.15rem;
    }

    .menu-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* --- Info Cards (Hours & Location) --- */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 5rem;
    }

    .info-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 2.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

    .info-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px dashed var(--border);
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    /* --- Modal System (Reservation) --- */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 2000;
    }

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

    .modal {
      background: var(--surface);
      padding: 2.5rem;
      border-radius: var(--radius);
      width: 100%;
      max-width: 500px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-muted);
    }

    /* --- Form Elements --- */
    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.4rem;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .form-control {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-control:focus {
      border-color: var(--primary);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    /* --- Contact Form Section --- */
    .contact-wrapper {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 3rem;
      max-width: 700px;
      margin: 0 auto;
      box-shadow: var(--shadow-sm);
    }

    /* --- Footer --- */
    footer {
      background: #111827;
      color: white;
      text-align: center;
      padding: 3rem 2rem;
      margin-top: 5rem;
    }

    footer p {
      color: #9ca3af;
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .hero, .info-grid {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 2.5rem;
      }
      .nav-links {
        display: none; /* Quick mobile collapse for simplicity */
      }
    }
@media screen and (max-width: 600px) {
  .menu-tabs { gap: 0.5rem;}
  .tab-btn { padding: 0.3rem 0.75rem;}
  .menu-card {position: relative; width: 300px; justify-self: center}
  .form-row { grid-template-columns: 1fr; gap:0;}
}