/* ═══════════════════════════════════════════════════════════
   VILA FERDINAND — Main Stylesheet
   
   STRUCTURE:
   1. Variables & Reset
   2. Utilities & Typography
   3. Header & Navigation
   4. Hero Section
   5. About Section
   6. Restaurant Gallery
   7. Menu Categories
   8. Delivery Section
   9. Catering Section
   10. Blog Section
   11. Customer Service
   12. Locations
   13. Footer
   14. Floating Elements (WhatsApp, Cookie Banner)
   15. Responsive Breakpoints
   16. Print Styles
   
   TO CHANGE COLORS: Edit the :root variables below.
   TO CHANGE FONTS: Edit the --font-display and --font-body variables.
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES & RESET ─── */
:root {
  /* PRIMARY PALETTE — Edit these to match your brand */
  --color-bg-deep: #2C1810;
  --color-bg-warm: #8B5E3C;
  --color-bg-terra: #B07A56;
  --color-bg-sand: #C9A882;
  --color-bg-cream: #F4EDE4;
  --color-bg-light: #FAF6F1;

  /* TEXT COLORS */
  --color-text-dark: #2C1810;
  --color-text-body: #4A3728;
  --color-text-light: #F4EDE4;
  --color-text-muted: #9B8A7A;

  /* ACCENT COLORS */
  --color-accent-gold: #C8973E;
  --color-accent-olive: #6B7B4C;
  --color-accent-rust: #A0522D;

  /* OVERLAYS */
  --color-overlay: rgba(44, 24, 16, 0.55);
  --color-overlay-heavy: rgba(44, 24, 16, 0.72);

  /* FONTS — loaded from Google Fonts in HTML <head> */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* SPACING SCALE */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* LAYOUT */
  --container: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Skip to content — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: 0.85rem;
  border-radius: 0 0 6px 6px;
}

.skip-link:focus {
  top: 0;
}

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


/* ─── 2. UTILITIES & TYPOGRAPHY ─── */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
}

.label--center {
  justify-content: center;
}

.label--center::before {
  display: none;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
  color: var(--color-text-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  border-color: var(--color-bg-deep);
}

.btn--primary:hover {
  background: var(--color-accent-rust);
  border-color: var(--color-accent-rust);
}

.btn--outline {
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn--outline:hover {
  background: var(--color-text-light);
  color: var(--color-bg-deep);
}

.btn--dark-outline {
  color: var(--color-bg-deep);
  border-color: var(--color-bg-deep);
}

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

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll reveal — SAFE: elements start visible, JS adds animation class */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal--hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Image wrapper */
.img-wrap {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: var(--color-bg-cream);
}

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

.img-wrap:hover img {
  transform: scale(1.05);
}

/* Placeholder — REMOVE these when adding real images */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
}


/* ─── 3. HEADER & NAVIGATION ───
   NOTE: Old standalone header/nav styles removed.
   The centered-logo header layout is defined below (line ~1377+).
   Header HTML is generated dynamically by nav.js.
   ─── */


/* ─── 4. HERO SECTION ─── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 550px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-deep); /* fallback if images fail */
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide:first-child {
  opacity: 1; /* First slide visible by default — no JS dependency */
}

.hero-slide.active { opacity: 1; }
.hero-slide:not(.active) { opacity: 0; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(44, 24, 16, 0.4) 50%,
    rgba(44, 24, 16, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-content.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.hero-tagline em {
  font-style: italic;
  color: var(--color-bg-sand);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  opacity: 0.75;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

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

/* Social sidebar */
.hero-social {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-lg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 237, 228, 0.3);
  border-radius: 50%;
  color: var(--color-text-light);
  transition: var(--transition);
}

.hero-social a:hover {
  background: var(--color-text-light);
  color: var(--color-bg-deep);
  border-color: var(--color-text-light);
}

.hero-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(244, 237, 228, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-text-light);
  width: 48px;
}

/* Counter */
.hero-counter {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-lg);
  z-index: 3;
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.hero-counter .current {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
}


/* ─── 5. ABOUT SECTION ─── */
.about {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text .label { color: var(--color-accent-gold); margin-bottom: var(--space-sm); }
.about-text .section-heading { color: var(--color-text-dark); margin-bottom: var(--space-md); }
.about-text .body-text { margin-bottom: var(--space-sm); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
}

.about-images .img-wrap:first-child { grid-row: 1 / 3; }


/* ─── 6. RESTAURANT GALLERY ─── */
.restaurants {
  padding: var(--space-xl) 0;
  background: var(--color-bg-cream);
}

.restaurants-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.restaurants-header .label { color: var(--color-accent-gold); }

.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.restaurant-gallery .img-wrap { aspect-ratio: 4/3; }

.restaurants-tagline { text-align: center; }
.restaurants-tagline .section-subheading { color: var(--color-text-dark); margin-bottom: var(--space-md); }
.restaurants-tagline .btn-group { justify-content: center; }


/* ─── 7. MENU CATEGORIES ─── */
.menu-cats {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-bg-light);
}

.menu-cats-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.menu-cats-header .label { color: var(--color-accent-gold); }

.menu-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.menu-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

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

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.menu-card-overlay span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-light);
}


