/* RESTORAN ORIJENT - LUXURY WARM IVORY DESIGN SYSTEM (NO CARDS ON MENU, HIGH TEXT CONTRAST) */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display+SC:wght@600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Color Palette Specs */
  --bg-primary: #F0EBE0;         /* Primary background: cream/ivory */
  --bg-secondary: #F0EBE0;       /* Unified background for seamless section flow */
  --bg-card: #FFFFFF;            /* Pure white card container background */
  
  /* Accent Gradient & Warm Gold / Tan (#B8945E to #E8DCC4) */
  --gold-primary: #B8945E;
  --gold-dark: #8A6021;          /* Deep rich gold for high contrast on light backgrounds */
  --gold-light: #E8DCC4;
  --gold-gradient: linear-gradient(135deg, #B8945E 0%, #E8DCC4 100%);
  --gold-glow: rgba(184, 148, 94, 0.3);

  /* Warm Crimson Accent */
  --red-accent: #9E2A2B;
  --red-light: #B83234;
  --red-dark: #701C1D;
  --red-glow: rgba(158, 42, 43, 0.3);

  /* Typography Colors */
  --text-main: #1A1A1A;          /* Text primary: soft black */
  --text-muted: #2A241C;         /* High readability charcoal for body copy */
  --text-dark: #756C60;          /* Soft brown-gray for secondary text */

  /* Decorative Line Elements & Borders */
  --border-gold: rgba(201, 173, 126, 0.3);
  --border-gold-strong: rgba(201, 173, 126, 0.55);
  --border-red: rgba(158, 42, 43, 0.35);
  --line-decorative: rgba(201, 173, 126, 0.2);

  /* Rich Visible Shadows */
  --shadow-card-soft: 0 16px 40px rgba(35, 25, 15, 0.1), 0 4px 12px rgba(184, 148, 94, 0.12);
  --shadow-card-hover: 0 24px 55px rgba(35, 25, 15, 0.16), 0 8px 25px rgba(184, 148, 94, 0.22);
  --shadow-badge: 0 14px 35px rgba(35, 25, 15, 0.12), 0 4px 14px rgba(184, 148, 94, 0.15);

  /* Typography Fonts Specs */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sc: 'Playfair Display SC', Georgia, serif;
  --font-accent: 'Poppins', -apple-system, sans-serif;
  --font-body: 'Lora', Georgia, serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* GPU Hardware Acceleration */
.hero-section,
.btn,
.navbar,
.luxury-review-card,
.clean-food-img,
.google-reviews-badge,
.hours-item,
.modal-card,
.reveal-section,
.reveal-left,
.reveal-right {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* Section Smooth Scroll Offset */
section {
  scroll-margin-top: 80px;
}

/* LUXURY CREAM SCROLLBAR */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #D8CDBA;
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B8945E;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY UTILITIES */
.serif-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* High Contrast Solid Gold Title Accents (Matching Hero ORIJENT #D4AF37) */
.gold-gradient-text,
.cream-gold-gradient-text,
.red-gradient-text {
  color: #D4AF37;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(35, 25, 15, 0.25), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Eyebrow labels / small caps: Playfair Display SC, wide letter-spacing (0.15-0.2em), uppercase */
.section-label {
  display: inline-block;
  font-family: var(--font-sc);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8A6021; /* High-contrast deep warm bronze */
  margin-bottom: 0.75rem;
  position: relative;
}

/* Display Headings: Playfair Display (Bold/Black weight) */
.section-title-clean {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

/* Taglines / Casual Accents: Poppins Medium, rounded sans, lowercase */
.accent-tagline {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #E8DCC4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* Decorative line elements: #C9AD7E at 15-25% opacity */
.decorative-line {
  width: 100%;
  height: 1px;
  background: var(--line-decorative);
  margin: 2rem 0;
}

/* ELEGANT BUTTONS WITH ENHANCED SHADOWS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-red {
  background: linear-gradient(135deg, #B83234 0%, #9E2A2B 50%, #701C1D 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 25px var(--red-glow), 0 3px 10px rgba(35, 25, 15, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(158, 42, 43, 0.45), 0 6px 15px rgba(35, 25, 15, 0.2);
  background: linear-gradient(135deg, #C83B3D 0%, #B83234 50%, #9E2A2B 100%);
}

/* Accent Gradient Button: #B8945E to #E8DCC4 */
.btn-gold {
  background: var(--gold-gradient);
  color: #1A1A1A;
  box-shadow: 0 8px 22px var(--gold-glow), 0 3px 10px rgba(35, 25, 15, 0.12);
  border: 1px solid rgba(201, 173, 126, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 148, 94, 0.4), 0 6px 16px rgba(35, 25, 15, 0.15);
}

.btn-outline {
  background: rgba(18, 16, 12, 0.6);
  color: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.btn-google-review {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1.5px solid var(--border-gold-strong);
  backdrop-filter: blur(12px);
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 30px rgba(35, 25, 15, 0.1), 0 4px 12px rgba(184, 148, 94, 0.12);
}

.btn-google-review:hover {
  background: #4285F4;
  color: #FFFFFF;
  border-color: #4285F4;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(66, 133, 244, 0.35);
}

/* NAVBAR - HIGH CONTRAST IN BOTH TRANSPARENT & SCROLLED STATES */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(240, 235, 224, 0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-decorative);
  box-shadow: 0 12px 35px rgba(35, 25, 15, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.navbar.scrolled .nav-logo-img {
  filter: drop-shadow(0 2px 8px rgba(35, 25, 15, 0.1));
}

.nav-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 54px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.3rem;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(35, 25, 15, 0.1));
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

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

.nav-link {
  color: #F7F5F0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-family: var(--font-accent);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.2rem 0;
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  color: #F7F5F0;
  font-family: var(--font-accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  background: rgba(18, 16, 12, 0.65);
  backdrop-filter: blur(10px);
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-phone {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border-gold);
  box-shadow: 0 6px 18px rgba(35, 25, 15, 0.08);
}

.nav-phone:hover {
  color: #D4AF37;
  border-color: #D4AF37;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.25);
}

/* MODERN FROSTED GLASS BURGER BUTTON */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 16, 12, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: center;
}

.navbar.scrolled .mobile-menu-btn {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border-gold-strong);
  box-shadow: 0 6px 18px rgba(35, 25, 15, 0.1);
}

.mobile-menu-btn:hover,
.mobile-menu-btn.active {
  transform: scale(1.06);
  border-color: #D4AF37;
  color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

/* HERO SECTION - RICH VIBRANT ORIGINAL DARK IMAGE VISIBILITY */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background: url('../images/hero.webp') no-repeat center center / cover, url('../images/hero.jpg') no-repeat center center / cover;
  overflow: hidden;
}

/* Rich Dark Vignette Overlay for Crisp Readability & Seamless Bottom Fade */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(15, 12, 9, 0.74) 0%, 
    rgba(15, 12, 9, 0.52) 42%, 
    rgba(15, 12, 9, 0.72) 75%, 
    #F0EBE0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: #FFFFFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title .gold-gradient-text {
  color: #D4AF37;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-hours-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-gold-strong);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 1.2rem 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 45px rgba(20, 15, 10, 0.22), 0 6px 18px rgba(184, 148, 94, 0.18);
  transition: var(--transition-smooth);
}

.hero-hours-bar:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 55px rgba(20, 15, 10, 0.28), 0 8px 25px rgba(184, 148, 94, 0.28);
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hours-day {
  font-family: var(--font-sc);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  font-weight: 700;
}

.hours-time {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
}

/* ABOUT SECTION - SEAMLESS FLOW FROM HERO */
.about-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 6.5rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text-content {
  position: relative;
  z-index: 2;
}

.about-description {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ENHANCED GOOGLE REVIEWS BADGE WITH RICH VISIBLE SHADOWS */
.google-reviews-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-badge);
  backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.google-reviews-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 48px rgba(35, 25, 15, 0.18), 0 6px 20px rgba(184, 148, 94, 0.25);
}

.google-g-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #4285F4;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(35, 25, 15, 0.12);
}

.score-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.score-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stars-icon {
  color: #E5A93C;
  font-size: 1.1rem;
}

.review-count {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-top: 0.3rem;
}

.review-highlight-quote {
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-main);
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

/* CLEAN ADAPTED MAP IMAGE */
.map-borderless-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.map-borderless-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: invert(0.92) hue-rotate(185deg) contrast(1.18) brightness(0.98) drop-shadow(0 15px 30px rgba(35, 25, 15, 0.1));
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

.map-borderless-img:hover {
  transform: scale(1.02);
  filter: invert(0.92) hue-rotate(185deg) contrast(1.25) brightness(1.0) drop-shadow(0 20px 40px rgba(35, 25, 15, 0.15));
}

/* OUR MENU SECTION - DIRECT IMAGE VISIBILITY WITH OPAQUE LEFT TEXT BACKDROP */
.our-menu-inspo-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 6.5rem 0;
  overflow: hidden;
}

.menu-bg-right-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../images/image.jpg') no-repeat center right / cover;
  filter: brightness(0.95) contrast(1.05);
  z-index: 1;
}

/* Smooth Gradient Overlay: Opaque #F0EBE0 over Left Text Area, Revealing image.jpg on Right */
.menu-bg-right-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, 
    rgba(240, 235, 224, 0.15) 0%, 
    rgba(240, 235, 224, 0.65) 30%, 
    #F0EBE0 55%, 
    #F0EBE0 100%),
    linear-gradient(to bottom,
    #F0EBE0 0%,
    transparent 20%,
    transparent 80%,
    #F0EBE0 100%);
  z-index: 2;
}

.inspo-grid-reverted {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.food-plate-clean {
  position: relative;
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-food-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 20px 40px rgba(35, 25, 15, 0.18)) drop-shadow(0 0 20px rgba(184, 148, 94, 0.25));
  transition: var(--transition-smooth);
}

.clean-food-img:hover {
  transform: scale(1.03);
}

/* BOLD & CRISP HIGH-CONTRAST MENU TEXT (NO CARDS) */
.inspo-right-text {
  position: relative;
  z-index: 3;
  padding-left: 1rem;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.inspo-right-text .section-title-clean .gold-gradient-text {
  color: #D4AF37;
  text-shadow: 0 3px 12px rgba(35, 25, 15, 0.35), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.inspo-desc {
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 540px;
  text-shadow: 0 1px 3px rgba(240, 235, 224, 0.9);
}

.inspo-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   DESSERTS & CAKES SECTION (TORTE PO NARUDŽBI - COMPACT & EFFECTIVE)
   ========================================================================== */
.desserts-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* FLOATING DESSERT ACCENT IMAGES SPREAD AROUND CENTRAL CARD (HIGH RES & LARGER) */
.floating-dessert {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.dessert-float-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(35, 25, 15, 0.28));
  image-rendering: -webkit-optimize-contrast;
}

/* Position 1: Top-Left (Panacotta / Berry Cup) */
.float-pos-1 {
  top: -60px;
  left: -340px;
  width: 330px;
  animation: floatSlow1 7.5s ease-in-out infinite;
}

/* Position 2: Top-Right (Chocolate Cake on stand) */
.float-pos-2 {
  top: -50px;
  right: -310px;
  width: 315px;
  animation: floatSlow2 8.5s ease-in-out 1s infinite alternate;
}

/* Position 3: Bottom-Left (Pistachio Cake on stand) */
.float-pos-3 {
  bottom: -40px;
  left: -340px;
  width: 370px;
  animation: floatSlow3 8s ease-in-out 2s infinite alternate;
}

/* Position 4: Bottom-Right (Bueno Cake) */
.float-pos-4 {
  bottom: -40px;
  right: -340px;
  width: 360px;
  animation: floatSlow1 9s ease-in-out 1.5s infinite;
}

@keyframes floatSlow1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatSlow2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-2.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatSlow3 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.desserts-showcase-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.desserts-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 3;
}

.desserts-lead-desc {
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 660px;
  margin: 0.8rem auto 0 auto;
}

.dessert-luxury-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border-gold-strong);
  border-radius: 28px;
  padding: 3.2rem 2.8rem 2.5rem 2.8rem;
  box-shadow: 0 30px 70px rgba(35, 25, 15, 0.16), 0 8px 25px rgba(184, 148, 94, 0.2);
  backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

