/** @format */

:root {
  /* Colors */
  --wood-dark: #3d2b1f;
  --wood-medium: #5d4037;
  --wood-light: #8d6e63;
  --cream: #fff5e1;
  --gold: #d4af37;
  --gold-vibrant: #ffd700;
  --text-dark: #2c1e16;
  --text-light: #f5f5f5;
  --glass-bg: rgba(255, 245, 225, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Fonts */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Montserrat", sans-serif;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-padding-top: 80px; /* space for fixed header when scrolling to anchor */
}

body {
  font-family: var(--font-sans);
  background-color: var(--wood-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

section.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(61, 43, 31, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.logo-text span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
  padding-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn-reserv {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reserv:hover {
  background: var(--gold);
  color: var(--wood-dark);
}

/* Header Actions & Lang Switcher */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}

.lang-btn:hover {
  background: rgba(255, 245, 225, 0.25);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--wood-dark);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-width: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding-top: 5px; /* Added some padding to act as a bridge */
}

/* Ensure the hover area is continuous */
.lang-switcher::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.lang-switcher.open .lang-dropdown {
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .lang-switcher:hover .lang-dropdown {
    display: flex;
  }
}

.lang-dropdown button {
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.lang-dropdown button:hover {
  background: var(--gold);
  color: var(--wood-dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/heroBanner.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


.hero-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
  animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream);
  animation: heroFadeUp 0.8s ease-out 0.35s both;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 245, 225, 0.8);
  animation: heroFadeUp 0.8s ease-out 0.5s both;
}

.hero-btns {
  animation: heroFadeUp 0.8s ease-out 0.65s both;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: var(--transition);
  margin: 0.5rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--wood-dark);
}

.btn-primary:hover {
  background: var(--gold-vibrant);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-secondary {
  border: 1px solid var(--cream);
  color: var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--wood-dark);
}

/* About Section */
.about {
  background: var(--wood-medium);
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 16px 16px 0 var(--gold), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 245, 225, 0.9);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold-vibrant);
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Menu Section */
.menu {
  background: var(--wood-dark);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem; /* allow some breathing room when scrolled */
  scrollbar-width: none; /* hide Firefox scrollbar */
}

.menu-tabs-mobile {
  display: none;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.dropdown-label {
  font-size: 12px;
  font-weight: 600;
  color: #f6f3f3;
}

.menu-tabs-mobile select {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(53, 32, 18, 0.9),
    rgba(66, 43, 26, 0.92)
  );
  color: var(--cream);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.5px;
  appearance: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff1d5' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}

.menu-tabs-mobile select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-tabs::-webkit-scrollbar {
  display: none; /* hide WebKit scrollbar */
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  white-space: nowrap; /* prevent button text wrapping */
  flex: 0 0 auto; /* keep buttons from stretching so horizontal scroll works */
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active::after {
  width: 80%;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  transition: opacity 0.3s ease;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(
    160deg,
    rgba(60, 39, 26, 0.92),
    rgba(46, 30, 19, 0.96)
  );
  border: 1px solid rgba(255, 245, 225, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.menu-name-ro {
  color: white;
  font-size: 0.7em;
}

.menu-item:hover {
  background: linear-gradient(
    160deg,
    rgba(70, 47, 31, 0.95),
    rgba(52, 33, 21, 0.98)
  );
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

/* Subcategory grouping for drinks and similar grouped lists */
.menu-subcategory {
  margin-bottom: 1.75rem;
}

.subcategory-title {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.15rem;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.6px;
}

.menu-subitems {
  display: grid;
  grid-template-columns: 1fr; /* one item per row */
  gap: 0.75rem;
}

/* When menu-grid has grouped subcategories, stack subcategories vertically (desktop and mobile)
   so each subcategory appears one under another */
.menu-grid.grouped {
  display: block;
}

.menu-grid.grouped .menu-subcategory {
  margin-bottom: 2rem;
}
.menu-item-info {
  flex: 1;
  margin: 0;
}
.menu-item-info h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-align: left;
  letter-spacing: 0.5px;
}

.menu-item-info p {
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.7);
  text-align: left;
  margin: 0;
}

.menu-item-image {
  width: 78px;
  height: 78px;
  min-width: 78px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 245, 225, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.menu-price {
  font-weight: 800;
  color: #efbe5c;
  letter-spacing: 0.2px;
  margin-left: auto;
}

/* Gallery Section */
.gallery {
  background: var(--wood-medium);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 245, 225, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Services Section */
.services {
  background: var(--wood-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(255, 245, 225, 0.25);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: rgba(255, 245, 225, 0.8);
  font-size: 0.95rem;
}

/* Payment Section */
.payment {
  background: var(--wood-medium);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition);
}

.payment-item:hover {
  background: rgba(255, 245, 225, 0.25);
  transform: scale(1.05);
}

.payment-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.payment-item h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.payment-item p {
  color: rgba(255, 245, 225, 0.8);
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  background: var(--wood-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 12px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 245, 225, 0.25);
  border-color: var(--gold);
}

.review-stars {
  color: var(--gold-vibrant);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--cream);
}

.review-author {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.review-source {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Contact Section */
.contact {
  background: var(--wood-medium);
}

.info-list {
  margin-top: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.info-item p,
.info-item a {
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
}

.contact-map {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 245, 225, 0.05);
}

/* Footer */
.footer {
  background: var(--wood-dark);
  border-top: 1px solid rgba(255, 245, 225, 0.1);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: #ffffff;
  padding: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.6);
  font-style: italic;
}

.footer-section h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 245, 225, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-company-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 245, 225, 0.1);
}

.footer-company-info p {
  font-size: 0.85rem;
  color: rgba(255, 245, 225, 0.6);
  margin: 0.3rem 0;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.8);
}

.footer-contact a {
  color: rgba(255, 245, 225, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 245, 225, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 245, 225, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--gold);
}

.social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Legal Pages Styling */
.legal-page {
  background: var(--wood-medium);
  min-height: 100vh;
  /* Always visible on load (avoids IntersectionObserver threshold issue on mobile) */
  opacity: 1;
  transform: none;
}

.legal-intro {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 245, 225, 0.1);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin: 1.5rem 0 0.75rem;
}

.legal-content h4 {
  font-size: 1.1rem;
  color: var(--cream);
  margin: 1.2rem 0 0.6rem;
}

.legal-content p {
  color: rgba(255, 245, 225, 0.9);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(255, 245, 225, 0.9);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  transition: var(--transition);
}

.legal-content a:hover {
  color: var(--gold-vibrant);
}

.legal-content strong {
  color: var(--cream);
  font-weight: 600;
}

.legal-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: var(--gold);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid rgba(255, 245, 225, 0.1);
}

.cookie-table th {
  background: var(--wood-dark);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-table td {
  color: rgba(255, 245, 225, 0.9);
  font-size: 0.9rem;
}

/* Responsive */
/* --- Responsive: Tablet & Mobile --- */

/* Footer responsive */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .nav-links,
  .btn-reserv {
    display: none;
  }
  .header-actions {
    gap: 1rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 44px;
    height: 44px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-text {
    font-size: 20px;
  }
  .menu-tabs {
    display: none;
  }
  .menu-tabs-mobile {
    display: block;
  }
  .menu-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
  }
  .menu-item-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 245, 225, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
  }
  .menu-item-info {
    flex: 1;
    margin: 0;
  }
  .menu-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #efbe5c;
    letter-spacing: 0.2px;
    margin-left: auto;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    order: -1;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
  .legal-content h3 {
    font-size: 1.2rem;
  }
  .legal-content ul {
    margin-left: 1rem;
  }
  .cookie-table {
    font-size: 0.85rem;
  }
  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem;
  }
  /* Optimize review cards for mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .review-card {
    padding: 1.5rem;
    border-radius: 10px;
  }
  .review-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .review-author {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .review-source {
    font-size: 0.75rem;
  }
  .reviews-cta {
    margin-top: 1.5rem;
  }
  /* Optimize payment cards for mobile */
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  .payment-item {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .payment-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .payment-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .payment-item p {
    font-size: 0.85rem;
  }
  /* Optimize service cards for mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  .service-item {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .service-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }
  .service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .service-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .menu-tabs {
    justify-content: flex-start;
    gap: 0.35rem;
    margin-bottom: 2rem;
    padding-left: 0.75rem;
  }
  .tab-btn {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
  .menu-subitems {
    grid-template-columns: 1fr;
  }
  .subcategory-title {
    font-size: 1rem;
  }
  /* Further optimize review cards for small mobile */
  .reviews-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .review-card {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .review-stars {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  .review-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .review-author {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  .review-source {
    font-size: 0.7rem;
  }
  /* Further optimize payment cards for small mobile */
  .payment-grid {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .payment-item {
    padding: 1rem;
    border-radius: 6px;
  }
  .payment-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .payment-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .payment-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  /* Further optimize service cards for small mobile */
  .services-grid {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .service-item {
    padding: 1rem;
    border-radius: 6px;
  }
  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .service-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .service-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

@media (min-width: 769px) {
  .menu-tabs-mobile {
    display: none;
  }
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.menu-item-image {
  cursor: pointer;
  transition: var(--transition);
}

.menu-item-image:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* On larger screens, show two items per row inside each subcategory */
@media (min-width: 768px) {
  .menu-grid.grouped .menu-subitems {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-grid.grouped .menu-subitems .menu-item {
    padding: 1rem;
  }
}

/* ============================================
   COOKIE CONSENT BANNER (GDPR)
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98),
    rgba(40, 40, 40, 0.98)
  );
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  border-top: 2px solid var(--gold);
  animation: slideUp 0.5s ease-out;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.cookie-consent-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  transition: var(--transition);
}

.cookie-consent-text a:hover {
  color: #fff;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-consent-buttons .btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.cookie-consent-buttons .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.cookie-consent-buttons .btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--cream);
}

.cookie-consent-buttons .btn-secondary:hover {
  background: var(--cream);
  color: var(--wood-dark);
}

.cookie-consent-buttons .btn-text {
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  padding: 0.75rem 1rem;
}

.cookie-consent-buttons .btn-text:hover {
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: var(--wood-dark);
  border: 2px solid var(--gold);
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(217, 176, 105, 0.3);
}

.cookie-modal-header h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-serif);
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(217, 176, 105, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(217, 176, 105, 0.2);
}

.cookie-category-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-category h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.cookie-category p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: 0.4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--gold);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(217, 176, 105, 0.3);
  text-align: right;
}

.cookie-modal-footer .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: var(--gold);
  color: var(--wood-dark);
  font-weight: 600;
  transition: var(--transition);
}

.cookie-modal-footer .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-consent-text h3 {
    font-size: 1rem;
  }

  .cookie-consent-text p {
    font-size: 0.85rem;
  }

  .cookie-consent-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-consent-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal-content {
    margin: 1rem;
  }

  .cookie-modal-header h2 {
    font-size: 1.2rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}