/* ─── 8. DELIVERY SECTION ─── */

/* ===== DELIVERY UPGRADE ===== */
.delivery {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.delivery-text .section-heading {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.delivery-text .body-text {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.85;
}

/* badges row */
.delivery-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(244, 237, 228, 0.9);
  background: rgba(244, 237, 228, 0.06);
  border: 1px solid rgba(244, 237, 228, 0.12);
}

/* platforms block: turn into clean “buttons” */
.delivery-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(244, 237, 228, 0.12);
  border-bottom: 1px solid rgba(244, 237, 228, 0.12);
}

.delivery-platforms > span {
  width: 100%;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}

/* platform buttons */
.platform {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(244, 237, 228, 0.16);
  background: rgba(0,0,0,0.12);
}

.platform:hover {
  background: rgba(200, 151, 62, 0.12);
  border-color: rgba(200, 151, 62, 0.35);
}

/* make CTA stronger */
.delivery .btn.btn--outline {
  margin-top: 1.3rem;
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-deep);
}

.delivery .btn.btn--outline:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* image card feel */
.delivery-img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.delivery-img img {
  transform: scale(1.02);
}

.delivery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 70% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

/* mobile: keep it tight */
@media (max-width: 1024px) {
  .delivery-text { order: 2; }
  .delivery-img { order: 1; }
}
































/* ─── 9. CATERING SECTION ─── */
.catering {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-cream);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.catering-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-warm);
}

.catering-img img { width: 100%; height: 100%; object-fit: cover; }

.catering-text .label { color: var(--color-accent-gold); margin-bottom: var(--space-sm); }
.catering-text .section-heading { color: var(--color-text-dark); margin-bottom: var(--space-md); }
.catering-text .body-text { margin-bottom: var(--space-md); }


.catering-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.catering-media .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px);
  transform: scale(1.1);
  opacity: 0.45;
}

.catering-media .fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* shows the whole video */
}










/* ─── 10. BLOG SECTION ─── */
.blog {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-light);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
}

.blog-header .label { color: var(--color-accent-gold); margin-bottom: var(--space-xs); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
}

.blog-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-cream);
}

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

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-content { padding: 1.25rem; }

.blog-card-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ─── 11. CUSTOMER SERVICE ─── */
.service {
  padding: var(--space-xl) 0;
  background: var(--color-bg-warm);
  color: var(--color-text-light);
  text-align: center;
}

.service .section-heading { color: var(--color-text-light); margin-bottom: var(--space-sm); }
.service .body-text { color: rgba(244, 237, 228, 0.75); margin: 0 auto var(--space-md); text-align: center; }

.service-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ─── 12. LOCATIONS ─── */




.locations-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.locations-info-divider {
  width: 1px;
  background: #d4c9b8;
  align-self: stretch;
}