.dessert-card-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}

.dessert-luxury-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px dashed rgba(184, 148, 94, 0.35);
  padding-bottom: 1rem;
}

.dessert-luxury-item.featured-baklava {
  grid-column: 1 / -1;
  background: #FAF7F2;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  margin-top: 0.4rem;
}

.dessert-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.dessert-name {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
}

.dessert-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.dessert-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #8A6021;
  white-space: nowrap;
}

.dessert-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gold);
  flex-wrap: wrap;
}

/* ==========================================================================
   COMPACT HIGH-CONTRAST SOCIAL MEDIA STRIP (BETWEEN DESSERTS & REVIEWS)
   ========================================================================== */
.social-strip-section {
  padding: 1.2rem 0 2rem 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 3;
}

.social-strip-bar {
  background: #FFFFFF;
  border: 1px solid rgba(184, 148, 94, 0.55);
  border-radius: 18px;
  padding: 1.3rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: 0 16px 40px rgba(35, 25, 15, 0.12), 0 4px 14px rgba(184, 148, 94, 0.16);
}

.social-strip-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-strip-tag {
  font-family: var(--font-sc);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8A6021;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
}

.social-strip-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111111;
  margin: 0;
  line-height: 1.2;
}

.social-strip-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid rgba(30, 30, 30, 0.16);
  box-shadow: 0 4px 14px rgba(35, 25, 15, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  -webkit-tap-highlight-color: transparent;
}

