:root {
  /* Common */
  --primary: #D4A373;
  /* Golden Amber */
  --primary-dark: #A67C52;
  --section-padding: 8rem 2rem;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Default: Dark Theme */
  --bg-body: #0A0A0B;
  --preloader-bg: #0A0A0B;
  --bg-panel: #141415;
  --text-main: #F8F8F8;
  --text-muted: #A0A0A0;
  --glass-bg: rgba(20, 20, 21, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  --bg-body: #FDFCFB;
  --bg-panel: #F5F1EE;
  --text-main: #1A1A1B;
  --text-muted: #666666;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

h1,
h2,
h3,
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- REUSABLE COMPONENTS --- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: #0A0A0B;
  /* Always dark for primary button text for contrast */
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: var(--transition);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-3px);
}

/* --- HEADER --- */

header {
  position: absolute;
  /* Changed to stay at the top */
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1600px;
  padding: 1rem 3rem;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .header-logo img {
    height: 40px;
  }
}

/* Scrolled state removed as it no longer follows viewport */


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Updated Action Buttons Group */
/* High-End Action Group Design */
.nav-actions {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  /* Subtle depth */
  padding: 5px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  gap: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-toggle,
.lang-toggle {
  background: transparent;
  border: none;
  color: var(--text-main);
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle {
  display: none;
  /* Hidden on desktop */
}

.lang-toggle {
  padding: 0 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
}

.theme-toggle {
  background: var(--primary);
  color: #0A0A0B;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
  transform: translateY(-1px);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 15px rgba(212, 163, 115, 0.4);
}


.header-logo {
  display: flex;
  align-items: center;
  perspective: 1000px;
}

.header-logo img {
  height: 80px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 15px rgba(212, 163, 115, 0.4));
  animation: logoRotate 8s linear infinite;
  /* Smooth continuous rotation */
  transform-style: preserve-3d;
}

@keyframes logoRotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

header.scrolled .header-logo img {
  height: 55px;
  filter: drop-shadow(0 0 10px rgba(212, 163, 115, 0.2));
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.1rem;
  /* Slightly smaller for elegance */
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  /* More professional look */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 20px;
  /* Elegant short underline */
}

/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-slider h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

.hero-slider p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 650px;
  margin-inline: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Slide Background Zoom Animation */
.slide.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: 0;
  animation: slideZoom 15s forwards ease-out;
}

@keyframes slideZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* Slider Controls Styling */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0A0A0B;
}

.slider-arrow.prev {
  left: 4rem;
}

.slider-arrow.next {
  right: 4rem;
}

.slider-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 100;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 40px;
  border-radius: 10px;
}

/* --- SECTION UTILITIES --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

/* --- ABOUT PREMIUM --- */
.about-premium {
  padding: 10rem 0;
  background: var(--bg-body);
}

.container-flex {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.img-wrapper:hover .main-img {
  transform: scale(1.05);
}

.img-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: #0A0A0B;
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #0A0A0B;
}

