/* ============================================================
   CAFÉ AJYAD — styles.css
   ✏️  EDIT COLORS: Search for ":root {" below to change brand colors
   ============================================================ */

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

/* ── CSS Variables (Brand Colors) ────────────────────────── */
:root {
  /* ✏️ PRIMARY BRAND COLORS */
  --terracotta:     #8B3A2A;
  --terracotta-lt:  #B8503E;
  --terracotta-dk:  #5E2519;
  --gold:           #C9A84C;
  --gold-lt:        #E2C46E;
  --gold-dk:        #9A7A2F;
  --cream:          #F5F0E8;
  --cream-dk:       #EDE4D3;
  --deep-green:     #2D4A35;
  --green-lt:       #3D6147;
  --coffee-dark:    #1A0F0A;
  --coffee-mid:     #2C1810;
  --warm-white:     #FDFAF5;
  --text-dark:      #1C120D;
  --text-mid:       #4A3728;
  --text-light:     #8B7355;

  /* ✏️ TYPOGRAPHY */
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;
  --font-arabic:    'Noto Naskh Arabic', serif;

  /* Shadows & Radii */
  --shadow-sm:      0 2px 8px rgba(26,15,10,0.08);
  --shadow-md:      0 8px 24px rgba(26,15,10,0.12);
  --shadow-lg:      0 16px 48px rgba(26,15,10,0.18);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --transition:     all 0.3s 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: var(--font-sans);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Moroccan Pattern SVG Background ─────────────────────── */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M30 0l8.66 5v10L30 20l-8.66-5V5zM0 20l8.66 5v10L0 40l-8.66-5V25zM60 20l8.66 5v10L60 40l-8.66-5V25zM30 40l8.66 5v10L30 60l-8.66-5V45z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Utility Classes ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--terracotta-dk);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: 0.75rem auto 1.25rem;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt));
  color: var(--cream);
  box-shadow: 0 4px 15px rgba(139,58,42,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,58,42,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--cream);
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--terracotta);
  transform: translateY(-2px);
}