.social-btn-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.social-btn-icon-wrap.insta-icon {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  box-shadow: 0 6px 16px rgba(221, 42, 123, 0.38);
}

.social-btn-icon-wrap.fb-icon {
  background: #1877F2;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.38);
}

.social-btn-text {
  display: flex;
  flex-direction: column;
}

.social-btn-platform {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  font-family: var(--font-accent);
}

.social-btn-handle {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.social-btn-arrow {
  font-size: 1.1rem;
  color: #888888;
  transition: var(--transition-smooth);
  margin-left: 0.25rem;
}

.social-strip-btn:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  border-color: #111111;
  box-shadow: 0 10px 25px rgba(35, 25, 15, 0.15), 0 2px 8px rgba(184, 148, 94, 0.2);
}

.social-strip-btn:hover .social-btn-arrow {
  color: #111111;
  transform: translate(2px, -2px);
}

.social-strip-btn:hover .social-btn-icon-wrap {
  transform: scale(1.08);
}

.social-strip-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(35, 25, 15, 0.08);
}

/* REVIEWS SECTION - SEAMLESS CONTINUATION */
.reviews-section {
  padding: 4.5rem 0 6.5rem 0;
  background: var(--bg-primary);
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
  position: relative;
  z-index: 2;
}

/* ULTRA-CLEAN MODERN DESKTOP REVIEWS GRID */
.reviews-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1rem;
}

