/* 
  Lira Café & Bar - Custom Luxury Stylesheet (Eden Courtyard Theme)
  Design Concept: Eden Courtyard Inspired Layout, Adapted to Lira's Visual Identity
  Color Palette: Terracotta, Soft Peach, Ivory, Sand, Warm Beige, Charcoal, Subtle Gold
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-terracotta: #C9A84C;
  --color-terracotta-hover: #E5C369;
  --color-peach: #121212;
  --color-peach-dark: #1A1A1A;
  --color-ivory: #0A0A0A;
  --color-sand: #1C1C1C;
  --color-beige: #C9A84C;
  --color-charcoal: #FAF9F6;
  --color-charcoal-light: #C4C2BC;
  --color-gold: #C9A84C;
  --color-gold-light: #E5C369;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Custom Cursor --- */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  display: none;
}
.custom-cursor-follower {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  display: none;
}
@media (min-width: 1025px) {
  body {
    cursor: none;
  }
  a, button, select, input, textarea, .menu-lightbox-btn, .gallery-card-page, .swiper-button-next, .swiper-button-prev, .whatsapp-sticky {
    cursor: none;
  }
  .custom-cursor, .custom-cursor-follower {
    display: block;
  }
}

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

html.lenis, html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

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

body {
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--color-beige);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracotta);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-charcoal);
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, .italic-highlight {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--color-gold);
}

p {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--color-charcoal-light);
}

.text-gold {
  color: var(--color-gold);
}

.text-terracotta {
  color: var(--color-terracotta);
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.centered {
  text-align: center;
}

/* --- Section Title Box (Eden Courtyard Style) --- */
.title-box {
  margin-bottom: 50px;
  text-align: center;
}

.title-box .subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.title-box h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.title-box h3 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

.title-box h3 .theme_color {
  color: var(--color-terracotta);
  font-weight: 500;
}

.pattern-image {
  margin: 10px auto 20px auto;
  display: flex;
  justify-content: center;
}

.pattern-image svg {
  width: 80px;
  height: auto;
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .title-box h2 {
    font-size: 2.5rem;
  }
  .title-box h3 {
    font-size: 1.6rem;
  }
}

/* --- Buttons (Eden Courtyard Style) --- */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid var(--color-terracotta);
  background-color: var(--color-terracotta);
  color: var(--color-ivory);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-charcoal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-ivory);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
}

.theme-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-style-two {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn-style-two::before {
  background-color: var(--color-terracotta);
}

.btn-style-two:hover {
  border-color: var(--color-terracotta);
}

.btn-style-three {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ivory);
}

.btn-style-three::before {
  background-color: var(--color-charcoal);
}

.btn-style-three:hover {
  border-color: var(--color-charcoal);
}

/* --- Floating Sticky WhatsApp Button --- */
.whatsapp-sticky {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background-color: #25D366;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.whatsapp-sticky:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* --- Loader Wrap --- */
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-peach);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-wrap.fade-out {
  opacity: 0;
  visibility: hidden;
}

.inner-loader {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  object-fit: cover;
  position: absolute;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
  animation: pulse-logo 2s infinite ease-in-out;
}

.spinner {
  position: absolute;
  width: 124px;
  height: 124px;
  border: 2px solid rgba(201, 168, 76, 0.1);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  z-index: 1;
  margin-top: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* --- Main Header Navigation --- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-top {
  border-bottom: 1px solid rgba(223, 217, 206, 0.15);
  background-color: rgba(30, 30, 30, 0.2);
}

.header-top .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.top-info {
  list-style: none;
  display: flex;
  gap: 25px;
}

.top-info li {
  font-size: 13px;
  color: rgba(250, 249, 246, 0.85);
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info li i {
  color: var(--color-gold);
}

.top-info li a {
  color: rgba(250, 249, 246, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.top-info li a:hover {
  color: var(--color-terracotta);
}

.header-upper {
  background-color: transparent;
  transition: var(--transition-smooth);
}

.main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* Elegant Logo Styling */
.logo-box .logo img,
.header-logo img,
.footer-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
  background-color: var(--color-peach);
  padding: 2px;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.logo-box .logo img:hover,
.header-logo img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
  border-color: var(--color-terracotta);
}

.nav-box {
  display: flex;
  align-items: center;
}

.main-menu .navigation {
  list-style: none;
  display: flex;
  gap: 35px;
}

.main-menu .navigation a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: var(--transition-smooth);
  position: relative;
  padding: 10px 0;
}

.main-menu .navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-smooth);
}