/* ── Scroll Reveal Animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(28, 18, 13, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 400;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: rgba(245,240,232,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
  background: rgba(201,168,76,0.15);
}
.nav-order-btn {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt)) !important;
  color: var(--cream) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-xl) !important;
}
.nav-order-btn:hover {
  background: linear-gradient(135deg, var(--terracotta-lt), var(--gold-dk)) !important;
  transform: translateY(-1px);
}
/* Language Switch */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 8px;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(245,240,232,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--coffee-dark);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--coffee-dark);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .lang-switch { margin-top: 24px; }
.mobile-nav .lang-btn { font-size: 0.9rem; padding: 6px 14px; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(165deg, var(--coffee-dark) 0%, var(--terracotta-dk) 40%, #5C3020 70%, #2D1A10 100%);
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url('assets/images/hero.png') center center / cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg,
    rgba(26,15,10,0.7) 0%,
    rgba(94,37,25,0.55) 50%,
    rgba(26,15,10,0.8) 100%);
}
/* Moroccan geometric pattern overlay */
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 0 L46.93 6.93 L40 13.86 L33.07 6.93 Z M80 40 L73.07 46.93 L66.14 40 L73.07 33.07 Z M40 80 L33.07 73.07 L40 66.14 L46.93 73.07 Z M0 40 L6.93 33.07 L13.86 40 L6.93 46.93 Z M40 26.67 L53.33 40 L40 53.33 L26.67 40 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  min-height: 100vh; padding-top: 80px;
}
.hero-text { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 8px;
}
.hero-title-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  direction: rtl;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Hero Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-wrapper {
  position: relative;
  width: 480px; max-width: 100%;
}
.hero-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.3);
}
.hero-img-badge {
  position: absolute; top: 24px; right: -20px;
  background: var(--gold);
  color: var(--coffee-dark);
  font-weight: 700; font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.hero-img-badge-2 {
  position: absolute; bottom: 32px; left: -20px;
  background: var(--coffee-dark);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--cream);
  font-size: 0.85rem; font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite 1.5s;
}
/* Mountain SVG illustration (fallback) */
.hero-mountain-svg {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(245,240,232,0.5); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeInUp 2s ease 1s both;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(245,240,232,0.3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   TODAY'S SPECIAL BANNER
══════════════════════════════════════════════════════════ */
#todays-special {
  background: linear-gradient(135deg, var(--terracotta-dk), var(--terracotta));
  padding: 20px 0;
  position: relative; overflow: hidden;
}
#todays-special::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23C9A84C' fill-opacity='0.2'/%3E%3C/svg%3E");
}
.special-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; position: relative; z-index: 1;
}
.special-tag {
  background: var(--gold);
  color: var(--coffee-dark);
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.special-text {
  color: var(--cream); font-family: var(--font-serif);
  font-size: 1.1rem;
}
.special-price {
  color: var(--gold-lt); font-weight: 700; font-size: 1.2rem;
}
.special-cta {
  background: rgba(245,240,232,0.15);
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--cream); font-size: 0.85rem;
  padding: 6px 18px; border-radius: 20px;
  cursor: pointer; transition: var(--transition);
}
.special-cta:hover { background: var(--cream); color: var(--terracotta); }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
#about::before {
  content: '☕';
  position: absolute; right: -20px; top: 40px;
  font-size: 200px; opacity: 0.04;
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-fallback {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--terracotta-dk), var(--terracotta), var(--gold-dk));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--cream);
  font-family: var(--font-serif); font-size: 3rem;
}
.about-img-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-tag strong { display: block; font-size: 2rem; font-family: var(--font-serif); color: var(--gold); }
.about-text { }
.about-desc {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 40px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature-icon { font-size: 2rem; margin-bottom: 8px; }
.feature-title { font-weight: 600; color: var(--terracotta-dk); margin-bottom: 4px; }
.feature-desc { font-size: 0.85rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════════════ */
#menu {
  padding: 100px 0;
  background: var(--warm-white);
}
.menu-header { text-align: center; margin-bottom: 48px; }
.menu-filters {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--cream-dk);
  background: var(--warm-white);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(139,58,42,0.25);
  transform: translateY(-1px);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.4);
}
.menu-card.hidden { display: none; }
.menu-card-img {
  height: 180px;
  position: relative; overflow: hidden;
  background: var(--warm-white);
}
.menu-card-img-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
}
.menu-card-img-el {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.menu-card:hover .menu-card-img-visual { transform: scale(1.08); }
.menu-card:hover .menu-card-img-el { transform: scale(1.08); }
.menu-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
}
.menu-card-body { padding: 20px; }
.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--terracotta-dk);
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.menu-card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dk);
}
.menu-card-price span { font-size: 0.75rem; color: var(--text-light); font-family: var(--font-sans); font-weight: 400; }
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt));
  color: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(139,58,42,0.3);
}
.add-to-cart-btn:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 15px rgba(139,58,42,0.4);
}