.reviews-slider-viewport {
  width: 100%;
  overflow: visible;
}

.reviews-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  width: 100%;
}

/* On Desktop: Show top 3 featured cards cleanly */
.reviews-slider-track .luxury-review-card:nth-child(n+4) {
  display: none;
}

.rev-slider-btn {
  display: none;
}

/* ENHANCED LUXURY REVIEW CARDS WITH RICH VISIBLE SHADOWS & HOVER ANIMATION */
.luxury-review-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  border-radius: 24px;
  padding: 2.6rem 2.2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  width: 100%;
  box-shadow: var(--shadow-card-soft);
  overflow: hidden;
}

/* Accent gradient line #B8945E to #E8DCC4 */
.luxury-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.luxury-review-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 24px 55px rgba(35, 25, 15, 0.14), 0 8px 24px rgba(184, 148, 94, 0.2);
}

.card-author-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.author-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #1A1A1A;
  box-shadow: 0 8px 20px rgba(184, 148, 94, 0.25);
  flex-shrink: 0;
}

.author-details h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.author-details p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.card-stars-row {
  color: #E5A93C;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.25rem;
}

.card-quote-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.leave-review-container {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* ONLINE RESERVATION SECTION - SEAMLESS TOP & BOTTOM TRANSITIONS */
.reservation-section {
  padding: 6.5rem 0;
  background: url('../images/hero.webp') no-repeat center center / cover, url('../images/hero.jpg') no-repeat center center / cover;
  position: relative;
}

.reservation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    #F0EBE0 0%, 
    rgba(10, 9, 7, 0.75) 25%, 
    rgba(10, 9, 7, 0.75) 75%, 
    #F0EBE0 100%);
  backdrop-filter: blur(10px);
}