.main-menu .navigation li.current a,
.main-menu .navigation a:hover {
  color: var(--color-terracotta);
}

.main-menu .navigation a:hover::after {
  width: 100%;
}

/* Scrolled Header State */
.main-header.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--color-ivory);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--color-beige);
}

.main-header.scrolled .header-top {
  display: none;
}

.main-header.scrolled .main-box {
  padding: 12px 0;
}

.main-header.scrolled .main-menu .navigation a {
  color: var(--color-charcoal);
}

.main-header.scrolled .logo-box .logo img {
  height: 50px;
  width: 50px;
}

/* Mobile Toggler */
.nav-toggler {
  display: none;
}

.hidden-bar-opener {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 25px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.main-header.scrolled .hamburger span {
  background-color: var(--color-charcoal);
}

@media (max-width: 1024px) {
  .header-top {
    display: none;
  }
  .nav-box, .link-btn {
    display: none;
  }
  .nav-toggler {
    display: block;
  }
  .logo-box {
    order: 1;
  }
}

/* --- Mobile Side Menu --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--color-peach);
  z-index: 10001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-charcoal);
  cursor: pointer;
  margin-bottom: 40px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.mobile-nav-links a:hover {
  color: var(--color-terracotta);
}

/* --- Banner Section (Swiper & Video) --- */
.banner-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-ivory);
}

.video-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.banner-section .container {
  position: relative;
  z-index: 3;
}

/* Subpage Banners */
.subpage-banner {
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  background-color: var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-banner .image-layer {
  filter: brightness(0.3) contrast(1.02);
}

.subpage-banner .content-box {
  padding-top: 100px;
}

.subpage-banner h1 {
  font-size: 4.5rem;
}

@media (max-width: 768px) {
  .subpage-banner {
    height: 45vh;
  }
  .subpage-banner h1 {
    font-size: 2.8rem;
  }
}

.banner-slider {
  width: 100%;
  height: 100%;
}

.slide-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.05);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.swiper-slide-active .image-layer {
  transform: scale(1.08);
}

.content-box {
  position: relative;
  z-index: 2;
  color: var(--color-ivory);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.content-box .subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.content-box h1 {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.content-box h1 span {
  display: block;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.content-box .text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(250, 249, 246, 0.85);
  margin-bottom: 45px;
  line-height: 1.6;
}

.banner-section .swiper-button-prev,
.banner-section .swiper-button-next {
  color: var(--color-ivory);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(250, 249, 246, 0.2);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.banner-section .swiper-button-prev:after,
.banner-section .swiper-button-next:after {
  font-size: 20px;
}

.banner-section .swiper-button-prev:hover,
.banner-section .swiper-button-next:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

@media (max-width: 768px) {
  .content-box h1 {
    font-size: 3rem;
  }
  .content-box .text {
    font-size: 1rem;
  }
  .banner-section .swiper-button-prev,
  .banner-section .swiper-button-next {
    display: none;
  }
}

/* --- About Section (3 Columns) --- */
.about-section {
  position: relative;
  background-color: var(--color-ivory);
  overflow: hidden;
}

.left-bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.03;
  pointer-events: none;
}

.right-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.03;
  pointer-events: none;
}

.about-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-block .text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-block .author {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-terracotta);
}

.about-block .image img {
  width: 100%;
  height: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.about-block .info {
  list-style: none;
  border: 1px solid var(--color-beige);
  padding: 40px 30px;
  background-color: var(--color-peach);
}

.about-block .info li {
  margin-bottom: 25px;
}

.about-block .info li:last-child {
  margin-bottom: 0;
}

.about-block .info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-terracotta);
}

.about-block .info span,
.about-block .info a {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  text-decoration: none;
}