/* ══════════════════════════════════════════════════════════
   ORDER ONLINE SECTION
══════════════════════════════════════════════════════════ */
#order {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}
.order-items { }
.order-category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--terracotta-dk);
  margin: 32px 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.order-category-title::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 16px;
}
.order-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.order-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.order-card-emoji {
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.3s ease;
}
.order-card-img-el {
  width: 100%; height: 110px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.order-card:hover .order-card-emoji { transform: scale(1.15); }
.order-card:hover .order-card-img-el { transform: scale(1.08); }
.order-card-body { padding: 14px 16px; }
.order-card-name { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; font-size: 0.95rem; }
.order-card-desc { font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.order-card-footer { display: flex; align-items: center; justify-content: space-between; }
.order-card-price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-dk); font-weight: 700; }
.order-add-btn {
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.order-add-btn:hover { background: var(--terracotta-lt); transform: scale(1.05); }

/* ── Cart Panel ───────────────────────────────────────────── */
.cart-panel {
  position: sticky; top: 100px;
  background: var(--coffee-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--cream);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cart-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
}
.cart-count {
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.75rem; font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-empty {
  text-align: center; padding: 40px 0;
  color: rgba(245,240,232,0.4);
}
.cart-empty .cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.cart-empty p { font-size: 0.9rem; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.cart-item-emoji { font-size: 1.5rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 500; }
.cart-item-price { font-size: 0.8rem; color: var(--gold); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  background: rgba(255,255,255,0.1);
  border: none; color: var(--cream);
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--terracotta); }
.qty-num { font-size: 0.9rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-remove-btn {
  background: none; border: none;
  color: rgba(245,240,232,0.4);
  cursor: pointer; font-size: 1rem;
  transition: var(--transition); padding: 2px;
}
.cart-remove-btn:hover { color: #ff6b6b; }
.cart-divider { border: none; border-top: 1px solid rgba(201,168,76,0.15); margin: 16px 0; }
.cart-totals { margin-bottom: 20px; }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; color: rgba(245,240,232,0.7);
  margin-bottom: 8px;
}
.cart-total-row.grand { font-weight: 700; font-size: 1.1rem; color: var(--cream); }
.cart-total-row.grand .cart-total-val { color: var(--gold); }
.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.cart-clear-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.5);
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  cursor: pointer; transition: var(--transition);
  margin-top: 8px;
}
.cart-clear-btn:hover { border-color: #ff6b6b; color: #ff6b6b; }

/* ══════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════ */
#gallery {
  padding: 100px 0;
  background: var(--warm-white);
}
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.7) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  color: var(--cream); font-family: var(--font-serif);
  font-size: 1rem;
}
/* Gradient fallback cards for gallery items without real images */
.gallery-fallback {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; font-size: 3rem;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-fallback { transform: scale(1.07); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
#testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--terracotta-dk) 0%, var(--coffee-mid) 100%);
  position: relative; overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 300px; color: rgba(201,168,76,0.05);
  pointer-events: none; line-height: 1;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-title { color: var(--cream); }
.testimonials-header .section-subtitle { color: rgba(245,240,232,0.6); }
.testimonials-header .gold-divider { }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(245,240,232,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 2px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--cream); font-size: 0.9rem; }
.testimonial-loc { font-size: 0.8rem; color: rgba(245,240,232,0.5); }

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-header { text-align: center; margin-bottom: 60px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.contact-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.contact-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.contact-card-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--terracotta-dk); margin-bottom: 8px; }
.contact-card-info { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.6; }
.contact-btn-group { display: flex; flex-direction: column; gap: 10px; }
.contact-action-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}
.contact-action-btn.primary {
  background: var(--terracotta);
  color: var(--cream);
}
.contact-action-btn.primary:hover { background: var(--terracotta-lt); transform: translateY(-1px); }
.contact-action-btn.whatsapp {
  background: #25D366; color: white;
}
.contact-action-btn.whatsapp:hover { background: #128C7E; transform: translateY(-1px); }
.contact-action-btn.directions {
  background: #4285F4; color: white;
}
.contact-action-btn.directions:hover { background: #1a5dc8; transform: translateY(-1px); }
.contact-action-btn.email {
  background: var(--deep-green); color: var(--cream);
}
.contact-action-btn.email:hover { background: var(--green-lt); transform: translateY(-1px); }
/* ── Map Container ────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  position: relative;
  border: 2px solid rgba(201, 168, 76, 0.35);
  background: var(--coffee-dark);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  /* Warm sepia-terracotta tint to match café branding */
  filter: sepia(60%) hue-rotate(-10deg) saturate(130%) brightness(88%) contrast(1.05);
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  /* Reveal full color on hover */
  filter: sepia(0%) hue-rotate(0deg) saturate(100%) brightness(100%) contrast(1);
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--coffee-dark);
  padding: 60px 0 0;
  position: relative; overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(201,168,76,0.4); }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); }
