/**
 * Main Stylesheet for Malbi's Kitchen
 * Based on Tailwind CSS utility classes converted to standard CSS
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables (Theme) */
:root {
  /* Core palette */
  --background: #f9f9f9;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #1a1a1a;
  --primary-foreground: #ffffff;
  --secondary: #ffffff;
  --secondary-foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --accent: #937237;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #d9d9d9;
  --input: #ebebeb;
  --ring: #1a1a1a;
  --radius: 0.5rem;
  --gold: #937237;
  --ink: #1a1a1a;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  letter-spacing: 0.01em;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  font-weight: 600;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Typography */
.font-heading {
  font-family: 'Playfair Display', serif;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-900 {
  color: #111827;
}

.text-[#937237] {
  color: #937237;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-background {
  background-color: var(--background);
}

.bg-[#937237] {
  background-color: #937237;
}

.bg-[#7a5d2e] {
  background-color: #7a5d2e;
}

/* Spacing */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Padding */
.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Flexbox */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-1 {
  flex: 1 1 0%;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Grid */
.grid {
  display: grid;
}

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

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-0 {
  top: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-16 {
  height: 4rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-[500px] {
  height: 500px;
}

.h-[50vh] {
  height: 50vh;
}

.h-[60vh] {
  height: 60vh;
}

.h-screen {
  height: 100vh;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

/* Text */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.uppercase {
  text-transform: uppercase;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-[0.15em] {
  letter-spacing: 0.15em;
}

.tracking-[0.2em] {
  letter-spacing: 0.2em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

/* Borders */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
  border-color: var(--border);
}

.border-2 {
  border-width: 2px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-white {
  border-color: #ffffff;
}

.border-white/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white/50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.border-b {
  border-bottom-width: 1px;
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Background */
.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-black/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-black/60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-black/5 {
  background-color: rgba(0, 0, 0, 0.05);
}

.bg-white/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white/70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-white/80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white/90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-[#937237] {
  --tw-gradient-from: #937237;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 114, 55, 0));
}

.to-[#7a5d2e] {
  --tw-gradient-to: #7a5d2e;
}

.from-white/60 {
  --tw-gradient-from: rgba(255, 255, 255, 0.6);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.from-black\/60 {
  --tw-gradient-from: rgba(0, 0, 0, 0.6);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-black\/50 {
  --tw-gradient-stops: var(--tw-gradient-from, rgba(0, 0, 0, 0.6)), rgba(0, 0, 0, 0.5), var(--tw-gradient-to, rgba(0, 0, 0, 0.7));
}

.to-black\/70 {
  --tw-gradient-to: rgba(0, 0, 0, 0.7);
}

.from-black\/40 {
  --tw-gradient-from: rgba(0, 0, 0, 0.4);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.from-background {
  --tw-gradient-from: var(--background);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Opacity */
.opacity-10 {
  opacity: 0.1;
}

/* Backdrop */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Hover States */
.hover\:bg-\[#7a5d2e\]:hover {
  background-color: #7a5d2e;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:bg-white\/15:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hover\:bg-white\/20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hover\:text-white:hover {
  color: #ffffff;
}

.hover\:text-\[#937237\]:hover {
  color: #937237;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

/* Focus States */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--ring);
}

.focus\:ring-\[#937237\]:focus {
  box-shadow: 0 0 0 2px #937237;
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

/* Link Underline Effect */
.link-underline {
  position: relative;
  text-decoration: none;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
}

/* Remove default underline from links */
.no-underline {
  text-decoration: none;
}

header nav a {
  text-decoration: none;
}

/* Header Order Online Button - Ensure background is visible */
header a[href="services.html"]:not([data-nav-link]):not([data-sticky-nav-link]) {
  background-color: #937237 !important;
  border: none !important;
}

header a[href="services.html"]:not([data-nav-link]):not([data-sticky-nav-link]):hover {
  background-color: #7a5d2e !important;
}

/* Sticky Header - Order Online button with background */
[data-sticky-header] a[href="services.html"]:not([data-sticky-nav-link]) {
  background-color: #937237 !important;
  border: none !important;
}

[data-sticky-header] a[href="services.html"]:not([data-sticky-nav-link]):hover {
  background-color: #7a5d2e !important;
}

/* Sticky Header Styles - Initially Hidden */
[data-sticky-header] {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  display: none; /* Initially hidden - JavaScript will override this */
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 60; /* Higher than regular header */
  background-color: #ffffff !important; /* Solid white background */
  background: #ffffff !important; /* Force solid white */
  backdrop-filter: none !important; /* Remove backdrop blur for solid background */
  -webkit-backdrop-filter: none !important; /* Remove backdrop blur for Safari */
}

/* When sticky header is visible, ensure full opacity */
[data-sticky-header][style*="display: block"],
[data-sticky-header][style*="opacity: 1"] {
  opacity: 1 !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
}

/* When sticky header is shown, override display */
[data-sticky-header][style*="display: block"] {
  display: block !important;
}

/* Ensure text is visible on white background */
[data-sticky-header] nav a,
[data-sticky-header] nav a[data-sticky-nav-link],
[data-sticky-header] nav li a,
[data-sticky-header] button:not([style*="background-color"]) {
  color: #1b1b18 !important; /* Dark text color matching theme */
}

[data-sticky-header] nav a:hover,
[data-sticky-header] nav a[data-sticky-nav-link]:hover,
[data-sticky-header] nav li a:hover {
  color: #937237 !important; /* Gold on hover */
}

[data-sticky-header] svg:not([class*="text-white"]):not([style*="color"]) {
  color: #1b1b18 !important; /* Dark text color matching theme for icons */
}

[data-sticky-header] button svg:not([class*="text-white"]) {
  color: #1b1b18 !important; /* Dark text color matching theme for button icons */
}

/* Override any backdrop-blur classes that might be applied */
[data-sticky-header].backdrop-blur-sm,
[data-sticky-header].backdrop-blur-md,
[data-sticky-header][class*="backdrop-blur"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

[data-main-header] {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background-color 0.3s ease-in-out, background 0.3s ease-in-out;
  z-index: 50;
  backdrop-filter: none !important; /* Remove blur effect */
  -webkit-backdrop-filter: none !important; /* Remove blur effect for Safari */
}

/* When main header is sticky (scrolled) */
[data-main-header].is-sticky {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

[data-main-header].is-sticky nav a,
[data-main-header].is-sticky nav a[data-nav-link],
[data-main-header].is-sticky button:not([style*="background-color"]) {
  color: #1b1b18 !important;
}

[data-main-header].is-sticky svg:not([class*="text-white"]):not([style*="color"]) {
  color: #1b1b18 !important;
}

/* Override any backdrop-blur classes on main header */
[data-main-header].backdrop-blur-sm,
[data-main-header].backdrop-blur-md,
[data-main-header][class*="backdrop-blur"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.h-20 {
  height: 5rem;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

/* Remove list bullets from navigation */
header nav ul,
header nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Space */
.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

/* Aspect Ratio */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Last Child */
.last\:border-b-0:last-child {
  border-bottom-width: 0;
}

/* Text Colors with Opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white\/95 {
  color: rgba(255, 255, 255, 0.95);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

/* Width Utilities */
.w-2 {
  width: 0.5rem;
}

.w-8 {
  width: 2rem;
}

.w-20 {
  width: 5rem;
}

.w-32 {
  width: 8rem;
}

/* Height Utilities */
.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

/* Filter */
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.brightness-0 {
  --tw-brightness: brightness(0);
}

.invert {
  --tw-invert: invert(1);
}

/* Blur */
.blur-2xl {
  filter: blur(40px);
}

.blur-3xl {
  filter: blur(64px);
}

/* Supports */
@supports (backdrop-filter: blur(4px)) {
  .supports-\[backdrop-filter\]\:backdrop-blur-sm {
    backdrop-filter: blur(4px);
  }
}

@supports (backdrop-filter: blur(12px)) {
  .supports-\[backdrop-filter\]\:backdrop-blur-md {
    backdrop-filter: blur(12px);
  }
}

/* Hero Section Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Additional Utility Classes */
.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-light {
  font-weight: 300;
}

.drop-shadow-2xl {
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-\[#937237\]\/50 {
  box-shadow: 0 25px 50px -12px rgba(147, 114, 55, 0.5);
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.border-2 {
  border-width: 2px;
}

.border-white\/50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.border-white {
  border-color: #ffffff;
}

.border-\[#937237\] {
  border-color: #937237;
}

.border-\[#7a5d2e\] {
  border-color: #7a5d2e;
}

.pointer-events-none {
  pointer-events: none;
}

/* Hero Slider Styles */
#hero-section {
  background-color: #000;
  z-index: 1;
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  visibility: visible; /* Changed from hidden to visible for crossfade */
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Ensure overlays stay visible during transition to prevent black screen */
.hero-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
  pointer-events: none;
}

/* Smooth crossfade - both slides visible during transition */
.hero-slide {
  will-change: opacity;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-dot {
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
  background-color: #937237;
  border-color: #937237;
  transform: scale(1.2);
}

.hero-content {
  will-change: transform;
}

/* Enhanced Animations - Removed conflicting animations */
/* Zoom and parallax are now handled via JavaScript for better control */

/* Text Decoration Utilities */
.underline {
  text-decoration: underline;
}

.decoration-white {
  text-decoration-color: #ffffff;
}

.decoration-1 {
  text-decoration-thickness: 1px;
}

.underline-offset-4 {
  text-underline-offset: 0.25rem;
}

/* AOS Animation States */
.aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero Main Heading Styling - Matching Reference Website */
.hero-main-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.98); /* Whitish color */
  font-weight: 400; /* Lighter weight for elegant look */
  letter-spacing: 0.05em;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(250, 250, 250, 0.98) 50%,
    rgba(245, 245, 245, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Heading Border Lines with Fading Ends */
.hero-heading-border {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, 
    transparent 0%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 85%,
    transparent 100%);
  margin: 0 auto;
}

.hero-heading-border-top {
  margin-bottom: 1rem;
}

.hero-heading-border-bottom {
  margin-top: 1rem;
}

/* Responsive adjustments for heading */
@media (max-width: 768px) {
  .hero-main-heading {
    font-size: 2.25rem !important; /* 36px */
    letter-spacing: 0.03em;
  }
  
  .hero-heading-border {
    max-width: 350px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-main-heading {
    font-size: 3.75rem !important; /* 60px */
  }
  
  .hero-heading-border {
    max-width: 480px;
  }
}

@media (min-width: 1025px) {
  .hero-main-heading {
    font-size: 4.6875rem !important; /* 75px */
  }
  
  .hero-heading-border {
    max-width: 580px;
  }
}

/* Hero Order Online Button - Top and Bottom Borders Only */
.hero-order-button {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid transparent !important;
  border-bottom: 1px solid transparent !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0.75rem 1.5rem !important;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-order-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, 
    transparent 0%,
    rgba(147, 114, 55, 0.5) 20%,
    rgba(147, 114, 55, 0.8) 50%,
    rgba(147, 114, 55, 0.5) 80%,
    transparent 100%);
}

.hero-order-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, 
    transparent 0%,
    rgba(147, 114, 55, 0.5) 20%,
    rgba(147, 114, 55, 0.8) 50%,
    rgba(147, 114, 55, 0.5) 80%,
    transparent 100%);
}

.hero-order-button:hover {
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.9;
}

/* Discover More Button - Our Story Section */
.discover-more-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #937237;
  background: transparent;
  border: 1px solid #937237;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.discover-more-btn:hover {
  background-color: #937237;
  color: #ffffff;
  border-color: #937237;
}

/* Image Shift Up for Desktop - Our Story Section */
@media (min-width: 1024px) {
  .image-shift-up {
    margin-top: -30px !important;
  }
}

/* Order Online Section - Menu Item Cards */
.menu-item-card {
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-8px);
}

.menu-item-card .relative {
  position: relative;
  width: 100%;
  height: 420px;
  flex-shrink: 0;
}

.menu-item-card .relative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-card .absolute {
  position: absolute;
}

.menu-add-btn {
  cursor: pointer;
  border: none;
  outline: none;
}

.menu-add-btn:active {
  transform: scale(0.95);
}

/* Order Form Section */
.order-form-card {
  margin-right: 70px !important;
  margin-left: 20px !important;
}

@media (min-width: 1024px) {
  .order-form-card {
    margin-right: 70px !important;
    margin-left: 20px !important;
  }
}

.order-tab {
  cursor: pointer;
  border: none;
  outline: none;
}

.order-tab.active {
  background-color: #937237 !important;
  color: white !important;
}

.order-tab:not(.active) {
  background-color: #e5e7eb !important;
  color: #4b5563 !important;
}

.order-tab:hover:not(.active) {
  background-color: #d1d5db !important;
}

/* Chef's Specialties Dotted Line */
.chef-specialties-dotted-line {
  display: block !important;
  flex-grow: 1;
  height: 0 !important;
  border-top: 1px dotted #937237 !important;
  margin: 0 12px !important;
  min-width: 50px !important;
  max-width: none !important;
  width: auto !important;
  align-self: flex-end !important;
  margin-bottom: 0.3em !important;
}

/* Address Badge Styling - Matching Reference Website (malbikitchen.clasmentor.in) */
.address-badge {
  /* Background: Light white/light gray with subtle gradient - more transparent */
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.05) 75%,
    rgba(255, 255, 255, 0.02) 100%);
  background-color: rgba(255, 255, 255, 0.05);
  
  /* Border: White border - very thin */
  border: 0.15px solid rgba(255, 255, 255, 0.9);
  
  /* Shadows: Subtle shadow for depth */
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  
  /* Backdrop blur for glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Typography: Sans-serif font (Poppins), medium weight, uppercase */
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.625rem; /* 10px */
  font-weight: 500; /* font-medium */
  letter-spacing: 0.2em; /* tracking-[0.2em] */
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  
  /* Layout */
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1.25rem; /* py-2 px-5 */
  border-radius: 9999px; /* rounded-full */
  color: #ffffff;
  line-height: 1.25rem;
}

/* Top highlight gradient for subtle 3D effect */
.address-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  pointer-events: none;
  border-radius: 9999px 9999px 0 0;
}

/* Testimonials Carousel Styles */
.testimonials-carousel {
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex;
  will-change: transform;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .testimonial-slide {
    width: 33.333%;
  }
  
  .testimonials-track {
    display: flex;
    gap: 1rem;
  }
}

.testimonial-nav-btn {
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover svg {
  color: #ffffff !important;
}

.testimonial-indicator {
  position: absolute;
  transition: transform 0.3s ease;
  z-index: 1;
}

.testimonial-dot {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  background-color: #d1d5db;
  width: 8px;
  height: 8px;
}

.testimonial-dot.active {
  background-color: #937237;
}

@media (max-width: 768px) {
  .testimonial-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .testimonial-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

