/* 
========================================================================
   KITE RESTAURANT & BAR - GEORGIAN THEME STYLESHEET
   Location: Mercure Thame Lambert Hotel, Watlington, Oxfordshire
========================================================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* CSS variables (Design Tokens) */
:root {
  /* Harmonious, Warm Georgian Palette */
  --color-primary: #192a25;        /* Deep Georgian Forest Green */
  --color-primary-light: #243c35;  /* Lighter Forest Green for Hover */
  --color-primary-rgb: 25, 42, 37;
  
  --color-accent: #b89053;         /* Muted Brushed Gold */
  --color-accent-light: #d1ad70;   /* Light Gold */
  --color-accent-dark: #8e6d3c;    /* Deep Gold for Borders/Dark Text */
  
  --color-bg-warm: #fcfaf5;        /* Soft Warm Cream/Ivory */
  --color-bg-card: #ffffff;        /* Pure White for Card Backgrounds */
  --color-bg-dark: #101a17;        /* Almost Black Forest Green */
  
  --color-text: #2a3330;           /* Soft Charcoal/Green-Grey for main text */
  --color-text-muted: #5c6863;     /* Muted grey-green */
  --color-text-light: #f3f5f4;     /* Crisp light text for dark backgrounds */
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Mulish', 'Segoe UI', system-ui, sans-serif;
  
  /* Shadows and Effects */
  --shadow-soft: 0 8px 30px rgba(25, 42, 37, 0.04);
  --shadow-ambient: 0 16px 48px rgba(184, 144, 83, 0.08);
  --shadow-candlelight: 0 0 25px rgba(184, 144, 83, 0.15);
  --border-double: 3px double var(--color-accent);
  
  /* Layout and Transitions */
  --max-width: 1200px;
  --transition-smooth: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  background-color: var(--color-bg-warm);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

p {
  font-weight: 400;
  margin-bottom: 1.5rem;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Button & Link Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  border: 1px solid var(--color-accent);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-dark);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
}

/* Structural Components */
section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1rem auto 0 auto;
}

.section-title p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-accent-dark);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.section-dark .section-title p {
  color: var(--color-accent);
}

/* ========================================================================
   1. NAVIGATION HEADER
   ======================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: transparent;
  padding: 1.5rem 0;
}

.header-nav.scrolled {
  background-color: rgba(25, 42, 37, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 250px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header-nav.scrolled .nav-logo {
  height: 140px;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 170px;
  }
  
  .header-nav.scrolled .nav-logo {
    height: 104px;
  }
}

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

.nav-links a {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-bg-warm);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-bg-warm);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-toggle:hover {
  color: var(--color-accent);
}

/* ========================================================================
   2. HERO SLIDESHOW SECTION
   ======================================================================== */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  padding: 0;
  background-color: var(--color-bg-dark);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(16, 26, 23, 0.45) 0%, rgba(16, 26, 23, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--color-bg-warm);
  opacity: 0.7;
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-down svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-top: 0.5rem;
}

/* ========================================================================
   3. HERITAGE / ABOUT SECTION
   ======================================================================== */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.heritage-text {
  padding-right: 2rem;
}

.heritage-text h3 {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.heritage-highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-accent-dark);
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.heritage-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.heritage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px dashed var(--color-accent);
  padding-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 600;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.heritage-media {
  position: relative;
}

.heritage-frame {
  border: var(--border-double);
  padding: 1rem;
  background-color: var(--color-bg-warm);
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-smooth);
}

.heritage-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-candlelight);
}

.heritage-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: sepia(10%) contrast(1.02);
}



/* ========================================================================
   4. CULINARY OFFERINGS (PDF LINK CARDS)
   ======================================================================== */
.menu-section {
  background-color: #f7f4ed; /* Marginally darker cream for separation */
}

.menu-pdf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.menu-pdf-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(184, 144, 83, 0.22);
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.menu-pdf-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 144, 83, 0.12);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.menu-pdf-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-candlelight);
  background-color: #ffffff;
}

.menu-pdf-card:hover::before {
  border-color: rgba(184, 144, 83, 0.35);
}

.menu-card-icon {
  color: var(--color-accent-dark);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: var(--transition-smooth);
}

.menu-card-icon svg {
  width: 42px;
  height: 42px;
}

.menu-pdf-card:hover .menu-card-icon {
  transform: scale(1.1) rotate(2deg);
  color: var(--color-primary);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1; /* Pushes the CTA link to the bottom so cards align nicely */
}

.menu-card-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  margin-top: auto;
}

.menu-pdf-card:hover .menu-card-link {
  color: var(--color-primary);
  text-shadow: 0 0 1px rgba(25, 42, 37, 0.2);
}

/* Adjust Responsive Rules for PDF Grid */
@media (max-width: 1200px) {
  .menu-pdf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .menu-pdf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .menu-pdf-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================================================
   5. IMAGE GALLERY SECTION
   ======================================================================== */
.virtual-tour-container {
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 auto 4rem auto !important;
  padding: 0 !important;
  display: block !important;
  text-align: center !important;
}

.virtual-tour-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
  height: 0 !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(184, 144, 83, 0.2) !important;
  border-bottom: 1px solid rgba(184, 144, 83, 0.2) !important;
  background-color: #000 !important;
}

.virtual-tour-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--color-bg-card);
  transition: var(--transition-smooth);
}