.locations-info-col {
  flex: 1;
  padding: 0 1rem;
}

.locations-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #2C1810;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.locations-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.locations-info-row svg {
  color: #8B6F47;
  flex-shrink: 0;
  margin-top: 2px;
}

.locations-info-row span,
.locations-info-row a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.925rem;
  color: #5a4a3a;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.locations-info-row a:hover {
  color: #2C1810;
}

/* Responsive: stack on mobile */
@media (max-width: 640px) {
  .locations-info {
    flex-direction: column;
    gap: 2rem;
  }
  .locations-info-divider {
    width: 100%;
    height: 1px;
  }
  .locations-info-col {
    padding: 0;
  }
}


/* ─── 13. FOOTER ─── */
.footer {
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(244, 237, 228, 0.1);
}

.footer-brand .logo { margin-bottom: var(--space-md); }

.footer-brand > p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 237, 228, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.75rem;
  opacity: 0.4;
}


/* ─── 14. FLOATING ELEMENTS ─── */

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--color-bg-deep);
  color: var(--color-text-light);
  padding: 1.25rem var(--space-md);
  display: none; /* shown by JS if no consent stored */
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible { display: flex; }

.cookie-banner p {
  font-size: 0.82rem;
  opacity: 0.8;
  max-width: 600px;
  line-height: 1.5;
}

.cookie-banner .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.68rem;
}

.cookie-banner .btn::after { display: none; }


/* ─── 15. RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .delivery-grid,
  .catering-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 5rem;
    --space-xl: 3.5rem;
  }

  .hero-social, .hero-counter { display: none; }

  .restaurant-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0 var(--space-sm);
  }
  .restaurant-gallery .img-wrap { aspect-ratio: 3/4; }
  .restaurant-gallery .gallery-title { font-size: 0.85rem; }
  .menu-scroll { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .about-images { grid-template-rows: 160px 160px; }

  .service-btns { flex-direction: column; align-items: center; }
}


/* ─── 16. PRINT STYLES ─── */
@media print {
  .header, .hero-social, .hero-indicators, .hero-counter,
  .whatsapp-float, .cookie-banner, .mobile-menu { display: none !important; }

  body { color: #000; background: #fff; }
  .hero { height: auto; min-height: 0; page-break-after: always; }
  .section-heading { color: #000; }
  a { text-decoration: underline; }
}

/* Category Carousel — Circle Icons (era.al style) */
.category-carousel {
  padding: var(--space-md);
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
}

.category-swiper {
  overflow: hidden;
  padding-bottom: 2.5rem;
}

.category-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: grab;
  user-select: none;
  text-decoration: none;
}

.category-icon img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  padding: 22px;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-icon:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.18);
}

.category-icon span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

/* Swiper dots styling */
.category-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-text-muted);
  opacity: 0.4;
}

