/* ================================================================
   CHATHU COFFEE — Premium Stylesheet (Multi-Page)
   ================================================================ */

/* ---------- Custom Properties ----------------------------------- */
:root {
  --espresso-950: #1a0f0a;
  --espresso-900: #2c1810;
  --espresso-800: #3e2723;
  --espresso-700: #4e342e;
  --espresso-600: #5d4037;
  --espresso-500: #6d4c41;
  --espresso-400: #8d6e63;
  --espresso-100: #d7ccc8;
  --espresso-50: #efeae6;
  --latte-500: #c7a17a;
  --latte-400: #d4b896;
  --latte-300: #e0cdb2;
  --latte-200: #ece1ce;
  --latte-100: #f3ebe0;
  --cream-100: #f5f0eb;
  --cream-200: #ede4d9;
  --cream-300: #d5c9bc;
  --cream-400: #b8a99a;
  --cream-500: #9a8c7f;
}

/* ---------- Preloader ------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--espresso-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 2rem;
}
.preloader-logo span { color: var(--latte-500); }
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(245,240,235,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--latte-500);
  border-radius: 2px;
  animation: preloaderFill 1.5s ease-in-out forwards;
}
@keyframes preloaderFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ---------- Preloader Coffee Cup --------------------------------- */
.preloader-cup {
  position: relative;
  width: 60px;
  height: 50px;
  margin-bottom: 1.5rem;
}
.preloader-cup-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 36px;
  background: var(--espresso-800);
  border-radius: 0 0 8px 8px;
  border: 2px solid var(--latte-500);
  border-top: none;
  overflow: hidden;
}
.preloader-cup-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, var(--latte-500), var(--latte-400));
  border-radius: 0 0 6px 6px;
  animation: cupFill 1.8s ease-in-out forwards;
}
@keyframes cupFill {
  0% { height: 0; }
  60% { height: 85%; }
  100% { height: 75%; }
}
.preloader-cup-handle {
  position: absolute;
  bottom: 6px;
  right: -16px;
  width: 18px;
  height: 20px;
  border: 2.5px solid var(--latte-500);
  border-left: none;
  border-radius: 0 12px 12px 0;
}
.preloader-cup-rim {
  position: absolute;
  top: 12px;
  left: -3px;
  width: 54px;
  height: 5px;
  background: var(--latte-500);
  border-radius: 4px;
}
.preloader-steam {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.preloader-steam span {
  display: block;
  width: 3px;
  height: 12px;
  background: rgba(199,161,122,0.4);
  border-radius: 3px;
  animation: steamRise 2s ease-out infinite;
}
.preloader-steam span:nth-child(1) { animation-delay: 0s; height: 14px; }
.preloader-steam span:nth-child(2) { animation-delay: 0.6s; height: 10px; }
.preloader-steam span:nth-child(3) { animation-delay: 1.2s; height: 12px; }
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-12px) scaleX(1.5); opacity: 0.4; }
  100% { transform: translateY(-24px) scaleX(2); opacity: 0; }
}
.preloader-tagline {
  font-size: 0.75rem;
  color: var(--latte-400);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  opacity: 0.6;
  animation: fadePulse 2s ease-in-out infinite;
}
@keyframes fadePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ---------- Custom Cursor --------------------------------------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--latte-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--latte-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
.cursor-dot.hover {
  width: 16px;
  height: 16px;
  background: var(--latte-400);
}
.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--latte-400);
  opacity: 0.3;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Magnetic Button ------------------------------------- */
.magnetic-btn {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Text Reveal ----------------------------------------- */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}
.text-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* ---------- Image Reveal ---------------------------------------- */
.img-reveal {
  overflow: hidden;
  position: relative;
}
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--latte-500);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.img-reveal.visible::after {
  transform: scaleX(0);
}
.img-reveal img {
  transform: scale(1.3);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-reveal.visible img {
  transform: scale(1);
}

/* ---------- Floating Animation ---------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ---------- Shimmer Effect -------------------------------------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(199,161,122,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ---------- Gradient Text --------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, var(--latte-500) 0%, var(--latte-300) 50%, var(--latte-500) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---------- Pulse Ring ------------------------------------------ */
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--latte-500);
  animation: pulseRing 2s ease-out infinite;
}