.reservation-box-wide {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-gold-strong);
  border-radius: 24px;
  padding: 2.8rem 3rem;
  box-shadow: 0 30px 70px rgba(35, 25, 15, 0.16), 0 10px 30px rgba(184, 148, 94, 0.15);
  transition: var(--transition-smooth);
}

.reservation-form-wide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-sc);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  background: #F0EBE0;
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(184, 148, 94, 0.3), 0 4px 12px rgba(35, 25, 15, 0.06);
}

.form-textarea {
  resize: vertical;
  min-height: 70px;
  width: 100%;
  box-sizing: border-box;
}

/* MODAL OVERLAY & CARD */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 550px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(20, 15, 10, 0.3), 0 10px 30px rgba(184, 148, 94, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 15;
}

.modal-close-btn:hover {
  color: var(--red-light);
}

/* SIMPLE FULL-SIZE MENU SCROLL MODAL STYLES */
.simple-menu-modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  max-width: 820px;
  width: 95%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(20, 15, 10, 0.35), 0 10px 30px rgba(184, 148, 94, 0.25);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .simple-menu-modal-card {
  transform: translateY(0);
}

.simple-menu-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.simple-menu-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-main);
}

.simple-menu-scroll-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 0.5rem;
  scroll-behavior: smooth;
}

.simple-menu-scroll-list::-webkit-scrollbar {
  width: 8px;
}
.simple-menu-scroll-list::-webkit-scrollbar-track {
  background: #F0EBE0;
  border-radius: 4px;
}
.simple-menu-scroll-list::-webkit-scrollbar-thumb {
  background: #B8945E;
  border-radius: 4px;
}

.simple-menu-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(35, 25, 15, 0.12);
}

/* MINIMALIST FOOTER - SEAMLESS FLOW */
.clean-footer {
  background: var(--bg-primary);
  padding: 4rem 0 2rem 0;
}

.footer-top-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand-clean {
  display: flex;
  flex-direction: column;
}

.footer-sub {
  font-family: var(--font-sc);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-top: 4px;
}

.clean-footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.clean-footer-nav a {
  color: var(--text-muted);
  font-family: var(--font-accent);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.clean-footer-nav a:hover {
  color: var(--gold-primary);
}

.clean-footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(35, 25, 15, 0.08);
}

.footer-phone-pill:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: #1A1A1A;
  box-shadow: 0 10px 25px rgba(184, 148, 94, 0.25);
}

/* Decorative Line Element at 15-25% opacity */
.footer-divider {
  height: 1px;
  background: var(--line-decorative);
  margin-bottom: 2rem;
}

.footer-bottom-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.footer-designer {
  color: var(--text-dark);
  font-family: var(--font-accent);
  font-size: 0.85rem;
}

.designer-link {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  border-bottom: 1px dashed var(--gold-primary);
  padding-bottom: 1px;
}

.privacy-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  border-bottom: 1px dashed var(--gold-primary);
  padding-bottom: 1px;
}

.privacy-link:hover {
  color: var(--red-light);
  border-bottom-color: var(--red-light);
}

/* PRIVACY POLICY MODAL STYLES */
.privacy-modal-card {
  max-width: 660px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.4rem 2rem;
}

.privacy-content-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.privacy-block {
  background: #FAF7F2;
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 1.1rem 1.35rem;
}

.privacy-block h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-block p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ELEGANT & REFINED SECTION SCROLL REVEALS */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.22s; }
.stagger-3 { transition-delay: 0.34s; }

