/* ============================================
   DAY ONE CAFE - LUXURY WEBSITE STYLES
   Color: Soft white + Charcoal + Teal & Gold
   Typography: Montserrat
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EFEB;
  --text: #2C2C2C;
  --text-secondary: #6B6B6B;
  --teal: #3AAFA9;
  --teal-dark: #2E8B85;
  --gold: #E8A838;
  --gold-dark: #D4952E;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --font: 'Montserrat', sans-serif;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  position: relative;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 168, 56, 0.3);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 175, 169, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  transition: opacity 0.6s ease 0.1s;
  pointer-events: all;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#preloader-logo {
  position: fixed;
  z-index: 10000;
  width: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#preloader-logo.visible {
  opacity: 1;
}

#preloader-logo.to-nav {
  transition: all 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

#preloader-logo.hidden {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#navbar.scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

#navbar.scrolled .nav-link {
  color: var(--text);
}

#navbar.scrolled .nav-cta {
  background: var(--teal);
  color: var(--white);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 45px;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease, filter 0.4s ease;
}

body.intro-complete .nav-logo img {
  opacity: 1;
}

/* White logo on sub-page dark heroes */
.hero-sub-page .nav-logo img {
  filter: brightness(0) invert(1);
}

#navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 2px solid var(--teal);
  color: var(--teal);
  transition: all var(--transition);
}

#navbar.scrolled .nav-cta {
  border-color: var(--teal);
}

.nav-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   HERO SECTION - Split Layout
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--bg);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem 4rem;
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.hero-content .label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 2.8s;
}

.hero-content h1 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 3s;
}

.hero-content .hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 3.2s;
}

.hero-content .btn {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 3.4s;
}

/* Hero image slideshow */
.hero-images {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-images img.active {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 21%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards, bounce 2s ease-in-out infinite;
  animation-delay: 3.6s, 4.4s;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
}

/* --- Sub-page hero (Menu, Events) --- */
.hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.hero-sub .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-sub .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-sub .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
  justify-content: center;
  align-items: center;
}

.hero-sub .hero-content .label,
.hero-sub .hero-content h1,
.hero-sub .hero-content .hero-subtitle {
  animation-delay: 0.3s;
}

.hero-sub .hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  animation-delay: 0.5s;
}

.hero-sub .hero-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  animation-delay: 0.7s;
}

.hero-sub .hero-content .label {
  color: var(--gold);
}

/* Sub-page nav: transparent over dark hero, white text */
.page-sub #navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-sub .nav-link {
  color: var(--white);
}

.page-sub .nav-cta {
  border-color: var(--white);
  color: var(--white);
}

.page-sub .hamburger span {
  background: var(--white);
}

.page-sub .nav-logo img {
  filter: brightness(0) invert(1);
}

.page-sub #navbar.scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.page-sub #navbar.scrolled .nav-link {
  color: var(--text);
}

.page-sub #navbar.scrolled .nav-cta {
  border-color: var(--teal);
  color: var(--teal);
}

.page-sub #navbar.scrolled .hamburger span {
  background: var(--text);
}

.page-sub #navbar.scrolled .nav-logo img {
  filter: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 8rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ============================================
   MENU HIGHLIGHTS
   ============================================ */
.menu-highlights {
  padding: 8rem 0;
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 500px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.highlight-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.highlight-card-img {
  height: 280px;
  overflow: hidden;
}

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

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

.highlight-card-body {
  padding: 1.8rem;
}

.highlight-card-body h4 {
  margin-bottom: 0.5rem;
}

.highlight-card-body p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.highlight-card-body .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   EVENTS SLIDER SECTION (Full-width blocks)
   ============================================ */
.events-section {
  background: var(--dark);
  overflow: hidden;
}

.events-section-header {
  text-align: center;
  padding: 6rem 2rem 0;
}

.events-section-header .label {
  color: var(--teal);
}

.events-section-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.events-section-header p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* Slider */
.events-slider {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
}

.events-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.event-slide:nth-child(even) .event-slide-img {
  order: 2;
}

.event-slide:nth-child(even) .event-slide-content {
  order: 1;
}

.event-slide-img {
  height: 520px;
  overflow: hidden;
}

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

.event-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  background: var(--dark);
}

.event-slide-content .event-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.event-slide-content h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.event-slide-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 450px;
}