/* --- VALUES SECTION --- */
.values-section {
  padding: 6rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.value-card {
  text-align: center;
}

.value-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.value-card:hover .value-icon-container {
  background: var(--primary);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.premium-icon {
  width: 35px;
  height: 35px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.value-card:hover .premium-icon {
  color: #0A0A0B;
}

.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.value-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- SIGNATURE SECTION --- */
.signature-section {
  padding: 10rem 0;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.signature-card {
  background: var(--bg-panel);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.signature-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.signature-card:hover .dish-img {
  transform: scale(1.1);
}

.card-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: #0A0A0B;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-content {
  padding: 2.5rem;
}

.card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-main);
}

.card-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.card-link:hover {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .container-flex {
    flex-direction: column;
    text-align: center;
  }

  .section-text {
    margin-inline: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- PREMIUM FOOTER --- */
.premium-footer {
  background: var(--bg-body);
  color: var(--text-main);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 4rem 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--glass-border);
}

.container-flex-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-cta h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.footer-main {
  padding: 6rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-logo {
  height: 70px;
  margin-bottom: 2rem;
}

.footer-about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon i {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.social-icon:hover {
  background: var(--primary);
  color: #0A0A0B;
  transform: translateY(-5px);
  border-color: var(--primary);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-main);
  position: relative;
  padding-bottom: 1rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1.2rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item i,
.contact-item svg {
  color: var(--primary);
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}

.contact-item i {
  margin-top: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-divider-small {
  height: 1px;
  background: var(--glass-border);
  margin: 1.5rem 0;
}

.newsletter-small-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-panel);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Theme Toggle Button Style */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  margin-left: 2rem;
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(15deg);
}

/* Removed individual redundant toggle styles handled in group */


/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  /* Header & Nav */
  .nav-links {
    display: none;
  }

  header {
    padding: 0.8rem 1.2rem !important;
  }

  .nav-container {
    padding: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.5rem;
  }

  /* Hero Section */
  .hero-slider {
    height: 80vh;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-slider p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Slider Arrows Mobile Fix */
  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .slider-arrow.prev {
    left: 1rem;
  }

  .slider-arrow.next {
    right: 1rem;
  }

  /* Sections general */
  .container-flex {
    flex-direction: column;
    gap: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* About Section Mobile */
  .about-premium {
    padding: 5rem 0;
  }

  .about-content {
    text-align: center;
  }

  .section-text {
    margin-inline: auto;
  }

  .about-stats {
    justify-content: center;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .img-badge {
    width: 90px;
    height: 90px;
    font-size: 0.75rem;
    padding: 1rem;
    bottom: 1rem;
    right: 1rem;
  }

  .about-image {
    padding: 0 1rem;
  }

  /* Values Section Mobile */
  .values-section {
    padding: 4rem 0;
  }

  .value-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .premium-icon {
    width: 25px;
    height: 25px;
  }

  .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  /* Values & Signature */
  .values-grid,
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Signature Section Mobile */
  .signature-section {
    padding: 5rem 0;
  }

  .signature-grid {
    padding: 0 1rem;
    gap: 2rem;
  }

  .card-img {
    height: 220px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }

  .card-content p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .container-flex-footer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .footer-cta p {
    font-size: 0.9rem;
  }

  .footer-links ul li {
    margin-bottom: 0.8rem;
  }

  .footer-links ul li a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
  }

  .footer-title {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .contact-item i {
    margin-top: 0;
  }

  .hours-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  /* Subpages Mobile Fixes */
  .menu-page-header {
    padding: 8rem 1rem 4rem !important;
  }

  .menu-filters {
    gap: 0.8rem !important;
    margin-bottom: 2.5rem !important;
  }

  .filter-btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.95rem !important;
  }

  .menu-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 0 1rem 5rem !important;
  }

  .menu-item-img {
    height: 180px !important;
    margin-bottom: 1rem !important;
  }

  .menu-item-title {
    font-size: 1.4rem !important;
  }

  .menu-item-desc {
    font-size: 0.85rem !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }

  .gallery-item:nth-child(even) {
    grid-row: span 1 !important;
  }

  .res-card {
    padding: 1.5rem !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .form-group.full {
    grid-column: span 1 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding-top: 8rem !important;
  }

  .info-side h1 {
    font-size: 2.8rem !important;
  }

  .map-container {
    min-height: 300px !important;
  }
}

/* --- MOBILE SIDE MENU --- */
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-body);
  z-index: 10001;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: none;
  /* Changed: Hidden by default */
  flex-direction: column;
}

@media (max-width: 768px) {
  .mobile-side-menu {
    display: flex;
    /* Show only on mobile */
  }
}

.mobile-side-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: none;
  /* Added: Hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
    /* Show only on mobile */
  }
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-logo {
  height: 50px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-bottom: auto;
}

.mobile-nav-links li {
  margin-bottom: 2rem;
}

.mobile-nav-links li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-nav-links li a:hover {
  color: var(--primary);
}

.mobile-menu-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

.mobile-menu-footer p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* --- PRELOADER --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--preloader-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 150px;
  filter: drop-shadow(0 0 30px rgba(212, 163, 115, 0.4));
  animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

[data-theme="light"] {
  --preloader-bg: #FDFCFB;
}