/* =============================================
   Delhi Rasoi Sandyford - Revamped Stylesheet
   Inspired by Rasam.ie design
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --charcoal: #272727;
  --beige: #ede8db;
  --white: #ffffff;
  --muted-gray: #6c7d84;
  --taupe: #bebcb2;
  --coral: #f9748f;
  --burnt-orange: #c0392b;
  --gold: #9B1B30;
  --gold-light: #B22234;
  --cream: #faf8f2;
  --dark-overlay: rgba(0, 0, 0, 0.5);
  --shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
  --shadow-hover: 0px 16px 24px -6px rgba(34, 56, 101, 0.1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-nav: 'Josefin Sans', sans-serif;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--beige);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 0;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-contact i {
  margin-right: 5px;
  color: var(--gold);
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  font-size: 1rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

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

.logo img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-nav);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-gray);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--gold);
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 3px;
  font-family: var(--font-nav);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}

.hero h1 strong {
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 4rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 35px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

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

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: 80px 0;
}

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

.section-header .subtitle {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted-gray);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto;
}

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

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.6s ease;
}

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  border-radius: 5px;
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text .subtitle {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.about-text p {
  color: var(--muted-gray);
  margin-bottom: 15px;
}

.about-text .btn {
  margin-top: 15px;
}

/* =============================================
   MENU HIGHLIGHTS
   ============================================= */
.menu-highlights {
  background: var(--beige);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.menu-card-image {
  height: 250px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.08);
}

.menu-card-content {
  padding: 25px;
}

.menu-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.menu-card-badge {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.badge-recommended {
  background: var(--gold);
  color: var(--white);
}

.badge-new {
  background: var(--burnt-orange);
  color: var(--white);
}

.menu-card-content p {
  font-size: 0.9rem;
  color: var(--muted-gray);
  line-height: 1.6;
}

/* =============================================
   OPENING HOURS
   ============================================= */
.hours-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(201,168,76,0.1)"/></svg>') repeat;
  opacity: 0.5;
}

.hours-section .container {
  position: relative;
  z-index: 1;
}

.hours-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.hours-section .subtitle {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.hours-section .section-divider {
  margin-bottom: 40px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.hours-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 30px;
  text-align: center;
}

.hours-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

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

.hours-item .day {
  color: var(--white);
  font-weight: 600;
}

.hours-item .time {
  color: var(--taupe);
}

.hours-item.closed .time {
  color: var(--burnt-orange);
}

/* =============================================
   TESTIMONIALS / REVIEWS
   ============================================= */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--cream);
  padding: 35px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--muted-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.testimonial-card .reviewer {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
}

.testimonial-card .review-source {
  font-size: 0.75rem;
  color: var(--taupe);
  margin-top: 5px;
}

.stars {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
  background: var(--beige);
  padding: 80px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--charcoal);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-banner p {
  color: var(--taupe);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .hero-buttons {
  justify-content: center;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 25px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-detail p {
  margin-bottom: 0;
  color: var(--muted-gray);
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form h3 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--taupe);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

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

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

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(30%);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  color: var(--taupe);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--taupe);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* TripAdvisor icon - using Font Awesome 5 which includes it natively */

.footer-newsletter input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-newsletter input::placeholder {
  color: var(--taupe);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--taupe);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold);
}

/* =============================================
   MENU PAGE
   ============================================= */
.page-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content .subtitle {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 10px 25px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--taupe);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--charcoal);
}

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

.menu-category {
  display: none;
}

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

.menu-list {
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--muted-gray);
  margin-bottom: 0;
  max-width: 500px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}