.about-block .info a:hover {
  color: var(--color-terracotta);
}

.about-block .info .separator {
  list-style: none;
  height: 1px;
  background-color: var(--color-sand);
  margin: 20px 0;
}

@media (max-width: 1024px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- Fluid Sections (Eden Courtyard Alternating Layout) --- */
.fluid-section {
  position: relative;
  background-color: var(--color-peach);
  overflow: hidden;
}

.fluid-section.alternate {
  background-color: var(--color-ivory);
}

.fluid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.fluid-section.alternate .fluid-row {
  direction: rtl; /* Flip direction */
}

.fluid-section.alternate .fluid-content {
  direction: ltr; /* Reset text direction */
}

.fluid-image {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.fluid-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.fluid-content .title-box {
  text-align: left;
  margin-bottom: 35px;
}

.fluid-content .title-box .pattern-image {
  margin: 10px 0 20px 0;
}

.fluid-content .text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: var(--color-charcoal-light);
}

@media (max-width: 1024px) {
  .fluid-row {
    grid-template-columns: 1fr;
  }
  .fluid-image {
    min-height: 350px;
  }
  .fluid-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .fluid-content {
    padding: 50px 20px;
  }
}

/* --- "Must Have" Specials Section --- */
.menu-one {
  background-color: var(--color-ivory);
  position: relative;
}

.menu-one .swiper-container {
  padding-bottom: 50px;
}

.dish-slide {
  text-align: center;
  background-color: var(--color-peach);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 20px;
  transition: var(--transition-smooth);
}

.dish-slide:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.08);
}

.dish-img-wrap {
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.dish-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.dish-price {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-terracotta);
  font-weight: 500;
}

/* --- Full Menu List Pages (Subpage Menu layout) --- */
.full-menu-section {
  background-color: var(--color-ivory);
}

.menu-category-block {
  margin-bottom: 80px;
}

.menu-category-block:last-child {
  margin-bottom: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.3);
  background-color: var(--color-peach);
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.menu-item:hover {
  transform: translateY(-3px);
  border-bottom-style: solid;
  border-bottom-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.08);
}

.menu-item-details {
  flex-grow: 1;
  padding-right: 20px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.menu-item-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: color 0.3s;
}

.menu-item:hover .menu-item-title {
  color: var(--color-terracotta);
}

.menu-item-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* --- Testimonials Section (Dark/Textured) --- */
.testimonials-two {
  position: relative;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  overflow: hidden;
}

.testimonials-two .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: brightness(0.5);
  pointer-events: none;
}

.testimonials-two .title-box h2 {
  color: var(--color-charcoal);
}

.testi-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-icon {
  margin-bottom: 25px;
}

.quote-icon svg {
  width: 45px;
  height: auto;
  color: var(--color-gold);
  opacity: 0.5;
}

.rating {
  color: #FBBC05;
  margin-bottom: 25px;
  font-size: 15px;
}

.rating i {
  margin: 0 2px;
}

.testi-block .text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 249, 246, 0.9);
  margin-bottom: 35px;
}

.auth-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

/* --- Why Choose Us (Strengths) --- */
.why-us-two {
  background-color: var(--color-peach);
}

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-block-two {
  position: relative;
  background-color: var(--color-charcoal);
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.why-block-two .image-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.why-block-two .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.4) contrast(1.1);
}

.why-block-two:hover .image-box img {
  transform: scale(1.1);
}

.why-block-two .over-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-ivory);
  background: linear-gradient(to bottom, transparent 40%, rgba(30, 30, 30, 0.85) 100%);
}

.icon-box {
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.why-block-two:hover .icon-box {
  transform: translateY(-8px);
}

.icon-box svg {
  width: 50px;
  height: auto;
  color: var(--color-gold);
}

.why-block-two h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-ivory);
}

.why-block-two p {
  font-size: 0.95rem;
  color: rgba(250, 249, 246, 0.85);
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .why-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-row {
    grid-template-columns: 1fr;
  }
  .why-block-two {
    height: 320px;
  }
}

/* --- Events Grid (Subpage Events Layout) --- */
.events-section-page {
  background-color: var(--color-ivory);
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.event-card-page {
  background-color: var(--color-peach);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.event-card-page:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.08);
}