/* ---------- Tilt Card ------------------------------------------- */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card .tilt-inner {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

/* ---------- Scroll Progress ------------------------------------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--latte-500), var(--latte-300));
  z-index: 9998;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* ---------- Base ----------------------------------------- */
::selection { background: rgba(199,161,122,0.4); color: #2c1810; }

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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--latte-500); border-radius: 3px; }
.dark ::-webkit-scrollbar-thumb { background: var(--latte-400); }

/* ---------- Navigation ------------------------------------------ */
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-100);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--latte-500);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* On sub-pages (data-page != home), nav starts with scrolled look */
body:not([data-page="home"]) #navbar { background: rgba(245,240,235,0.92); backdrop-filter: blur(20px); }
.dark body:not([data-page="home"]) #navbar { background: rgba(26,15,10,0.92); backdrop-filter: blur(20px); }
body:not([data-page="home"]) .nav-link { color: var(--espresso-900); }
.dark body:not([data-page="home"]) .nav-link { color: var(--cream-100); }

/* Home page scrolled state — nav links must turn dark */
#navbar.scrolled .nav-link { color: var(--espresso-900) !important; }
.dark #navbar.scrolled .nav-link { color: var(--cream-100) !important; }
#navbar.scrolled .nav-link::after { background: var(--latte-500); }

/* Home page initial state — logo & nav links light over dark hero */
body[data-page="home"] #navbar:not(.scrolled) .nav-link { color: var(--cream-100) !important; }
body[data-page="home"] #navbar:not(.scrolled) .font-heading { color: var(--cream-100) !important; }
body[data-page="home"] #navbar:not(.scrolled) .font-heading .text-latte-500 { color: var(--latte-500) !important; }

/* Logo text on scrolled navbar */
#navbar.scrolled .font-heading { color: var(--espresso-900) !important; }
.dark #navbar.scrolled .font-heading { color: var(--cream-100) !important; }

#navbar.scrolled {
  background: rgba(245,240,235,0.92) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 30px rgba(44,24,16,0.08) !important;
}
.dark #navbar.scrolled {
  background: rgba(26,15,10,0.92) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 30px rgba(0,0,0,0.3) !important;
}

/* ---------- Page Hero / Banner ---------------------------------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero .page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,15,10,0.85) 0%, rgba(44,24,16,0.7) 100%);
}
.page-hero .page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--cream-100);
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero .page-breadcrumb {
  color: var(--latte-400);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
.page-hero .page-breadcrumb a { color: rgba(245,240,235,0.6); }
.page-hero .page-breadcrumb span { color: var(--latte-400); }

/* ---------- Hero Slider ----------------------------------------- */
.hero-slide { will-change: transform, opacity; }
.hero-dot.active {
  width: 48px;
  background: var(--latte-500);
  box-shadow: 0 0 20px rgba(199,161,122,0.4);
}

/* ---------- Mobile Menu ----------------------------------------- */
#mobileMenu.open {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
  z-index: 999 !important;
}

/* ---------- FAB / Back to Top ----------------------------------- */
#whatsappFab {
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
#backToTop.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Reveal Animations (visible by default, GSAP enhances) - */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-left { opacity: 1; transform: translateX(0); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-right { opacity: 1; transform: translateX(0); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }

/* ---------- Timeline -------------------------------------------- */
.step-dot {
  box-shadow: 0 0 0 4px var(--cream-50), 0 0 0 6px var(--latte-500);
  transition: box-shadow 0.3s ease;
}
.dark .step-dot { box-shadow: 0 0 0 4px #1a0f0a, 0 0 0 6px var(--latte-400); }

/* ---------- Coffee / Blog Cards --------------------------------- */
.coffee-card, .blog-card {
  position: relative;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.coffee-card::before, .blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--latte-500) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.coffee-card:hover::before, .blog-card:hover::before {
  opacity: 1;
}

/* ---------- Button Ripple --------------------------------------- */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- Counter --------------------------------------------- */
.counter { font-variant-numeric: tabular-nums; }

/* ---------- Glassmorphism --------------------------------------- */
.glass {
  background: rgba(245,240,235,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,240,235,0.1);
}
.dark .glass { background: rgba(26,15,10,0.15); border-color: rgba(255,255,255,0.05); }

/* ---------- Focus / Accessibility ------------------------------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--latte-500);
  outline-offset: 2px;
  border-radius: 999px;
}

/* ---------- Lazy Images ----------------------------------------- */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; background: linear-gradient(135deg, var(--espresso-100) 0%, var(--latte-200) 100%); min-height: 200px; }
.dark img[loading="lazy"] { background: linear-gradient(135deg, var(--espresso-800) 0%, var(--espresso-700) 100%); }
img[loading="lazy"].loaded { opacity: 1; }
img[loading="lazy"].error { opacity: 0.3; }

/* ---------- Separator (islandcoffee style) ---------------------- */
.separator {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--latte-500);
  margin: 1rem auto;
}

/* ---------- Feature Cards (islandcoffee style) ------------------ */
.feature-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(44,24,16,0.06);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199,161,122,0.05), transparent);
  transition: left 0.6s ease;
}
.feature-card:hover::before {
  left: 100%;
}
.dark .feature-card { background: var(--espresso-900); }
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(199,161,122,0.15);
}
.feature-card .icon-wrapper {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(199,161,122,0.2);
}

/* ---------- Product Filter Buttons ------------------------------ */
.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--latte-500);
  color: var(--espresso-900);
  cursor: pointer;
}
.dark .filter-btn { color: var(--cream-100); }
.filter-btn:hover, .filter-btn.active {
  background: var(--latte-500);
  color: var(--espresso-950);
}

/* Ensure filter items are visible by default */
.filter-item { display: block; }

/* ---------- Stats Section islandcoffee style -------------------- */
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--latte-500);
}
.dark .stat-number { color: var(--latte-400); }
.stat-label {
  color: var(--cream-100);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ---------- Blog Sidebar ---------------------------------------- */
.blog-sidebar-widget {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.dark .blog-sidebar-widget { background: var(--espresso-800); }

/* ---------- Contact Form ---------------------------------------- */
.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--espresso-100);
  background: white;
  color: var(--espresso-900);
  transition: all 0.3s ease;
}
.dark .form-input {
  background: var(--espresso-800);
  border-color: var(--espresso-700);
  color: var(--cream-100);
}
.form-input:focus {
  outline: none;
  border-color: var(--latte-500);
  box-shadow: 0 0 0 3px rgba(199,161,122,0.2);
}
.form-input::placeholder { color: var(--espresso-400); }
.dark .form-input::placeholder { color: var(--cream-500); }

/* ---------- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  .hero-dot { width: 32px; height: 4px; }
  .hero-dot.active { width: 40px; }
  .page-hero { height: 40vh; min-height: 300px; }
  .preloader-logo { font-size: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
  #preloader { display: none; }
}

/* ---------- Additional Animations ------------------------------- */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

.animate-slide-up { animation: slideUp 0.8s ease forwards; }
.animate-slide-down { animation: slideDown 0.8s ease forwards; }
.animate-slide-left { animation: slideLeft 0.8s ease forwards; }
.animate-slide-right { animation: slideRight 0.8s ease forwards; }
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-scale-in { animation: scaleIn 0.6s ease forwards; }
.animate-rotate-in { animation: rotateIn 0.8s ease forwards; }

/* Stagger delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ---------- Hero Fallback Background ---------------------------- */
.hero-slide .hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--espresso-950) 0%, var(--espresso-900) 50%, var(--espresso-800) 100%);
}

/* ---------- Navbar Logo Animation ------------------------------- */
.navbar-logo-icon {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar-logo-icon:hover {
  transform: rotate(15deg) scale(1.1);
}

/* ---------- Smooth Link Underline -------------------------------- */
.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Section Divider ------------------------------------- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--latte-500), var(--latte-300));
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* ---------- Glow Effect ----------------------------------------- */
.glow-latte {
  box-shadow: 0 0 20px rgba(199,161,122,0.3), 0 0 40px rgba(199,161,122,0.1);
}
.glow-latte:hover {
  box-shadow: 0 0 30px rgba(199,161,122,0.4), 0 0 60px rgba(199,161,122,0.2);
}

/* ---------- Card Image Zoom ------------------------------------- */
.card-img-zoom {
  overflow: hidden;
}
.card-img-zoom img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-img-zoom:hover img {
  transform: scale(1.08);
}

/* ---------- Number Counter Style -------------------------------- */
.counter-value {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* ---------- Parallax Image Container ---------------------------- */
.parallax-img-container {
  overflow: hidden;
}
.parallax-img-container img {
  will-change: transform;
}

/* ================================================================
   CORRETTO ROBUSTA STYLE OVERRIDES
   ================================================================ */

.font-heading, .font-marcellus {
  font-family: 'Marcellus', Georgia, serif !important;
}

body {
  font-family: 'Open Sans', sans-serif !important;
}

/* Custom Outlined Button with Dash Underline */
.btn-outline-dash {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 18px 44px;
  border: 1px solid currentColor;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 0.4s ease;
  background: transparent;
}
.btn-outline-dash:hover {
  background-color: var(--latte-500) !important;
  border-color: var(--latte-500) !important;
  color: var(--espresso-950) !important;
}

@media (max-width: 768px) {
  .btn-outline-dash {
    font-size: 10px;
    padding: 8px 20px;
  }
}

/* Title Separators */
.title-separator-img {
  display: block;
  margin: 15px auto;
  max-width: 189px;
  height: auto;
}

/* Ken Burns Zoom Effect */
.kenburns-zoom {
  animation: kbZoom 12s ease-in-out infinite alternate;
}
@keyframes kbZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.02); }
}

/* Thin Slide Navigation */
.slider-nav-line {
  width: 45px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.slider-nav-btn:hover .slider-nav-line {
  background-color: var(--latte-500);
  width: 60px;
}

/* Showcase Section */
.showcase-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1.1fr 1.3fr 1.1fr;
  }
}
.showcase-item {
  display: flex;
  margin-bottom: 2.5rem;
}
.showcase-item-left {
  text-align: right;
  flex-direction: row-reverse;
}
.showcase-item-right {
  text-align: left;
  flex-direction: row;
}
.showcase-icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.showcase-item:hover .showcase-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Menu Items List */
.menu-item-card {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
}
.menu-item-img {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-item-body {
  flex-grow: 1;
  padding-left: 1.25rem;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.menu-item-line {
  flex-grow: 1;
  border-bottom: 1px dotted var(--latte-500);
  margin: 0 15px 5px 15px;
}
.menu-item-title {
  font-family: 'Marcellus', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso-900);
  transition: color 0.3s ease;
}
.dark .menu-item-title {
  color: var(--cream-100);
}
.menu-item-card:hover .menu-item-title {
  color: var(--latte-500);
}
.menu-item-price {
  font-family: 'Marcellus', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso-900);
}
.dark .menu-item-price {
  color: var(--cream-100);
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--espresso-500);
  margin-top: 2px;
}
.dark .menu-item-desc {
  color: var(--cream-400);
}

/* Booking & Working Hours Form Elements */
.booking-form-input {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 12px 0;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.booking-form-input:focus {
  outline: none;
  border-color: var(--latte-500);
}
.booking-form-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.working-hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  font-size: 0.95rem;
}
.working-hours-row:last-child {
  border-bottom: none;
}