/* Custom Grid Sizing for Premium Mosaic Look */
.gallery-item.col-6 { grid-column: span 6; height: 350px; }
.gallery-item.col-4 { grid-column: span 4; height: 300px; }
.gallery-item.col-3 { grid-column: span 3; height: 300px; }
.gallery-item.col-8 { grid-column: span 8; height: 400px; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 42, 37, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
  padding: 2rem;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay h4 {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: transform 0.5s ease 0.1s;
}

.gallery-overlay p {
  color: var(--color-text-light);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  transform: translateY(15px);
  transition: transform 0.5s ease 0.2s;
  margin: 0;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-plus-icon {
  margin-top: 1rem;
  color: var(--color-bg-warm);
  opacity: 0.8;
  font-size: 1.5rem;
}

/* ========================================================================
   6. RESERVATIONS & CONTACT SECTION
   ======================================================================== */
.booking-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

/* Form Styling */
.booking-card {
  background-color: var(--color-bg-card);
  padding: 3.5rem;
  border: 1px solid rgba(184, 144, 83, 0.2);
  box-shadow: var(--shadow-ambient);
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(184, 144, 83, 0.15);
  pointer-events: none;
}

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

.booking-form-grid .full-width {
  grid-column: span 2;
}

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

.form-group label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(25, 42, 37, 0.15);
  background-color: var(--color-bg-warm);
  font-family: var(--font-sans);
  color: var(--color-text);
  font-size: 0.95rem;
  border-radius: 0;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-dark);
  box-shadow: var(--shadow-soft);
  background-color: #ffffff;
}

.booking-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* Contact Info & Hours */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hours-card {
  border-left: 2px solid var(--color-accent);
  padding-left: 2rem;
}

.hours-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(92, 104, 99, 0.15);
  padding-bottom: 0.5rem;
}

.hours-day {
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-primary);
}

.hours-time {
  text-align: right;
}

.hours-meal {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.hours-val {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.details-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--color-accent-dark);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail-content p,
.contact-detail-content a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-detail-content a:hover {
  color: var(--color-accent-dark);
}

/* Map Container */
.map-container {
  width: 100%;
  height: 250px;
  border: 1px solid rgba(184, 144, 83, 0.2);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-text-light);
  text-align: center;
  padding: 2rem;
}

.map-placeholder-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.map-placeholder-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

/* ========================================================================
   7. FOOTER SECTION
   ======================================================================== */
.footer-section {
  background-color: #0b1210; /* Extra deep forest green */
  color: var(--color-text-light);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(184, 144, 83, 0.15);
}

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

.footer-brand h3 {
  color: var(--color-accent);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(243, 245, 244, 0.7);
  font-size: 0.95rem;
  max-width: 350px;
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 1.2rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184, 144, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-warm);
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.social-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links-col h4 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-links-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--color-accent);
  margin-top: 0.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-list a {
  color: rgba(243, 245, 244, 0.7);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 245, 244, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(243, 245, 244, 0.5);
}

.footer-credits {
  font-size: 0.85rem;
  color: rgba(243, 245, 244, 0.5);
}

.footer-credits a {
  color: var(--color-accent);
}

.footer-credits a:hover {
  color: var(--color-accent-light);
}

/* ========================================================================
   8. LIGHTBOX MODAL FOR GALLERY
   ======================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 26, 23, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 4px solid var(--color-bg-card);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  color: var(--color-bg-warm);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-bg-warm);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* ========================================================================
   9. INTERACTIVE BOOKING CONFIRMATION MODAL
   ======================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 26, 23, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.booking-success-modal {
  background-color: var(--color-bg-warm);
  max-width: 500px;
  width: 90%;
  padding: 3rem;
  border: var(--border-double);
  text-align: center;
  box-shadow: var(--shadow-candlelight);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .booking-success-modal {
  transform: scale(1);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(184, 144, 83, 0.1);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.booking-success-modal h3 {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.booking-success-modal p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.booking-details-summary {
  background-color: rgba(25, 42, 37, 0.03);
  border: 1px solid rgba(25, 42, 37, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 0.95rem;
}

.booking-details-summary div {
  margin-bottom: 0.6rem;
}

.booking-details-summary div:last-child {
  margin-bottom: 0;
}

.booking-details-summary strong {
  color: var(--color-primary);
  display: inline-block;
  width: 100px;
}

/* ========================================================================
   10. SCROLL ANIMATIONS (Reveal on Scroll)
   ======================================================================== */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================================
   11. KEYFRAME ANIMATIONS
   ======================================================================== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================================================
   12. RESPONSIVE DESIGN (MEDIA QUERIES)
   ======================================================================== */

/* Desktop & Laptop sizes */
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
  .hero-title {
    font-size: 4rem;
  }
  .heritage-grid {
    gap: 3rem;
  }
}

/* Tablet Landscape and smaller */
@media (max-width: 992px) {
  section {
    padding: 5rem 0;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .heritage-text {
    padding-right: 0;
  }
  
  .heritage-img {
    height: 400px;
  }
  
  .menu-panel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .gallery-item.col-6,
  .gallery-item.col-4,
  .gallery-item.col-3,
  .gallery-item.col-8 {
    grid-column: span 6;
    height: 250px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile Devices and smaller */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
    z-index: 1000;
  }
  
  .nav-links a {
    font-size: 1.3rem;
  }
  
  .nav-links .btn-nav {
    width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-title span {
    font-size: 1.6rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .menu-tabs {
    gap: 0.5rem;
  }
  
  .menu-tab-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
  
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  
  .menu-item-dots {
    display: none;
  }
  
  .menu-item-price {
    font-size: 1.15rem;
  }
  
  .booking-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form-grid .full-width {
    grid-column: span 1;
  }
  
  .gallery-item.col-6,
  .gallery-item.col-4,
  .gallery-item.col-3,
  .gallery-item.col-8 {
    grid-column: span 12;
    height: 250px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .virtual-tour-wrapper {
    padding-bottom: 80% !important; /* Taller aspect ratio (5:4) on mobile for easier touch navigation */
  }

}
