/* =============================================
   ZININGI IZINGCEBA ZAKHE
   Private Chef & Catering Services
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --rose:         #C2736A;
  --rose-light:   #E8C4B8;
  --rose-pale:    #F7EDE9;
  --rose-dark:    #9E4E46;
  --gold:         #C9A96E;
  --gold-light:   #EDD9A3;
  --cream:        #FDF8F5;
  --cream-dark:   #F0E5DF;
  --dark:         #1C1410;
  --charcoal:     #2E2220;
  --text:         #4A3530;
  --text-light:   #8C7570;
  --white:        #FFFFFF;
  --success:      #4CAF50;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

/* --- 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: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.75; }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* --- LAYOUT --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(194, 115, 106, 0.35);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(194, 115, 106, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.30);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
  /* always show a gradient at the very top so hero text is readable */
  background: linear-gradient(to bottom, rgba(28,20,16,0.85) 0%, rgba(28,20,16,0.0) 100%);
}
.navbar.scrolled {
  background: rgba(28, 20, 16, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.1rem;
}
.logo-chef {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 3px 12px rgba(194,115,106,0.4);
}
.nav-cta:hover { background: var(--rose-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 16, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  display: block;
  padding: 0.2rem 0;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem !important;
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  padding-top: 7rem;
  position: relative;
  z-index: 1;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--dark);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-title { color: var(--white); margin-bottom: 0.75rem; }
.hero-name-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  line-height: 1;
}
.hero-name-main {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.15rem;
}
.hero-zulu {
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-light);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rose);
}
.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  max-width: 440px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
}

/* Hero Right */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-image-frame {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-right:hover .hero-img { transform: scale(1.06); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 20, 16, 0.5) 0%,
    rgba(28, 20, 16, 0.1) 60%,
    transparent 100%
  );
}

/* Stats Card — pinned to bottom-right of hero image so it never overlaps the nav */
.hero-stats-card {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  background: rgba(28, 20, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: floatUp 0.8s ease 0.6s both;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.4rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-item span { font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

/* ============================
   ABOUT
   ============================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
  max-height: 620px;
  aspect-ratio: 3 / 4;
}
.about-badge-gold {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  max-width: 200px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.3;
}
.about-text-side { padding: 1rem 0; }
.about-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-description strong { color: var(--charcoal); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.why-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.why-item strong { display: block; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.why-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ============================
   SERVICES
   ============================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   GALLERY
   ============================ */
.gallery-section { background: var(--dark); padding-bottom: 5rem; }
.gallery-section .section-eyebrow { color: var(--gold); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.55); }
.gallery-grid {
  columns: 4 240px;
  column-gap: 12px;
  padding: 0 clamp(1rem, 3vw, 3rem);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(194, 115, 106, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-overlay span {
  background: var(--white);
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { background: rgba(28, 20, 16, 0.4); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }

/* Gallery loading state */
.gallery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  width: 100%;
  column-span: all;
}
.gallery-loader {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(201,169,110,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: gallery-spin 0.8s linear infinite;
}
@keyframes gallery-spin { to { transform: rotate(360deg); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--rose);
  border-color: var(--rose);
}

/* ============================
   VIDEOS
   ============================ */
.videos-section { background: var(--cream-dark); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
  aspect-ratio: 9 / 16; /* portrait WhatsApp videos */
  position: relative;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* show full video, no cropping */
  background: var(--dark);
  position: absolute;
  inset: 0;
}

/* Fullscreen — fill the screen without cropping */
.video-player:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}
.video-player:fullscreen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}

/* ============================
   CUISINE
   ============================ */
.cuisine-section { background: var(--white); }
.cuisine-bg-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--rose-pale);
  text-align: center;
  line-height: 1;
  margin-bottom: -2rem;
  user-select: none;
}
.cuisine-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.cuisine-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  color: var(--charcoal);
  border: 1.5px solid var(--cream-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.cuisine-tag:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(194, 115, 106, 0.3);
}

/* ============================
   BOOKING
   ============================ */
.book-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2E1810 100%);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(194,115,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.book-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.book-section .section-eyebrow { color: var(--gold); }
.book-section .section-title { color: var(--white); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.book-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.book-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.book-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.book-feature-icon { font-size: 1.1rem; }

/* Booking Policy Box */
.booking-policy {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.policy-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.policy-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }
.policy-list strong { color: var(--white); font-weight: 600; }

/* Booking Form */
.book-form-side { position: relative; }
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194, 115, 106, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); font-size: 0.88rem; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group { margin-bottom: 0; }
.booking-form .form-group:last-of-type { margin-bottom: 1.5rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-success.visible { display: block; animation: fadeInUp 0.5s ease; }
.success-icon {
  width: 70px; height: 70px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); margin-bottom: 2rem; }

/* ============================
   CONTACT
   ============================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-icon     { background: var(--rose-pale); color: var(--rose); }
.instagram-icon { background: #fce4ec; color: #e91e63; }
.tiktok-icon    { background: #E8F4FD; color: #000; }
.location-icon  { background: var(--rose-pale); color: var(--rose); }
.contact-info strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info span { font-size: 0.88rem; color: var(--text-light); }
.contact-arrow { margin-left: auto; color: var(--text-light); font-size: 1.1rem; transition: var(--transition); }
.contact-card:hover .contact-arrow { color: var(--rose); transform: translateX(3px); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-name-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  display: block;
  line-height: 1.1;
}
.footer-name-main {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

/* Scroll Reveal Classes */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.47s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.54s; }

