/* ==========================================
   WANDERING CHEF — Global Styles
   ========================================== */

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

/* ---- CSS Variables ---- */
:root {
  --gold: #c8a96e;
  --gold-light: #e0c99a;
  --gold-dark: #9a7a42;
  --cream: #1c1814;
  --dark: #fdfbf7;
  --dark-mid: #f5f1e6;
  --dark-card: #ffffff;
  --text-main: #3d352e;
  --text-muted: #7f7368;
  --text-dark: #1c1814;
  --border: rgba(200, 169, 110, 0.22);
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 251, 247, 0.97);
  box-shadow: 0 4px 40px rgba(200, 169, 110, 0.12);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color var(--transition), transform var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-brand:hover {
  color: var(--gold-light);
  transform: scale(1.03);
}

.nav-brand span {
  color: var(--text-main);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links a,
.nav-links .dropdown-toggle {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.nav-links a.active {
  color: var(--gold);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 210px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-main);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
  padding-left: 1.4rem;
}

/* Contact button in nav */
.nav-contact-btn {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem !important;
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-contact-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4) !important;
  color: var(--text-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==========================================
   PAGE WRAPPER (push below navbar)
   ========================================== */
.page-content {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height)); /* Fits remaining screen height exactly */
  margin-top: var(--nav-height); /* Starts the hero block directly below the menu bar */
  min-height: 500px;
  display: flex;
  align-items: flex-start; /* Start logo right at the top of the container */
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Place logo at the top edge of the hero box */
  animation: heroFadeUp 1.2s ease both;
}

.hero-logo-img {
  width: 100%;
  max-width: 100%;
  height: 100%; /* Fit screen height bounds exactly */
  object-fit: contain; /* Keeps aspect ratio perfect and ensures visibility */
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: auto; /* Shrink to fit the logo image height exactly */
    min-height: 0; /* Remove min-height limitations */
    margin-top: var(--nav-height); /* Keep directly below navbar */
    padding: 0.5rem 0 0 0; /* Minimal spacing at the top, none at the bottom */
    align-items: center;
  }
  .hero-content {
    padding: 0; /* Remove vertical spacing padding inside container */
    height: auto; /* Shrink wrapper container to image height */
    align-items: center;
  }
  .hero-logo-img {
    max-width: 95%; /* Maximized size for mobile viewports */
    height: auto; /* Restrict height stretching */
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 251, 247, 0.8) 0%,
    rgba(253, 251, 247, 0.45) 50%,
    rgba(253, 251, 247, 0.7) 100%
  );
}


@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s both;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(240, 235, 227, 0.82);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s both;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(200, 169, 110, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(200, 169, 110, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
  margin-bottom: 2rem;
}

.btn-back:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(-4px);
}

/* ==========================================
   SCROLL UP ARROW
   ========================================== */
#scrollUpBtn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 25px rgba(200, 169, 110, 0.4);
}

#scrollUpBtn.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollUpBtn:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 35px rgba(200, 169, 110, 0.55);
  transform: translateY(-3px);
}

#scrollUpBtn svg {
  width: 20px;
  height: 20px;
  fill: var(--dark);
}

/* ==========================================
   SECTION BASE
   ========================================== */
section {
  padding: 6rem 0;
}

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
}

/* ==========================================
   SERVICES / CARDS GRID
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border-color: rgba(200, 169, 110, 0.5);
}

.service-card-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

.service-card-image-wrap {
  overflow: hidden;
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card:hover .service-card-link {
  gap: 0.8rem;
}

/* ==========================================
   PHOTO GALLERY GRID
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--dark-card);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.gallery-item-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  font-style: italic;
}

/* ==========================================
   MENU LIST SECTION
   ========================================== */
.menu-section {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.menu-section + .menu-section {
  margin-top: 1.5rem;
}

.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-main);
}

.menu-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ==========================================
   ABOUT / BIO SECTION
   ========================================== */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.bio-image-wrap {
  position: relative;
}

.bio-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--border);
  border-radius: 20px;
  transform: rotate(-2deg);
  transition: transform var(--transition);
}

.bio-image-wrap:hover::before {
  transform: rotate(0deg);
}

.bio-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.bio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.bio-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* ==========================================
   CATERING PAGE HERO / INNER PAGES
   ========================================== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 10s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 251, 247, 0.4) 0%, rgba(253, 251, 247, 0.98) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(35,31,26,0.5) 100%);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: rgba(200, 169, 110, 0.2);
  border-color: rgba(200, 169, 110, 0.5);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: block;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--text-main);
  transition: color var(--transition);
}

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

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(200, 169, 110, 0.55);
  background: rgba(255,255,255,0.07);
}

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

.form-group select option {
  background: var(--dark-card);
  color: var(--text-main);
}