.event-slide-content .btn {
  align-self: flex-start;
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 0 4rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.events-cta {
  text-align: center;
  padding-bottom: 5rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: 8rem 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.8rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  transition: background 0.4s ease;
}

.gallery-item:hover::after {
  background: rgba(26, 26, 26, 0.15);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  padding: 8rem 0;
  background: var(--bg-alt);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

.location-info h2 {
  margin-bottom: 2rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-detail svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.location-detail p {
  font-size: 1rem;
  color: var(--text);
}

.location-detail p span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.location-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.location-buttons .btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

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

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-page-content {
  padding: 4rem 0 8rem;
  background: var(--bg);
}

/* Sticky category nav */
.menu-category-nav {
  position: sticky;
  top: var(--nav-height);
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  margin-bottom: 3rem;
}

.menu-category-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-category-nav-inner::-webkit-scrollbar {
  display: none;
}

.menu-cat-link {
  flex-shrink: 0;
  padding: 1.1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.menu-cat-link:hover,
.menu-cat-link.active {
  color: var(--text);
  border-bottom-color: var(--gold);
}

/* Menu sections */
.menu-section {
  margin-bottom: 5rem;
  scroll-margin-top: calc(var(--nav-height) + 60px);
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  white-space: nowrap;
}

.menu-section-header .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* Featured dish */
.featured-dish {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.featured-dish-img {
  height: 320px;
  overflow: hidden;
}

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

.featured-dish-info .label {
  color: var(--teal);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

.featured-dish-info h3 {
  margin-bottom: 0.8rem;
}

.featured-dish-info p {
  margin-bottom: 1rem;
}

.featured-dish-info .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* Menu items list */
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 4rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.veg-indicator {
  width: 14px;
  height: 14px;
  border: 1.5px solid #0a8f0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veg-indicator::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a8f0a;
}

.nonveg-indicator {
  width: 14px;
  height: 14px;
  border: 1.5px solid #b30000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nonveg-indicator::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b30000;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.menu-item-price {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  font-size: 0.95rem;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-page-content {
  padding: 5rem 0 8rem;
  background: var(--bg);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.event-page-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.event-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.event-page-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.event-date-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-page-card-body {
  padding: 2rem;
}

.event-page-card-body h3 {
  margin-bottom: 0.5rem;
}

.event-page-card-body .event-time {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
}

.event-page-card-body p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.event-page-card-body .btn {
  font-size: 0.75rem;
  padding: 0.7rem 1.8rem;
}

/* Host Your Event */
.host-event {
  padding: 8rem 0;
  background: var(--dark);
}

.host-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.host-event-img {
  height: 450px;
  overflow: hidden;
}

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

.host-event-text .label {
  color: var(--teal);
}

.host-event-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.host-event-text p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.host-event-features {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.host-event-features li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.host-event-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .location-grid,
  .featured-dish,
  .host-event-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 400px;
  }

  .about-image::after {
    display: none;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px 250px;
  }

  .event-slide {
    grid-template-columns: 1fr;
  }

  .event-slide-img {
    height: 350px;
  }

  .event-slide-content {
    padding: 3rem;
  }

  .event-slide:nth-child(even) .event-slide-img {
    order: 0;
  }

  .event-slide:nth-child(even) .event-slide-content {
    order: 0;
  }

  .events-grid {
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .hero-content {
    padding: 8rem 2rem 3rem;
    max-width: 100%;
    justify-content: center;
  }

  .hero-images {
    height: 50vh;
    min-height: 300px;
  }

  .scroll-indicator {
    display: none;
  }

  .about,
  .menu-highlights,
  .events-section,
  .gallery,
  .location {
    padding: 5rem 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
    grid-column: span 1;
    height: 200px;
  }

  .event-slide-img {
    height: 280px;
  }

  .event-slide-content {
    padding: 2.5rem 1.5rem;
  }

  .event-slide-content h3 {
    font-size: 1.5rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .event-card {
    flex: 0 0 290px;
  }

  .location-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .featured-dish-img {
    height: 250px;
  }

  .host-event-img {
    height: 300px;
  }

  .host-event-features {
    grid-template-columns: 1fr;
  }

  .menu-cat-link {
    padding: 1rem 1.2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h1 { font-size: 2.2rem; }

  .hero-content .label {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}