.videos-grid .video-card:nth-child(1)  { transition-delay: 0.05s; }
.videos-grid .video-card:nth-child(2)  { transition-delay: 0.10s; }
.videos-grid .video-card:nth-child(3)  { transition-delay: 0.15s; }
.videos-grid .video-card:nth-child(4)  { transition-delay: 0.20s; }
.videos-grid .video-card:nth-child(5)  { transition-delay: 0.25s; }
.videos-grid .video-card:nth-child(6)  { transition-delay: 0.30s; }
.videos-grid .video-card:nth-child(7)  { transition-delay: 0.35s; }
.videos-grid .video-card:nth-child(8)  { transition-delay: 0.40s; }
.videos-grid .video-card:nth-child(9)  { transition-delay: 0.45s; }
.videos-grid .video-card:nth-child(10) { transition-delay: 0.50s; }
.videos-grid .video-card:nth-child(11) { transition-delay: 0.55s; }
.videos-grid .video-card:nth-child(12) { transition-delay: 0.60s; }

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

/* ---- Tablet landscape ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: repeat(2, 1fr); }
  .videos-grid   { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid  { columns: 3 200px; }
}

/* ---- Tablet portrait ---- */
@media (max-width: 900px) {
  /* Hero: collapse to single column, full-height left panel */
  .hero { grid-template-columns: 1fr; }
  .hero-left {
    min-height: 100svh;
    padding-top: 5.5rem;
    padding-bottom: 5rem;
    /* show a background image behind the text on mobile */
    background-image: url("media%20files/WhatsApp%20Image%202026-05-23%20at%2022.33.18.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 20, 16, 0.78);
    z-index: 0;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-left::after { display: none; }
  .hero-right { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-side { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-badge-gold { right: 0.5rem !important; }

  /* Booking */
  .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero tweaks */
  .hero-name-script { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-desc { font-size: 0.96rem; }
  .hero-zulu { font-size: 0.92rem; }

  /* About */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .service-card { padding: 1.5rem 1rem; }

  /* Gallery */
  .gallery-grid { columns: 2 130px; column-gap: 8px; padding: 0 1rem; }
  .gallery-item { margin-bottom: 8px; }

  /* Videos */
  .videos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

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

  /* Booking form */
  .booking-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 1.2rem; }

  /* Cuisine */
  .cuisine-tags { gap: 0.6rem; }
  .cuisine-tag { font-size: 0.85rem; padding: 0.55rem 1rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
}

/* ---- Small mobile ---- */
@media (max-width: 480px) {
  :root { --radius: 12px; --radius-lg: 18px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.4rem; }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  .gallery-grid { columns: 1; }

  .section-header { margin-bottom: 2.5rem; }

  .about-badge-gold { font-size: 0.72rem; padding: 0.6rem 0.8rem; max-width: 170px; }

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

  .footer-name-script { font-size: 1.6rem; }

  /* Lightbox nav buttons smaller on tiny screens */
  .lightbox-prev { left: 0.5rem; width: 40px; height: 40px; }
  .lightbox-next { right: 0.5rem; width: 40px; height: 40px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }
