/* Styles.css — FINAL FIXED (single source of truth, no duplicates) */

/* =========================
   VARIABLES
========================= */
:root {
  /* Core palette (your original) */
  --bg: #FBF3D6;
  --card: #F6EBC6;
  --green: #0B3B2E;
  --greenDark: #072B22;
  --pill: rgba(11, 59, 46, 0.08);
  --white: #FFFFFF;

  /* Map aliases used in this page */
  --cream: var(--bg);
  --deep-green: var(--green);
  --soft-green: #E8F1E1; /* same “sage” tone you used */
  --overlay: rgba(0, 0, 0, 0.45);

  /* Layout tokens */
  --hero-spacing: 48px;
  --container-padding: 2rem;
  --gap: 2rem;

  /* Radius */
  --border-radius-card: 32px;
  --border-radius-pill: 60px;

  /* Shadows + transitions */
  --shadow-sm: 0 4px 12px rgba(11, 59, 46, 0.06);
  --shadow: 0 8px 20px rgba(11, 59, 46, 0.08);
  --shadow-hover: 0 16px 28px rgba(11, 59, 46, 0.12);
  --transition: all 0.3s ease;
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--cream);
  color: var(--deep-green);
  line-height: 1.4;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  background-color: var(--cream);
  padding: 2rem 0 3rem;
}

.hero-container {
  background-color: var(--cream);
  border-radius: var(--border-radius-card);
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

/* =========================
   HEADER (screenshot layout)
========================= */
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 0 10px;
  position: relative;
}

/* Center brand */
.brand-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--deep-green);
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  top: 48px;
  left: 36px;
  transform: scale(1.15);
}