.category-swiper .swiper-pagination-bullet-active {
  background: var(--color-text-dark);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   HEADER — Centered Logo Layout (Artigiano-inspired)
   ═══════════════════════════════════════════════════
   REPLACE your existing .header styles and the old
   nav-dropdown.css with this file's contents.
   ═══════════════════════════════════════════════════ */

/* ── Header Container ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.92) 0%, rgba(20, 18, 15, 0.75) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.6rem 0;
}

.header.scrolled {
  background: rgba(20, 18, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.3rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Logo (centered) ── */
.logo-center {
  flex-shrink: 0;
  margin: 0 2.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.logo-center img {
  height: 70px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-center img {
  height: 50px;
}

.logo-center:hover {
  transform: scale(1.03);
}

/* ── Nav Left & Right ── */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-left > a,
.nav-right > a,
.nav-dropdown > a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 225, 215, 0.85);
  text-decoration: none;
  padding: 0.75rem 1rem;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-left > a:hover,
.nav-right > a:hover,
.nav-dropdown > a:hover,
.nav-left > a.active,
.nav-right > a.active,
.nav-dropdown > a.active {
  color: #c9a96e;
}

/* Underline effect on hover */
.nav-left > a::after,
.nav-right > a::after,
.nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-left > a:hover::after,
.nav-right > a:hover::after,
.nav-dropdown > a:hover::after,
.nav-left > a.active::after,
.nav-right > a.active::after,
.nav-dropdown > a.active::after {
  transform: scaleX(1);
}

/* ── Dropdown Arrow ── */
.nav-dropdown > a .dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  margin-left: 4px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: rgba(26, 25, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #bab3a6 !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important; /* no underline inside dropdown */
}

.nav-dropdown-menu a:hover {
  color: #c9a96e !important;
  background: rgba(201, 169, 110, 0.08);
  padding-left: 1.45rem;
}

.nav-dropdown-menu a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav-dropdown-menu a:hover svg {
  opacity: 1;
}

.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  margin: 0.3rem 1rem;
  background: rgba(201, 169, 110, 0.08);
}

/* ── Language Switcher ── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--color-bg-cream);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.lang-switcher:hover {
  opacity: 1;
  text-decoration: none;
}

.lang-current {
  color: var(--color-accent-gold);
}

.lang-divider {
  opacity: 0.4;
}

.lang-other {
  opacity: 0.6;
}

.lang-switcher:hover .lang-other {
  opacity: 1;
  color: var(--color-accent-gold);
}

.lang-switcher-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-accent-gold);
  border-radius: 50%;
  color: var(--color-accent-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition);
}

.lang-switcher-mobile:hover {
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
}

/* ── Hamburger (mobile only) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e6e1d7;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: rgba(20, 18, 15, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.mobile-menu-header img {
  height: 50px;
  width: auto;
  display: block;
}

.mobile-menu > a,
.mobile-menu .mobile-dropdown-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(230, 225, 215, 0.85);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font: inherit;
}

.mobile-menu > a:hover,
.mobile-menu .mobile-dropdown-toggle:hover {
  color: #c9a96e;
}

.mobile-dropdown-toggle .dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle .dropdown-arrow.open {
  transform: rotate(180deg);
}

.mobile-menu .mobile-dropdown-items {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-menu .mobile-dropdown-items.open {
  display: flex;
}

.mobile-menu .mobile-dropdown-items a {
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(186, 179, 166, 0.75);
  padding: 0.55rem 0;
  text-decoration: none;
  transition: color 0.25s ease;
  border-bottom: none;
}

.mobile-menu .mobile-dropdown-items a:hover {
  color: #c9a96e;
}

/* Overlay when mobile menu open */
body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
}

/* ── Footer dropdown overrides ── */
.footer-col .nav-dropdown {
  position: static;
}

.footer-col .nav-dropdown > a .dropdown-arrow {
  display: none;
}

.footer-col .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-width: auto;
}

.footer-col .nav-dropdown-menu a {
  padding: 0;
  color: inherit !important;
  font-size: inherit;
  gap: 0;
}

.footer-col .nav-dropdown-menu a:hover {
  padding-left: 0;
  background: transparent;
}

.footer-col .nav-dropdown-menu a svg {
  display: none;
}

.footer-col .nav-dropdown-menu .dropdown-divider {
  display: none;
}

/* ── Gallery items ── */
.gallery-item {
  text-align: center;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   ═══════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .nav-left {
    display: none;
  }

  /* Hide all nav-right links except the lang switcher */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    position: static;
  }
  .nav-right > a:not(.lang-switcher) {
    display: none;
  }
  .nav-right .nav-dropdown {
    display: none;
  }
  .nav-right .lang-switcher {
    margin-right: 0.5rem;
    font-size: 0.7rem;
  }

  .hamburger {
    display: flex;
    position: static;
    transform: none;
  }

  .header-inner {
    justify-content: space-between;
    padding: 0 1.25rem;
  }

  .logo-center {
    margin: 0;
    order: 0;
  }

  .logo-center img {
    height: 50px;
  }

  .header.scrolled .logo-center img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 85vw;
  }

  .logo-center img {
    height: 44px;
  }
}