.event-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
}

.event-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

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

.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-ivory);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 12px;
  text-align: center;
  z-index: 2;
}

.event-date-badge .day {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
}

.event-date-badge .month {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  font-weight: 500;
}

.event-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.event-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-card-text {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-card-footer {
  border-top: 1px solid var(--color-sand);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.event-card-time i {
  color: var(--color-terracotta);
  margin-right: 6px;
}

.event-card-link {
  color: var(--color-terracotta);
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.event-card-link:hover {
  color: var(--color-charcoal);
}

@media (max-width: 1024px) {
  .events-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-list-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Gallery masonry / grid page --- */
.gallery-section-page {
  background-color: var(--color-ivory);
}

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card-page {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--color-beige);
}

.gallery-card-page img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

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

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(192, 92, 70, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.gallery-card-overlay i {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.gallery-card-page:hover .gallery-card-overlay {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid-page {
    grid-template-columns: 1fr;
  }
}

/* --- Image Gallery Carousel (Eden Style) --- */
.image-gallery {
  background-color: var(--color-ivory);
  padding: 50px 0;
}

.gallery-carousel .swiper-slide {
  overflow: hidden;
  height: 250px;
}

.gallery-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
  cursor: pointer;
}

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

/* --- Online Reservation / Order Online Banner --- */
.online-reservation {
  position: relative;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

.online-reservation .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: brightness(0.4);
  pointer-events: none;
}

.online-reservation .title-box h2 {
  color: var(--color-charcoal);
}

.request-info {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(250, 249, 246, 0.85);
}

/* --- Reservation Form Section --- */
.reservation-form-section {
  background-color: var(--color-peach);
}

.reservation-box {
  background-color: var(--color-peach);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--color-charcoal-light);
}

.form-control {
  width: 100%;
  background-color: var(--color-ivory);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-charcoal);
  border-radius: 0;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background-color: white;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23C05C46' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}

.reserve-btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .reservation-box {
    padding: 35px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--color-terracotta);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 14px;
}

/* Reservation Success Modal */
.reservation-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
  z-index: 10005;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reservation-success-content {
  background-color: var(--color-ivory);
  border: 1px solid var(--color-terracotta);
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.success-icon {
  font-size: 4rem;
  color: var(--color-terracotta);
  margin-bottom: 20px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.success-details {
  background-color: var(--color-peach);
  border: 1px solid var(--color-beige);
  padding: 20px;
  margin: 25px 0;
  text-align: left;
}

.success-details p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.success-details strong {
  color: var(--color-terracotta);
}

/* --- Location & Map --- */
.location-section {
  background-color: var(--color-ivory);
  padding-bottom: 0;
}

.location-map-wrap {
  width: 100%;
  height: 450px;
  border-top: 1px solid var(--color-beige);
  position: relative;
  background-color: var(--color-sand);
}

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

/* --- Luxury Footer Redesign --- */
.main-footer {
  background-color: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--color-charcoal);
  padding: 80px 0 0 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  position: relative;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-gold-light);
}

.footer-links, .footer-contact {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
  color: var(--color-charcoal-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--color-gold);
  margin-top: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #0A0A0A;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
}

.copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250, 249, 246, 0.5);
}

.copyright-wrap a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.copyright-wrap a:hover {
  color: var(--color-gold-light);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .copyright-wrap {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 45px;
  height: 45px;
  background-color: var(--color-terracotta);
  color: white;
  border-radius: 50%;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-charcoal);
  transform: translateY(-3px);
}

/* --- Highlights & Vibe Section --- */
.highlights-section {
  position: relative;
  background-color: var(--color-peach);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.highlight-card {
  background-color: var(--color-peach-dark);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.highlight-icon-wrap {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin: 0 auto 25px;
  color: var(--color-gold);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon-wrap {
  background-color: var(--color-gold);
  color: var(--color-ivory);
  transform: rotate(360deg);
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.highlight-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-charcoal-light);
  margin-bottom: 15px;
}

.highlight-desc {
  font-size: 1rem;
  color: var(--color-charcoal-light);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