/* RESPONSIVE DESIGN - STRICTLY SCOPED FOR MOBILE & TABLET (PC VIEW 100% UNTOUCHED) */
@media (max-width: 992px) {
  /* ULTRA-CLEAN MODERN FLOATING MOBILE NAV DRAWER */
  .nav-links {
    position: fixed;
    top: 80px;
    right: 1.25rem;
    left: auto;
    width: calc(100% - 2.5rem);
    max-width: 380px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-gold-strong);
    border-radius: 24px;
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    gap: 0.6rem;
    box-shadow: 0 25px 60px rgba(20, 15, 10, 0.22), 0 8px 25px rgba(184, 148, 94, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.96);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    z-index: 1001;
  }

  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links .nav-link {
    color: var(--text-main) !important;
    text-shadow: none !important;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    background: #F0EBE0;
    color: var(--gold-dark) !important;
  }

  .mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
  }

  .mobile-cta-item {
    display: block;
    margin-top: 0.4rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line-decorative);
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Grid Layout Adjustments for Mobile */
  .about-grid, .inspo-grid-reverted {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .inspo-right-text {
    order: -1;
    padding-left: 0;
  }

  .menu-bg-right-image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 55%;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 78%, transparent 100%);
  }

  .menu-bg-right-overlay {
    background: linear-gradient(to bottom, 
      #F0EBE0 0%, 
      #F0EBE0 38%, 
      transparent 60%, 
      rgba(240, 235, 224, 0.6) 80%, 
      rgba(240, 235, 224, 0.95) 94%, 
      #F0EBE0 100%);
  }

  .food-plate-clean {
    margin: 1.5rem auto 0 auto;
    position: relative;
    z-index: 4;
  }

  .footer-top-clean {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
  }

  .footer-brand-clean {
    align-items: center;
    text-align: center;
  }

  .clean-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }

  .clean-footer-contact {
    justify-content: center;
  }

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

  .footer-address {
    justify-content: center;
    text-align: center;
  }

  /* Mobile/Tablet Reviews Horizontal Scroll Slider */
  .reviews-slider-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.25rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-slider-viewport::-webkit-scrollbar {
    display: none;
  }

  .reviews-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
  }

  .reviews-slider-track .luxury-review-card:nth-child(n+4) {
    display: flex;
  }

  .luxury-review-card {
    width: 320px;
    min-height: 270px;
    padding: 2rem 1.6rem;
    flex-shrink: 0;
  }

@media (max-width: 1400px) {
  .float-pos-1 { left: -220px; width: 280px; top: -45px; }
  .float-pos-2 { right: -210px; width: 270px; top: -40px; }
  .float-pos-3 { left: -220px; width: 310px; bottom: -30px; }
  .float-pos-4 { right: -220px; width: 300px; bottom: -30px; }
}

@media (max-width: 1100px) {
  .float-pos-1 { left: -110px; width: 200px; top: -30px; opacity: 0.85; }
  .float-pos-2 { right: -100px; width: 195px; top: -25px; opacity: 0.85; }
  .float-pos-3 { left: -115px; width: 220px; bottom: -20px; opacity: 0.85; }
  .float-pos-4 { right: -115px; width: 210px; bottom: -20px; opacity: 0.85; }
}