.footer-tagline { font-size: 0.9rem; color: rgba(245,240,232,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(245,240,232,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.hour-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: rgba(245,240,232,0.55);
}
.hour-row .day { color: rgba(245,240,232,0.75); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(245,240,232,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(245,240,232,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════════ */
.floating-wa {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  cursor: pointer;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.floating-wa svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}
.floating-order-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt));
  color: var(--cream);
  text-align: center;
  padding: 16px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; box-shadow: 0 -4px 20px rgba(139,58,42,0.3);
}
/* Toast notification */
.toast {
  position: fixed; bottom: 100px; right: 32px; z-index: 2000;
  background: var(--deep-green);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-md);
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 10, 8, 0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85vw;
  max-height: 80vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: opacity 0.22s ease-in-out;
}
.lightbox-img.switching {
  opacity: 0;
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  text-align: center;
  letter-spacing: 0.02em;
  background: rgba(26, 15, 10, 0.85);
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 168, 76, 0.15);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: fit-content;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(28, 18, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  padding-bottom: 4px;
  z-index: 2010;
}
.lightbox-close:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: scale(1.05);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 18, 13, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--cream);
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2005;
  user-select: none;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--coffee-dark);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-nav.prev {
  left: 32px;
}
.lightbox-nav.next {
  right: 32px;
}
@media (max-width: 768px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    background: rgba(28, 18, 13, 0.85);
  }
  .lightbox-nav.prev {
    left: 12px;
  }
  .lightbox-nav.next {
    right: 12px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-caption {
    font-size: 0.95rem;
    padding: 6px 16px;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 560px; margin: 0 auto; }

  .order-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; max-height: none; }

  .gallery-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-wide  { grid-column: span 2; }
  .gallery-item.gi-tall  { grid-column: span 1; grid-row: span 1; }

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

  /* About photo grid — tablet */
  .about-photo-grid { height: auto; }
  .about-photo-main { height: 280px; }
  .about-photo-stack { flex-direction: row; height: auto; gap: 10px; }
  .about-photo-side  { flex: 1; height: 180px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .about-features { grid-template-columns: 1fr; }
  .about-photo-stack { flex-direction: row; }
  .about-photo-main  { height: 220px; }
  .about-photo-side  { height: 150px; }

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

  .gallery-grid-v2 { grid-template-columns: 1fr 1fr; gap: 4px; grid-auto-rows: 150px; }
  .gallery-item.gi-wide { grid-column: span 2; }
  .gallery-item.gi-tall { grid-column: span 1; grid-row: span 1; }

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

  .floating-order-mobile { display: block; }
  .floating-wa { bottom: 100px; }

  .order-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .menu-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .gallery-grid-v2 { grid-template-columns: 1fr 1fr; gap: 4px; grid-auto-rows: 130px; }
  .gallery-item.gi-wide { grid-column: span 2; }
  .about-photo-stack { flex-direction: row; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PHOTO GRID — 3-image collage
══════════════════════════════════════════════════════════ */
.about-photo-grid {
  display: flex;
  gap: 12px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Left: big main photo */
.about-photo-main {
  flex: 1.4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-photo-main:hover img { transform: scale(1.06); }

/* Right: stacked two smaller photos */
.about-photo-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-photo-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.about-photo-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-photo-side:hover img { transform: scale(1.07); }

/* Shared hover caption for all about photos */
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.7) 0%, transparent 55%);
  opacity: 0;
  display: flex; align-items: flex-end;
  padding: 16px;
  transition: opacity 0.3s ease;
}
.about-photo-main:hover .about-photo-overlay,
.about-photo-side:hover .about-photo-overlay {
  opacity: 1;
}
.about-photo-overlay span {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

/* Gold border accent on the collage */
.about-photo-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.25);
  pointer-events: none;
  z-index: 1;
}

/* keep the tag badge positioned relative to the wrapper */
.about-image-wrapper {
  position: relative;
}
.about-img-tag {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}
.about-img-tag strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   GALLERY v2 — Masonry-style 3-col grid
══════════════════════════════════════════════════════════ */
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}

/* Wide: spans all 3 columns — panoramic hero shot */
.gallery-item.gi-wide {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery-item.gi-wide img { height: 340px; }

/* Tall: spans 2 rows */
.gallery-item.gi-tall {
  grid-row: span 2;
}

/* All gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--coffee-dark);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex; align-items: flex-end;
  padding: 18px 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
}

/* Gradient fallback cards (no photo) */
.gallery-fallback {
  width: 100%; height: 100%;
  min-height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-fallback { transform: scale(1.05); }

/* Colour tint overlays — reused photos with different moods */
.gallery-tint-warm,
.gallery-tint-green,
.gallery-tint-gold {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}
.gallery-tint-warm  { background: rgba(200,100,30,0.38); }
.gallery-tint-green { background: rgba(30,80,45,0.42); }
.gallery-tint-gold  { background: rgba(160,120,20,0.32); }

.gallery-item:hover .gallery-tint-warm,
.gallery-item:hover .gallery-tint-green,
.gallery-item:hover .gallery-tint-gold {
  opacity: 0.6;
}

/* Gallery category filter buttons styling */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  background: rgba(28, 18, 13, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--coffee-dark);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
  transform: translateY(-1px);
}

/* Gallery filtering transition animation */
.gallery-item {
  transition: transform 0.5s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.gallery-item.hidden {
  display: none !important;
}