.menu-download {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  background: var(--white);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.story-block:nth-child(even) {
  direction: rtl;
}

.story-block:nth-child(even) > * {
  direction: ltr;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

.story-content h3 {
  margin-bottom: 15px;
}

.story-content p {
  color: var(--muted-gray);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-sidebar {
  background: var(--charcoal);
  color: var(--white);
  padding: 40px;
  border-radius: 5px;
}

.contact-sidebar h3 {
  color: var(--gold);
  margin-bottom: 30px;
}

.contact-sidebar .contact-detail {
  margin-bottom: 25px;
}

.contact-sidebar .contact-detail p {
  color: var(--taupe);
}

.contact-sidebar .contact-detail a {
  color: var(--taupe);
}

.contact-sidebar .contact-detail a:hover {
  color: var(--gold);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

/* Inline subtitle used in story blocks, contact, etc. */
.subtitle-inline {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Menu sub-section headings (Naan Breads, Rice, White Wines, etc.) */
.menu-sub-heading {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-sub-heading + .menu-sub-heading,
.menu-item + .menu-sub-heading {
  margin-top: 25px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  .hero h1 { font-size: 2.8rem; }
  .hero h1 strong { font-size: 3.2rem; }

  .header .container { height: 80px; }
  .logo img { height: 55px; }

  .about-grid,
  .story-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-block:nth-child(even) { direction: ltr; }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }

  section { padding: 50px 0; }

  .hero { height: 70vh; min-height: 400px; }
  .hero h1 { font-size: 2rem; }
  .hero h1 strong { font-size: 2.5rem; }
  .hero p { font-size: 0.95rem; }

  .top-bar { display: none; }

  .header .container { height: 70px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-image img { height: 300px; }
  .about-image::after { display: none; }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .menu-tabs {
    gap: 5px;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero h1 strong { font-size: 2rem; }

  .page-hero-content h1 { font-size: 2rem; }

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

  .menu-card-image { height: 200px; }

  .btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}

/* =============================================
   FIVE STAR RESTAURANT MENU PLUGIN OVERRIDES
   ============================================= */

/* Reset list styles inside FDM menu */
.fdm-menu ul,
.fdm-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Section headers */
.fdm-section-header {
  border-bottom: none !important;
}

.fdm-section-header h3 {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.6rem;
  color: #9B1B30;
  border-bottom: 2px solid #9B1B30;
  padding-bottom: 10px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.fdm-section:first-child .fdm-section-header h3 {
  margin-top: 0;
}

/* Menu items */
.fdm-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Josefin Sans', sans-serif;
}

.fdm-item:last-child {
  border-bottom: none;
}

.fdm-item-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.fdm-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #272727;
  margin: 0 0 4px;
}

.fdm-item-content {
  font-size: 0.85rem;
  color: #6c7d84;
  line-height: 1.5;
  margin: 0;
}

.fdm-item-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #9B1B30;
  white-space: nowrap;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Two column layout - let FDM plugin handle columns */
.fdm-columns-2 .fdm-column {
  width: 47% !important;
  float: left !important;
  margin-right: 3%;
}

.fdm-columns-2 .fdm-column-last {
  width: 47% !important;
  float: right !important;
  margin-right: 0;
  margin-left: 3%;
}

.fdm-columns-1 .fdm-column {
  width: 100%;
}

/* Clearfix for floated columns */
.fdm-menu::after {
  content: '';
  display: table;
  clear: both;
}

/* Items within columns should use full width */


/* Hide plugin elements we don't need */
.fdm-section-header p {
  display: none;
}

/* Item image - hide by default since we don't have item images */
.fdm-item-image {
  display: none;
}

/* Details popup overlay */
.fdm-details-background-div {
  display: none !important;
}

/* Footer fix - ensure grid works properly after FDM */
.footer {
  clear: both;
}

.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr !important;
  gap: 40px !important;
}

.footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer ul li {
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

/* CTA banner fix */
.cta-banner {
  clear: both;
}

/* =============================================
   RESPONSIVE FOR FDM MENU PAGE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .fdm-columns-2 .fdm-column,
  .fdm-columns-2 .fdm-column-last {
    width: 48% !important;
  }

  .fdm-section-header h3 {
    font-size: 1.3rem;
  }

  .fdm-item-title {
    font-size: 1rem;
  }

  .fdm-item-content p {
    font-size: 0.8rem;
  }

  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Stack FDM columns vertically */
  .fdm-columns-2 .fdm-column,
  .fdm-columns-2 .fdm-column-last {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }

  /* Page hero */
  .page-hero {
    min-height: 30vh !important;
  }

  .page-hero h1 {
    font-size: 2rem !important;
  }

  .page-hero .subtitle {
    font-size: 0.7rem !important;
  }

  /* FDM section headers */
  .fdm-section-header h3 {
    font-size: 1.2rem;
    margin-top: 20px;
  }

  /* FDM items - stack price below on very small screens */
  .fdm-item {
    flex-wrap: wrap;
  }

  .fdm-item-panel {
    flex-wrap: wrap;
  }

  .fdm-item-title {
    font-size: 0.95rem;
  }

  .fdm-item-content p {
    font-size: 0.8rem;
  }

  .fdm-item-price {
    font-size: 0.95rem;
    margin-left: 0;
    margin-top: 4px;
  }

  /* Data-section two-column items collapse */
  .fdm-item[data-section="5"],
  .fdm-item[data-section="6"] {
    width: 100% !important;
    display: flex !important;
    margin-right: 0 !important;
  }

  /* Container padding */
  .container {
    padding: 0 15px;
  }

  /* CTA section */
  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  /* Hero buttons stack */
  .hero-buttons,
  .dr-hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn,
  .dr-btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
  }

  /* Footer */
  .footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-social {
    justify-content: flex-start;
  }

  /* Menu download buttons */
  .menu-download .btn,
  .menu-download a {
    font-size: 0.75rem;
    padding: 10px 15px;
  }

  /* Navigation */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex !important;
  }

  .top-bar {
    display: none;
  }

  .header .container {
    height: 70px;
  }

  /* About grid */
  .about-grid,
  .dr-about-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact page */
  .contact-page-grid,
  .dr-contact-page {
    grid-template-columns: 1fr !important;
  }

  /* Hours */
  .hours-grid,
  .dr-hours-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reviews */
  .testimonials-grid,
  .dr-reviews {
    grid-template-columns: 1fr !important;
  }

  /* Gallery */
  .gallery-grid,
  .dr-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Dish cards */
  .dr-dishes {
    grid-template-columns: 1fr !important;
  }

  /* Story blocks */
  .story-block,
  .dr-story {
    grid-template-columns: 1fr !important;
  }

  .story-block:nth-child(even),
  .dr-story:nth-child(even) {
    direction: ltr !important;
  }

  /* Values */
  .dr-values {
    grid-template-columns: 1fr !important;
  }

  /* Form rows */
  .form-row,
  .dr-form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.6rem !important;
  }

  .fdm-section-header h3 {
    font-size: 1.1rem;
  }

  .fdm-item-title {
    font-size: 0.9rem;
  }

  .fdm-item-price {
    font-size: 0.85rem;
  }

  .fdm-item-content p {
    font-size: 0.75rem;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .footer h4 {
    font-size: 1rem;
  }

  .gallery-grid,
  .dr-gallery {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
  }

  .hero h1 strong {
    font-size: 2rem !important;
  }

  .btn,
  .dr-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .dr-dishes {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dr-reviews {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-grid,
  .dr-gallery {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