/* ==========================================
   STATS / NUMBERS
   ========================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
}

.footer-brand span {
  color: var(--text-muted);
  font-style: italic;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   HIGHLIGHT BAND
   ========================================== */
.highlight-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 4rem 0;
  text-align: center;
}

.highlight-band .section-title {
  color: #1c1814;
}

.highlight-band .section-subtitle {
  color: rgba(26,22,18,0.75);
}

.highlight-band .btn-primary {
  background: #1c1814;
  color: var(--gold);
}

.highlight-band .btn-primary:hover {
  background: #2d2520;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .navbar {
    padding: 0 1.5rem;
    background: var(--dark) !important;
    box-shadow: 0 2px 20px rgba(200, 169, 110, 0.1);
  }

  .hero {
    background-color: var(--dark);
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    gap: 0.2rem;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-left: auto;
    transition: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .nav-contact-btn {
    display: none !important;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: none !important;
  }

  .bio-layout {
    grid-template-columns: 1fr 1.5fr; /* Keep side-by-side layout on mobile screens */
    gap: 1.5rem; /* Reduced gap spacing so it fits neatly */
  }

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

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

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

  section {
    padding: 4rem 0;
  }

  /* Make section labels much darker on mobile/tablet — easier to read */
  .section-label {
    color: #6b4f1a;
    font-weight: 700;
  }

  /* Keep hero overlay labels bright white (on dark photo background) */
  .page-hero-content .section-label {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.95);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }

  #scrollUpBtn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }

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

  /* Adapt side-by-side bio typography for small mobile viewports */
  .bio-layout {
    grid-template-columns: 1fr 1.3fr !important;
    gap: 1rem !important;
    align-items: start !important;
  }
  .bio-image-wrap::before {
    inset: -6px !important; /* Thinner border margin space */
    border-radius: 12px !important;
  }
  .bio-image {
    border-radius: 10px !important;
  }
  .bio-quote {
    font-size: 1rem !important;
    margin: 0.75rem 0 !important;
    padding-left: 0.75rem !important;
  }
  .bio-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
  }
  .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .divider {
    margin: 0.5rem 0 !important;
  }
}


/* ==========================================
   LOGO REPLACEMENT STYLING
   ========================================== */
.bio-image.logo-replacement {
  object-fit: contain !important;
  background-color: var(--dark-card) !important;
  padding: 3rem !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(200, 169, 110, 0.05), 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.bio-image.logo-replacement:hover {
  border-color: var(--gold) !important;
  box-shadow: inset 0 0 30px rgba(200, 169, 110, 0.1), 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-5px);
}

.bio-layout-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.bio-layout-centered .divider {
  margin: 1.5rem auto;
}
.bio-layout-centered .bio-quote {
  margin: 1.5rem auto;
  font-size: 1.5rem;
}

.catering-services-text-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.service-text-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  background: var(--dark-card);
  border: 1.5px solid var(--border);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: inline-block;
}

.service-text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
  background: rgba(200, 169, 110, 0.04);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-method-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.contact-method-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.contact-method-card .contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-method-card .contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.contact-method-card .contact-info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-method-card .contact-info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
}

/* ==========================================
   PHOTO GALLERY TRIGGER STRIP / BANNER
   ========================================== */
.gallery-trigger-banner {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.gallery-banner-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.gallery-banner-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(200, 169, 110, 0.25);
  border-color: var(--gold);
}

.gallery-banner-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery-banner-bg .bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery-banner-btn:hover .bg-img {
  transform: scale(1.06);
}

.gallery-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 24, 20, 0.92) 20%, rgba(28, 24, 20, 0.6) 60%, rgba(28, 24, 20, 0.85) 100%);
  z-index: 2;
  transition: background 0.4s;
}

.gallery-banner-btn:hover .gallery-banner-overlay {
  background: linear-gradient(to right, rgba(28, 24, 20, 0.88) 20%, rgba(28, 24, 20, 0.45) 60%, rgba(28, 24, 20, 0.8) 100%);
}

.gallery-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.gallery-banner-content svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  transition: transform 0.3s ease;
}

.gallery-banner-btn:hover .gallery-banner-content svg {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .gallery-trigger-banner {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }
  
  .gallery-banner-btn {
    height: 130px;
    border-radius: 12px;
  }
  
  .gallery-banner-bg {
    grid-template-columns: repeat(3, 1fr); /* Show 3 images on smaller mobile viewports */
  }
  
  .gallery-banner-bg .bg-img:last-child {
    display: none;
  }
}

/* ==========================================
   GALLERY PAGE LOADER / SPINNER STYLE
   ========================================== */
.gallery-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  width: 100%;
  text-align: center;
  transition: opacity 0.3s ease;
}

.spinner-ring {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(200, 169, 110, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinnerRotate 0.8s linear infinite;
  margin-bottom: 1.5rem;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}



