/* ------------------------------------
    ROOT CONFIGURATION & THEME
------------------------------------ */
:root {
  /* Color Palette - Light Theme with Pink & Green Accents */
  --color-bg: #fffbfb; /* Off-white with a tiny tint of pink */
  --color-surface: #ffffff; /* Pure white cards */
  --color-glow: rgba(236, 72, 153, 0.15); /* Soft pink glow */

  --color-text-primary: #111827; /* Dark Charcoal for high readability */
  --color-text-secondary: #4b5563; /* Medium gray for subtitles */

  --color-primary: #ec4899; /* Vibrant Pink (Main Brand) */
  --color-primary-hover: #db2777;

  --color-accent: #10b981; /* Premium Green Accessory */
  --color-accent-hover: #059669;
  --color-accent-glow: rgba(16, 185, 129, 0.3);

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Transitions & Spacing */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 5rem;
  --space-2xl: 10rem;
  --viewport-height: 100vh;
  --color-chrome-top: #fff1f2;
  --color-chrome-bottom: #fffbfb;
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --navbar-offset: calc(80px + var(--safe-area-top));
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}

/* ------------------------------------
    RESET & BASE
------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-chrome-top);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: var(--viewport-height);
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

body::before {
  top: 0;
  height: max(1px, var(--safe-area-top));
  background-color: var(--color-chrome-top);
}

body::after {
  bottom: 0;
  height: max(1px, var(--safe-area-bottom));
  background-color: var(--color-chrome-bottom);
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }

  body {
    min-height: -webkit-fill-available;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ------------------------------------
    TYPOGRAPHY
------------------------------------ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-gradient {
  /* Gradient from Purple to lighter Purple/Pinkish for emphasis */
  background: linear-gradient(135deg, var(--color-primary), #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------
    BUTTONS
------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-glow);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-glow);
}

.btn-secondary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: var(--color-text-primary);
}

.btn-outline:hover {
  background-color: rgba(17, 24, 39, 0.03);
  border-color: rgba(17, 24, 39, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  padding: 0.75rem 0; /* Remove horizontal padding for ghost in this design */
}

.btn-ghost:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
  margin-top: 2px;
}

.btn-ghost:hover:after {
  width: 100%;
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ------------------------------------
    NAVIGATION (LIGHT GLASSMORPHISM)
------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: calc(1rem + var(--safe-area-top)) 0 1rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(252, 231, 243, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-smooth);
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.visible {
  transform: translateY(0);
  opacity: 1;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ec4899; /* A soft, visible purple */
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Magnetic Hover Underline */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 102; /* Above mobile menu */
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------
    MOBILE MENU
------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--viewport-height);
  padding: var(--safe-area-top) var(--safe-area-right) var(--safe-area-bottom) var(--safe-area-left);
  background: linear-gradient(180deg, var(--color-bg) 0%, #fff1f2 100%); /* Subtle purple fade */
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #ec4899; /* Brand purple */
}

.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ------------------------------------
    HERO SECTION
------------------------------------ */
main {
  padding-top: var(--navbar-offset); /* Space for navbar and iOS safe area */
}

.hero-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem; /* Extra bottom padding for ticker */
  min-height: calc(var(--viewport-height) - var(--navbar-offset));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  z-index: 10;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(236, 72, 153, 0.05); /* Soft purple tint */
  border: 1px solid rgba(236, 72, 153, 0.15);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent); /* Green dot */
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-glow);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.headline-brand {
  font-size: 1.35em;
  display: inline-block;
  margin-bottom: -0.2rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Metrics beneath buttons */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-primary);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
}

/* ------------------------------------
    HERO VISUAL (3D Element)
------------------------------------ */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.floating-food-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Rotation for subtle 3D feel */
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.glow-backdrop {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}

.floating-food {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Soft but deep shadow for light theme */
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
}

.floating-anim {
  animation: float 6s ease-in-out infinite;
}

/* ------------------------------------
    ANIMATIONS (Keyframes)
------------------------------------ */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* JavaScript Reveal Classes */
.hidden {
  opacity: 0;
  transform: translateY(30px);
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* ------------------------------------
    3D BUBBLE BACKGROUND (LIGHT THEME)
------------------------------------ */
.bg-scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--viewport-height);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* Heavy blur for soft colored ambient clouds */
  opacity: 0.6;
  animation: bubbleFloat 20s infinite ease-in-out alternate;
}

/* Soft, colorful gradients */
.bubble-1 {
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.15); /* Purple cloud */
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 600px;
  height: 600px;
  background: rgba(16, 185, 129, 0.08); /* Green cloud */
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.bubble-3 {
  width: 400px;
  height: 400px;
  background: rgba(244, 114, 182, 0.15); /* Lighter purple/pink */
  top: 40%;
  left: 60%;
  animation-delay: -10s;
  animation-duration: 22s;
}

.bubble-4 {
  width: 350px;
  height: 350px;
  background: rgba(52, 211, 153, 0.08); /* Lighter green */
  top: 20%;
  left: 20%;
  animation-delay: -2s;
  animation-duration: 18s;
}