@media (max-width: 992px) {
  .dessert-card-inner-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dessert-luxury-card {
    padding: 2.2rem 1.6rem;
  }

  .social-strip-bar {
    flex-direction: column;
    text-align: center;
    padding: 1.3rem 1.6rem;
    gap: 1.1rem;
  }

  .social-strip-left {
    align-items: center;
  }

  .social-strip-buttons {
    width: 100%;
    justify-content: center;
  }

  .float-pos-1 { left: -45px; width: 135px; top: -20px; opacity: 0.75; }
  .float-pos-2 { right: -45px; width: 155px; top: -20px; opacity: 0.75; }
  .float-pos-3 { left: -45px; width: 145px; bottom: -15px; opacity: 0.75; }
  .float-pos-4 { right: -45px; width: 145px; bottom: -15px; opacity: 0.75; }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 1.5rem 0.5rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }

  .accent-tagline {
    font-size: 0.76rem;
    margin-bottom: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-hours-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 1.2rem 1rem;
    gap: 1rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .reservation-section {
    padding: 4.5rem 0;
  }

  .reservation-box-wide {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(20, 15, 10, 0.22);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .reservation-form-wide-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.1rem;
    margin-top: 1.5rem;
    box-sizing: border-box;
  }

  .form-group {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
    padding: 0.9rem 1.1rem;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .google-reviews-badge {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.1rem 1.25rem;
    max-width: 320px;
    margin: 0 auto 2rem auto;
    border-radius: 18px;
    gap: 0.75rem;
  }

  .google-reviews-badge .google-g-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .google-reviews-badge .score-num {
    font-size: 1.45rem;
  }

  .google-reviews-badge .score-stars {
    justify-content: center;
  }

  .google-reviews-badge .stars-icon {
    font-size: 0.95rem;
  }

  .google-reviews-badge .review-count {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .luxury-review-card {
    width: 285px;
    padding: 1.8rem 1.4rem;
  }

  .rev-slider-btn {
    display: none;
  }

  .simple-menu-modal-card {
    padding: 1.5rem 1rem;
    width: 96%;
  }

  .desserts-section {
    padding: 3.5rem 0 4.5rem 0;
    overflow: hidden;
  }

  .desserts-showcase-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .floating-dessert {
    display: block !important;
    z-index: 4;
    pointer-events: none;
  }

  .dessert-float-img {
    filter: drop-shadow(0 10px 20px rgba(35, 25, 15, 0.28));
  }

  /* Remove awkward top gold stripe on mobile */
  .dessert-luxury-card::before {
    display: none;
  }

  /* Corner 1: Top-Left corner (smaller and lower) */
  .float-pos-1 {
    top: -95px;
    left: -22px;
    width: 125px;
    opacity: 1;
    animation: none;
    transform: rotate(-10deg);
  }

  /* Corner 2: Top-Right corner above card shoulder */
  .float-pos-2 {
    top: -75px;
    right: -26px;
    width: 150px;
    opacity: 1;
    animation: none;
    transform: rotate(10deg);
  }

  /* Corner 3: Bottom-Left corner (lower and bigger) */
  .float-pos-3 {
    bottom: -45px;
    left: -36px;
    width: 205px;
    opacity: 1;
    animation: none;
    transform: rotate(-6deg);
  }

  /* Corner 4: Bottom-Right corner below card */
  .float-pos-4 {
    bottom: -55px;
    right: -25px;
    width: 140px;
    opacity: 1;
    animation: none;
    transform: rotate(6deg);
  }

  .dessert-luxury-card {
    position: relative;
    padding: 2.8rem 1.4rem 2.4rem 1.4rem;
    border-radius: 24px;
    width: 100%;
    margin-top: 1.8rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    overflow: visible;
  }

  .dessert-card-inner-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    width: 100%;
    box-sizing: border-box;
  }

  .dessert-luxury-item {
    padding-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .dessert-name {
    font-size: 0.95rem;
  }

  .dessert-price {
    font-size: 1.05rem;
  }

  .dessert-desc {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .dessert-luxury-item.featured-baklava {
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    margin-top: 0.2rem;
  }

  .dessert-card-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    box-sizing: border-box;
  }

  .dessert-card-cta .btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.92rem;
  }

  .social-strip-section {
    padding: 0.6rem 0 1.4rem 0;
  }

  .social-strip-bar {
    padding: 1.15rem 1.05rem;
    border-radius: 16px;
    gap: 0.85rem;
    box-shadow: 0 12px 32px rgba(35, 25, 15, 0.12), 0 3px 10px rgba(184, 148, 94, 0.14);
  }

  .social-strip-heading {
    font-size: 1.15rem;
  }

  .social-strip-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }

  .social-strip-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.95rem;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(35, 25, 15, 0.08);
  }

  .social-btn-text {
    text-align: left;
    flex: 1;
  }

  .social-btn-arrow {
    margin-left: auto;
  }
}

/* Anti-Bot Invisible Trap Helper */
.anti-spam-honey-wrapper {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
