/* ============================================================
   MOONBAY • BOLD & STRIKING EDITORIAL RESTAURANT STYLES
   Inspired by contemporary high-fashion culinary design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Caveat:wght@600;700&display=swap');

:root {
  --brand-crimson: #9B3221;
  --brand-crimson-dark: #7D2415;
  --brand-crimson-light: #B83E2A;
  --brand-parchment: #FDF9F2;
  --brand-surface: #F8F2E6;
  --brand-charcoal: #181513;
  --brand-espresso: #27221F;
  --brand-teal: #0E8E9B;
  --brand-gold: #D99B26;
  --brand-cream: #FFF4E5;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--brand-charcoal);
  color: var(--brand-charcoal);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--brand-parchment);
}

.font-editorial {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-serif-display {
  font-family: 'DM Serif Display', Georgia, serif;
}

.font-script {
  font-family: 'Caveat', cursive, sans-serif;
}

/* ============================================================
   HERO ORGANIC WAVE & MEDIA CONTAINER
   ============================================================ */
.hero-media-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-media-wrapper video,
.hero-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-wrapper:hover img,
.hero-media-wrapper:hover video {
  transform: scale(1.03);
}

/* Organic curve mask for desktop */
@media (min-width: 1024px) {
  .hero-organic-mask {
    clip-path: url(#hero-curve-clip);
  }
}

/* Bottom hero action bar */
.hero-action-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-crimson-dark);
  background-color: var(--brand-cream);
  border-right: 1px solid rgba(191, 51, 37, 0.25);
  transition: all 0.25s ease;
}

.hero-action-tab:last-child {
  border-right: none;
}

.hero-action-tab:hover {
  background-color: #FFFFFF;
  color: var(--brand-crimson);
}

/* Dish cards with refined editorial feel */
.editorial-dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #FFFFFF;
  border: 1px solid rgba(39, 34, 31, 0.08);
}

.editorial-dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(24, 21, 19, 0.08);
  border-color: rgba(191, 51, 37, 0.3);
}

.editorial-dish-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Live Pulse Indicator */
@keyframes liveDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.live-dot {
  animation: liveDot 2s infinite ease-in-out;
}

/* Toast Notification */
#toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  transform: translateY(150%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
#toast-notification.show {
  transform: translateY(0);
}