@keyframes bubbleFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Subtle texture (optional noise for premium feel) */
.grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015; /* Extremely subtle on light background */
  pointer-events: none;
}

/* ------------------------------------
    ABOUT SECTION (OM OS)
------------------------------------ */
.about-section {
  padding: var(--space-2xl) 2rem var(--space-xl) 2rem;
  position: relative;
  background: transparent;
  z-index: 10;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-text-content {
  flex: 1;
  max-width: 500px;
}

.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.about-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-paragraph {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-visuals {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-visuals-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--color-primary);
  background: var(--color-surface);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-wrapper:hover img {
  transform: scale(1.03);
}

.img-tall {
  height: 420px;
}

.img-short {
  height: 200px;
}

/* Mobile Visual Element (Hidden on Desktop) */
.hero-visual-mobile {
  display: none;
}

/* ------------------------------------
    TICKER / MARQUEE
------------------------------------ */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--color-primary);
  padding: 0.85rem 0;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* When placed inside the hero — sit at the very bottom */
.ticker-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0 2rem;
}

.ticker-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------
    INTERACTIVE MENU SECTION
------------------------------------ */
.interactive-menu-section {
  padding: var(--space-xl) 2rem var(--space-xl) 2rem;
  position: relative;
  background: var(--color-bg);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-header {
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.menu-header-line {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 1rem;
}

.menu-header-text {
  max-width: 600px;
}

.menu-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.menu-header-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.menu-interactive-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

/* Left: Menu List */
.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.menu-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item:hover,
.menu-item.active {
  opacity: 1;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.menu-item:hover .menu-item-title,
.menu-item.active .menu-item-title {
  color: var(--color-primary);
}

.menu-arrow {
  width: 24px;
  height: 24px;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.menu-item.active .menu-arrow {
  opacity: 1;
  color: var(--color-primary);
  transform: translateX(0);
}

.menu-item-content {
  color: var(--color-text-secondary);
  line-height: 1.4;
  font-size: 0.9rem;
}

.menu-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
  background: #fdfcff;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(236, 72, 153, 0.15);
}

.price-box strong {
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
}

.menu-subprice {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
}

.menu-list-simple {
  list-style: none;
  margin-top: 0.8rem;
  padding: 0;
}

.menu-list-simple li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  color: var(--color-text-primary);
}

.menu-list-simple li:last-child {
  border-bottom: none;
}

.menu-list-simple li strong {
  color: var(--color-primary);
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.menu-tags .tag {
  background: rgba(236, 72, 153, 0.08);
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.mobile-menu-img {
  display: none;
  width: 100%;
  border-radius: 16px;
  margin-top: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Right: Menu Viewer Sticky */
.menu-viewer {
  position: relative;
  height: 100%;
}

.menu-viewer-sticky {
  position: sticky;
  top: calc(120px + var(--safe-area-top));
  width: 100%;
  aspect-ratio: 4 / 4.5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
  background: #fdfcff;
  border-left: 3px solid var(--color-primary); /* Thin purple edge */
}

.viewer-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.6s,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.05);
}

.viewer-img.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ------------------------------------
    RESPONSIVE DESIGN
------------------------------------ */
@media screen and (max-width: 992px) {
  /* Tighter spacing on mobile — half of the desktop 2xl */
  .about-section {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }

  .interactive-menu-section {
    padding-top: 1.5rem;
  }

  .menu-interactive-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-viewer {
    display: none;
  }

  .mobile-menu-img {
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .menu-item {
    opacity: 1;
    padding: 2rem 0;
  }

  .menu-item-title {
    color: var(--color-primary);
  }

  .menu-arrow {
    display: none;
  }

  .menu-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .menu-price-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .about-visuals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .about-visuals-col {
    flex-direction: row;
  }

  .img-tall {
    height: 300px;
  }

  .img-short {
    height: 200px;
    flex: 1;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.5rem 0 2.5rem 0;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links,
  .nav-actions .btn-outline,
  .btn-secondary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .nav-container {
    padding: 0 1rem;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-metrics {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .metric-divider {
    width: 1px;
    height: 30px;
  }

  .about-section {
    padding-bottom: 1rem;
  }

  .interactive-menu-section {
    padding-top: 1rem;
  }
}

/* ------------------------------------
    CTA CALL BANNER
------------------------------------ */
.cta-call-section {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.cta-call-container {
  background: linear-gradient(135deg, var(--color-primary) 0%, #db2777 100%);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.4);
}

.cta-call-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-call-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.cta-call-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.cta-call-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.cta-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-hover);
}

@media screen and (max-width: 992px) {
  .cta-call-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta-call-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------------------
    TESTIMONIALS SECTION
------------------------------------ */
.testimonials-section {
  padding: var(--space-2xl) 2rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(252, 231, 243, 0.35) 100%);
  text-align: center;
}

.testimonials-container {
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text-primary);
}

.testimonials-carousel {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  font-style: italic;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.author-name {
  display: block;
  font-size: 1rem;
  color: var(--color-text-primary);
  font-weight: 700;
}

.author-role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.1rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(236, 72, 153, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

.dot:hover {
  background: var(--color-primary);
  opacity: 0.7;
}

@media screen and (max-width: 992px) {
  .testimonials-section {
    padding: 5rem 2rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

/* ------------------------------------
    LOCATION SECTION
------------------------------------ */
.location-section {
  padding: var(--space-2xl) 2rem;
  background: var(--color-bg);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2rem;
  margin-top: 0.8rem;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.location-address svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-address strong {
  display: block;
  color: var(--color-text-primary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.location-address span {
  font-size: 0.95rem;
}

.hours-card {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-left: 3px solid var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hours-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  color: var(--color-text-secondary);
}

.hours-time {
  font-weight: 700;
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
}

.location-map {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  border-left: 3px solid var(--color-primary);
}

@media screen and (max-width: 992px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-section {
    padding: 4rem 1.5rem 3rem;
  }

  .location-map {
    height: 320px;
  }
}

.location-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-actions .btn {
  display: inline-flex;
  justify-content: center;
}

.btn-smiley {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

.btn-smiley:hover {
  background-color: #10b981 !important;
  color: white !important;
}

@media screen and (max-width: 576px) {
  .location-section {
    padding: 3.5rem 1rem 2rem;
  }

  .location-container {
    gap: 2rem;
  }

  .location-title {
    margin-bottom: 1.5rem;
  }

  .location-address {
    margin-bottom: 1.5rem;
  }

  .hours-card {
    padding: 1.25rem 1rem;
  }

  .hours-row {
    gap: 1rem;
  }

  .location-actions {
    margin-top: 1.25rem;
    gap: 0.75rem;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .location-actions .btn {
    width: 100%;
    flex: none;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    white-space: normal;
  }

  .location-actions .btn svg {
    width: 16px;
    height: 16px;
    margin-right: 4px !important;
  }

  .location-map {
    height: 260px;
  }
}

/* ------------------------------------
    MODAL (Indhold & Protein)
------------------------------------ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--viewport-height);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--safe-area-top) + 1rem) calc(var(--safe-area-right) + 1rem)
    calc(var(--safe-area-bottom) + 1rem) calc(var(--safe-area-left) + 1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  background: var(--color-surface);
  width: 100%;
  max-width: 600px;
  max-height: min(90vh, calc(var(--viewport-height) - 2rem));
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--color-primary); /* Thin purple edge */
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.show .modal-content-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05) rotate(90deg);
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.modal-scroll-area {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Custom Scrollbar for Modal */
.modal-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.modal-scroll-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}
.modal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(236, 72, 153, 0.2);
  border-radius: 10px;
}

.modal-section {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.modal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-section h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.modal-section p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.modal-list li:last-child {
  border-bottom: none;
}

.modal-list li span {
  color: var(--color-text-primary);
}

.modal-list li strong {
  color: var(--color-primary);
}

/* ------------------------------------
    FOOTER
------------------------------------ */
.site-footer {
  background: #831843;
  background: linear-gradient(135deg, #500724 0%, #9d174d 100%);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
}

.footer-top {
  padding: 4rem 2rem 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Image column */
.footer-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-pagensyn-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.5rem;
  width: 100%;
  max-width: 260px;
}

.footer-pagensyn {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-2px);
  border-color: white;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer-col .footer-heading ~ .footer-heading {
  margin-top: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: white;
}

.footer-hours {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.footer-hours li span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours li strong {
  color: white;
  font-variant-numeric: tabular-nums;
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-contact li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem;
}

.footer-bottom-inner {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: none !important;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  gap: 1rem;
}

.footer-totop {
  color: #f472b6;
  font-weight: 600;
  font-size: 0.85rem;
  transition:
    color 0.2s,
    transform 0.2s;
  display: inline-block;
}

.footer-totop:hover {
  color: white;
  transform: translateY(-2px);
}

@media screen and (max-width: 992px) {
  .footer-top {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Image spans full width and centers */
  .footer-img-col {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
  }

  .footer-pagensyn-wrap {
    max-width: 180px;
    margin: 0 auto;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center;
    gap: 0.4rem;
  }
}

@media screen and (max-width: 576px) {
  .footer-top {
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-pagensyn-wrap {
    max-width: 160px;
  }

  /* Center hours rows on small screens */
  .footer-hours li {
    justify-content: center;
    gap: 1rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }
}

/* ------------------------------------
    FLOATING BACK TO TOP
------------------------------------ */
.floating-totop {
  position: fixed;
  bottom: calc(30px + var(--safe-area-bottom));
  left: calc(30px + var(--safe-area-left));
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #db2777 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.floating-totop.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-totop:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.6);
  color: white;
}

@media screen and (max-width: 768px) {
  .floating-totop {
    bottom: calc(20px + var(--safe-area-bottom));
    left: calc(20px + var(--safe-area-left));
    width: 44px;
    height: 44px;
  }
}