.hamburger-line {
  width: 28px;
  height: 2.4px;
  background: var(--green, #0B3B2E);
  transition: 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* BODY LOCK */
body.menu-open {
  overflow: hidden;
}

/* MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  background: var(--card, #F6EBC6);
  transform: translateX(110%);
  transition: 0.3s ease;
  z-index: 1001;
  padding: 90px 26px 26px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

/* LINKS */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-links .nav-link {
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-size: 1.05rem;
  background: transparent;
}

.mobile-menu-links .nav-link.active {
  background: var(--greenDark, #072B22);
  color: #fff;
}

/* FOOTER */
.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-divider {
  height: 1px;
  background: rgba(11, 59, 46, 0.15);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-weight: 500;
}

.mobile-socials {
  display: flex;
  gap: 12px;
}

/* =========================
   TOP ACTIONS (Phone + Cart)
========================= */
.top-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep-green);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.phone i {
  font-size: 14px;
}

.phone:hover {
  background: rgba(11, 59, 46, 0.06);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 999px;
  text-decoration: none;
  color: var(--deep-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cart-pill i {
  font-size: 14px;
}

.cart-pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.cart-pill .count {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 59, 46, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =========================
   NAV PILL
========================= */
.nav-pill {
  display: inline-flex;
  background-color: var(--soft-green);
  border-radius: var(--border-radius-pill);
  padding: 0.4rem;
  margin-bottom: 3rem;
}

.nav-pill a {
  padding: 0.5rem 1.6rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-weight: 500;
  color: var(--deep-green);
  font-size: 1rem;
  transition: var(--transition);
}

.nav-pill a.active {
  background-color: var(--deep-green);
  color: var(--cream);
}

.nav-pill a:not(.active):hover {
  background-color: rgba(11, 59, 46, 0.08);
}

/* =========================
   HERO LAYOUT
========================= */
.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* (optional) keep for other pages that use button */
.hero-btn {
  background: transparent;
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
  padding: 0.8rem 2.2rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.hero-btn:hover {
  background-color: var(--deep-green);
  color: var(--cream);
}

.hero-image-placeholder {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

/* HERO LOGO CIRCLE (true color, no fade) */
.hero-graphic {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: var(--soft-green);
  border: 8px solid rgba(11, 59, 46, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-graphic img {
  width: 48%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
  background-color: var(--soft-green);
  padding: 3.5rem 0 4rem;
}

.gallery-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.gallery-card {
  background-color: var(--cream);
  border-radius: var(--border-radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--soft-green);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.02);
}

/* =========================
   FOOTER
========================= */
.footer-hero {
  background-color: transparent;
  width: 100%;
  padding: var(--hero-spacing) 20px;
}

.footer-shell {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 32px;
  overflow: hidden;
}

.footer-top {
  padding: clamp(28px, 4vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(30px, 4vw, 50px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--deep-green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  line-height: 1.5;
  font-weight: 400;
}

.big-statement {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: clamp(25px, 3vw, 35px);
  max-width: 300px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--greenDark);
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--deep-green);
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-nav .nav-link {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  display: inline-block;
}

.footer-nav .nav-link:hover {
  color: var(--greenDark);
  transform: translateX(4px);
}

.footer-nav .nav-link.active {
  background-color: var(--deep-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

/* FOOTER HUGE TEXT marquee */
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(220px, 28vw, 420px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 5vw, 70px);
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(150px, 22vw, 520px);
  color: var(--deep-green);
  line-height: 0.72;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}

.huge-text .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: footerMarquee 50s linear infinite;
}

.huge-text .marquee-track + .marquee-track {
  margin-left: 2.2rem;
}

.marquee-logo {
  height: 0.66em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35em;
  transform: translateY(-0.03em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes footerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* =========================
   GLOBAL SPACING (safe)
========================= */
.hero-wrapper,
.opening-hours-section,
.about-section,
.menu-hero-section,
.gallery-section {
  padding-top: var(--hero-spacing);
  padding-bottom: var(--hero-spacing);
}

body > *:last-child {
  margin-bottom: 0 !important;
}

/* =========================
   RESPONSIVE
========================= */

/* Small screens: nav pill wrapping */
@media (max-width: 520px) {
  .nav-pill {
    width: min(92vw, 520px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px;
  }

  .nav-pill a {
    padding: 10px 16px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .statement-column {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .statement-column {
    grid-column: span 2;
    order: 1;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-graphic {
    width: 260px;
    height: 260px;
  }

  .hero-graphic img {
    width: 52%;
  }
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-pill {
    display: none;
  }

  .top-actions {
    margin-top: 14px;
    transform: translateY(6px);
  }

  .footer-hero {
    padding: 40px 15px;
  }

  .footer-shell {
    width: 92vw;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .statement-column {
    grid-column: span 1;
  }

  .big-statement {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-graphic {
    width: 240px;
    height: 240px;
  }

  .hero-graphic img {
    width: 54%;
  }
}

@media (max-width: 480px) {
  .hamburger-btn {
    top: 40px;
    left: 24px;
    transform: scale(1.1);
  }

  .hamburger-line {
    width: 26px;
  }

  .top-actions {
    margin-top: 18px;
    transform: translateY(8px);
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .huge-text .marquee-track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   REMOVE underline on menu hero link (kept for other pages)
========================= */
.menu-hero-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.menu-hero-link:focus,
.menu-hero-link:active,
.menu-hero-link:visited {
  outline: none;
  text-decoration: none;
}

.menu-hero-link * {
  text-decoration: none !important;
}
/* Add these mobile menu styles to your existing Styles.css */

/* =========================
   MOBILE MENU STYLES
========================= */

/* HAMBURGER BUTTON */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  top: 48px;
  left: 36px;
  transform: scale(1.15);
}

.hamburger-line {
  width: 28px;
  height: 2.4px;
  background: var(--green, #0B3B2E);
  transition: 0.3s ease;
}

/* Active state (X icon) */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* BODY LOCK */
body.menu-open {
  overflow: hidden;
}

/* MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  background: var(--card, #F6EBC6);
  transform: translateX(110%);
  transition: 0.3s ease;
  z-index: 1001;
  padding: 100px 28px 30px;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

/* MENU LINKS */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-links .nav-link {
  display: block;
  padding: 15px 20px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.2s ease;
  background: transparent;
}

.mobile-menu-links .nav-link:hover {
  background: rgba(11, 59, 46, 0.08);
}

.mobile-menu-links .nav-link.active {
  background: var(--greenDark, #072B22);
  color: #fff;
}

/* DIVIDER */
.mobile-divider {
  height: 1px;
  background: rgba(11, 59, 46, 0.15);
  width: 100%;
  margin: 10px 0 5px;
}

/* PHONE NUMBER */
.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 10px 0;
}

.mobile-phone i {
  font-size: 1.1rem;
}

/* SOCIAL LINKS */
.mobile-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.mobile-socials .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep-green, #0B3B2E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.mobile-socials .social-btn:hover {
  background: var(--greenDark, #072B22);
  transform: translateY(-2px);
}

/* MOBILE VISIBILITY */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-pill {
    display: none;
  }

  .top-actions {
    margin-top: 14px;
    transform: translateY(6px);
  }
}

@media (max-width: 480px) {
  .hamburger-btn {
    top: 40px;
    left: 24px;
    transform: scale(1.1);
  }

  .hamburger-line {
    width: 26px;
  }

  .top-actions {
    margin-top: 18px;
    transform: translateY(8px);
  }

  .mobile-menu {
    padding: 90px 22px 25px;
    width: min(85vw, 340px);
  }
}