/* ========================================
   SAVVAS SEAFOOD — Style Sheet
   ======================================== */

:root {
  --blue-dark:  #0a4f7e;
  --blue-mid:   #1a7abf;
  --blue-light: #5bb8e8;
  --blue-pale:  #daf0fb;
  --blue-sky:   #87ceeb;
  --white:      #ffffff;
  --white-warm: #f7fbff;
  --text-dark:  #0d2f45;
  --text-mid:   #2d6a9a;
  --gold:       #c8a84b;
  --shadow:     rgba(10, 79, 126, 0.16);
  --font-main:  'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-brand: 'Montserrat', 'Segoe UI', sans-serif;
  --font-head:  Georgia, 'Times New Roman', serif;
  --radius:     5px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-dark); color: var(--white);
  border: 2px solid var(--blue-dark);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--blue-dark);
  border: 2px solid var(--white);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-white:hover { background: var(--blue-pale); border-color: var(--blue-pale); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--blue-dark); color: var(--white); }

.btn-phone {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--blue-dark); color: var(--white);
  border: 2px solid var(--blue-dark);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-phone:hover { background: var(--blue-mid); border-color: var(--blue-mid); }

.btn-reviews {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); color: var(--text-dark);
  border: 2px solid #dadada;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s;
}
.btn-reviews:hover { border-color: #fbbc04; }
.btn-reviews .stars { color: #fbbc04; letter-spacing: 1px; }

.btn-ihost {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--blue-pale); color: var(--blue-dark);
  border: 2px solid rgba(91,184,232,0.5);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-ihost:hover { background: var(--blue-sky); }

/* Instagram icon slightly larger */
.nav-social-ig svg { width: 22px; height: 22px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.75rem 2rem;
  transition: background 0.45s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(8, 40, 65, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* --- Left corner --- */
.nav-corner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 170px;
}
.nav-corner-left { align-items: flex-start; }
.nav-corner-right { align-items: flex-end; min-width: 120px; }

.nav-phone {
  display: flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Language toggle button — hidden on desktop, shown on mobile */
.lang-toggle-btn { display: none; }

/* In-menu language item — hidden on desktop */
.nav-links .nav-lang-item { display: none; }

/* Language switcher */
.lang-switcher { display: flex; gap: 2px; align-items: center; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.5);
  padding: 0.2rem 0.4rem;
  font-family: var(--font-brand);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.05em; cursor: pointer;
  border-radius: 2px; transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

/* --- Center branding --- */
.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.nav-est {
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue-sky);
  border: 1px solid rgba(135, 206, 235, 0.4);
  padding: 0.12rem 0.65rem;
  border-radius: 2px;
}

.nav-wave-icon {
  width: 34px; height: 14px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.nav-brand-name {
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  letter-spacing: 0.38em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s;
  padding-left: 0.38em;
}
.nav-brand-name:hover { opacity: 0.82; }

/* Horizontal subnav */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin-top: 0.15rem;
  gap: 0;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li + li::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 9px;
  background: rgba(255,255,255,0.22);
  margin: 0 0.9rem;
}
.nav-links a {
  font-family: var(--font-brand);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.18rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.22s, border-color 0.22s;
  /* compensate letter-spacing on right */
  padding-left: 0.22em;
}
.nav-links a:hover {
  color: var(--white);
  border-bottom-color: var(--blue-sky);
}

/* --- Right corner: social icons --- */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-social {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.65);
  transition: color 0.22s;
}
.nav-social svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.nav-social:hover { color: var(--white); }

/* Hamburger (mobile only) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* Status badge */
.status-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  font-family: var(--font-brand);
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem; border-radius: var(--radius);
  margin-bottom: 1rem;
}
.status-open  { background: rgba(26, 122, 58, 0.85); color: #fff; border: 1px solid rgba(26,122,58,0.5); }
.status-closed { background: rgba(155, 26, 26, 0.85); color: #fff; border: 1px solid rgba(155,26,26,0.5); }

/* ========== HERO ========== */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }

.slideshow { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover; background-position: center 25%;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.50) 45%, rgba(0,0,0,0.76) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; padding-top: 160px;
}

.hero-badge {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3);
  color: var(--blue-sky); font-size: 0.73rem; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 0.3rem 1rem;
  border-radius: var(--radius); margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 0 50px rgba(0,0,0,0.5);
  line-height: 1.15; margin-bottom: 0.5rem;
}
.hero-title span { color: var(--blue-sky); display: block; }

.hero-subtitle {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 2rem; max-width: 520px; line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Hero navigation arrows */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); width: 46px; height: 46px;
  border-radius: var(--radius); cursor: pointer; font-size: 1.3rem;
  backdrop-filter: blur(4px); transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-nav:hover { background: rgba(255,255,255,0.32); }
.hero-nav.prev { left: 1.25rem; }
.hero-nav.next { right: 1.25rem; }

.slide-dots {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.45rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.dot.active { background: var(--white); width: 22px; border-radius: 4px; }

/* Wave */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ========== SECTIONS ========== */
section { padding: 5rem 2rem; }

/* Push anchor targets below the fixed navbar */
section[id] { scroll-margin-top: 150px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  text-align: center; font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: 0.4rem; font-weight: 700;
}
.section-title {
  text-align: center; font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--blue-dark);
  margin-bottom: 0.75rem; line-height: 1.25;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.7rem; margin-bottom: 3rem;
}
.section-divider::before, .section-divider::after {
  content: ''; height: 1px; width: 55px; background: var(--blue-light);
}
.section-divider span { color: var(--blue-light); font-size: 1.1rem; }

/* ========== HISTORY ========== */
.history-section { background: var(--white-warm); }

.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.history-image-wrap { position: relative; }
.history-image-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; box-shadow: 0 12px 40px var(--shadow);
}
.history-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--blue-dark); color: var(--white);
  border-radius: 8px; padding: 0.85rem 1.1rem; text-align: center;
  box-shadow: 0 8px 24px var(--shadow);
}
.history-badge .years { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--blue-sky); line-height: 1; }
.history-badge .years-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.15rem; }

.history-text h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--blue-dark); margin-bottom: 1rem; }
.history-text p { color: #3a5a72; line-height: 1.85; margin-bottom: 1rem; font-size: 0.98rem; }
.history-highlight { border-left: 3px solid var(--blue-light); padding-left: 1rem; color: var(--blue-dark) !important; font-style: italic; margin: 1.25rem 0 !important; }

.history-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.tag {
  background: var(--blue-pale); color: var(--blue-dark);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: var(--radius);
  border: 1px solid rgba(91,184,232,0.35);
}


/* Spaces subtitle */
.spaces-subtitle {
  text-align: center;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}

/* ========== SPACES SLIDESHOW ========== */
.spaces-section { background: var(--white); }

.spaces-slideshow {
  width: 90%;
  max-width: 1440px; margin: 0 auto;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,40,70,0.22);
  position: relative;
}

.spaces-slides-wrap { position: relative; aspect-ratio: 16/9; background: var(--blue-dark); }

.spaces-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 65%;
  opacity: 0; transition: opacity 0.9s ease;
}
.spaces-slide.active { opacity: 1; }

.spaces-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.82); border: 1px solid rgba(0,0,0,0.1);
  color: var(--blue-dark); width: 42px; height: 42px;
  border-radius: var(--radius); cursor: pointer; font-size: 1.3rem;
  transition: background 0.2s; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.spaces-nav:hover { background: var(--white); }
.spaces-nav.prev { left: 1rem; }
.spaces-nav.next { right: 1rem; }

.spaces-below {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  padding: 1.6rem 1rem 0;
}

.spaces-caption-title {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-mid);
  padding-left: 0.28em;
}

.spaces-dots-wrap { display: flex; justify-content: center; gap: 0.45rem; }
.spaces-dots-wrap .dot { background: rgba(10,79,126,0.25); }
.spaces-dots-wrap .dot.active { background: var(--blue-mid); width: 20px; border-radius: 3px; }

/* Fresh fish tagline above lobster icon */
.food-fresh-tag {
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: clamp(0.58rem, 1.2vw, 0.88rem);
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  text-align: center;
  margin: 2rem 0 0;
}

/* Lobster decorative emblem in food section header */
.food-lobster-deco {
  display: flex;
  justify-content: center;
  margin: -0.75rem 0 1.75rem;
}
.food-lobster-deco img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.9);
}

/* ========== FOOD SECTION (cinematic) ========== */
.food-section { background: var(--blue-dark); padding: 5rem 0 4rem; overflow: hidden; }
.food-section .section-label { color: var(--blue-sky); }
.food-section .section-title { color: var(--white); }
.food-section .section-divider::before, .food-section .section-divider::after { background: rgba(91,184,232,0.35); }
.food-section .section-divider span { color: var(--blue-sky); }

.food-section-header { text-align: center; padding: 0 2rem; margin-bottom: 2.5rem; }

/* Cinema wrapper — 84% wide, centered, arrows outside */
.food-cinema-wrap {
  position: relative;
  width: 84%;
  margin: 0 auto;
}

.food-slideshow {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.food-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover; background-position: center 65%;
}
.food-slide.active { opacity: 1; }

/* Dual-gradient overlay: blue tint top + dark base bottom */
.food-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,22,42,0.5) 0%,
    rgba(5,22,42,0.05) 45%,
    rgba(5,22,42,0.6) 100%
  );
  pointer-events: none;
}

/* Category tag — bottom left */
.food-slide-label {
  position: absolute; bottom: 1.6rem; left: 1.75rem;
  z-index: 2;
  font-family: var(--font-brand);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.2rem 0.7rem 0.2rem calc(0.3em + 0.7rem);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  background: rgba(5,22,42,0.4);
}

/* Static text overlay — top center */
.food-overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  text-align: center;
  padding: 2.2rem 4rem 0;
  pointer-events: none;
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: clamp(0.65rem, 1.4vw, 1.05rem);
  letter-spacing: 0.32em;
  padding-left: calc(0.32em + 4rem);
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.7);
}

/* Navigation arrows — sit outside the image frame */
.food-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 36px; height: 36px;
  border-radius: 2px; cursor: pointer; font-size: 1.1rem;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.food-nav:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.food-nav.prev { left: -52px; }
.food-nav.next { right: -52px; }

.food-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.food-dots .dot { background: rgba(255,255,255,0.22); width: 6px; height: 6px; border-radius: 50%; }
.food-dots .dot.active { background: var(--blue-sky); width: 20px; border-radius: 3px; }

.food-section-cta { text-align: center; margin-top: 2.5rem; }

.btn-food-menu {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.38);
  padding: 0.85rem 2.8rem;
  padding-left: calc(0.3em + 2.8rem);
  border-radius: 2px;
  transition: background 0.22s, border-color 0.22s;
}
.btn-food-menu:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

/* ========== BOOK TABLE ========== */
.book-section {
  background: var(--blue-dark);
  padding: 5.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(91,184,232,0.15);
}

.book-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.book-logo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  margin-bottom: 0.5rem;
}

.book-title {
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  padding-left: 0.3em; /* compensate kerning */
}

.book-subtitle {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.4rem;
}

.btn-book {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-decoration: none;
  background: var(--white);
  padding: 1rem 3.2rem;
  padding-left: calc(0.25em + 3.2rem);
  border-radius: 2px;
  transition: background 0.22s, color 0.22s;
}
.btn-book:hover { background: var(--blue-sky); color: var(--blue-dark); }

/* ========== CONTACT ========== */
.contact-section { background: var(--white-warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-info h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--blue-dark); margin-bottom: 1.5rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.1rem; }
.contact-icon {
  width: 42px; height: 42px; background: var(--blue-pale);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--blue-dark);
}
.contact-item-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-mid); font-weight: 700; }
.contact-item-value { font-size: 0.98rem; color: var(--text-dark); font-weight: 500; margin-top: 0.1rem; }

.contact-actions { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }

.btn-book-inline {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: var(--blue-dark);
  border: 1px solid rgba(91,184,232,0.45);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.btn-book-inline:hover { background: var(--blue-mid); border-color: var(--blue-sky); }

.map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px var(--shadow); }
.map-wrap iframe { display: block; width: 100%; min-height: 320px; border: 0; }

/* ========== REVIEWS ========== */
.reviews-section { background: var(--white); padding: 5rem 2rem; }
.reviews-section .section-label { color: var(--blue-mid); }

.reviews-rating { text-align: center; font-size: 1rem; color: var(--text-mid); margin-bottom: 2rem; font-weight: 600; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.review-card {
  background: var(--white-warm); border: 1px solid #dce8f0;
  border-radius: 8px; padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(10,79,126,0.06);
}
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.review-stars { font-size: 0.85rem; margin-top: 0.1rem; }
.review-text { font-size: 0.88rem; color: #3a5a72; line-height: 1.6; margin-bottom: 0.6rem; }
.review-time { font-size: 0.75rem; color: #8aaabd; }

.reviews-configure { color: var(--text-mid); font-size: 0.9rem; text-align: center; margin-bottom: 1rem; }
.reviews-loading { color: var(--text-mid); text-align: center; }

.reviews-actions { text-align: center; margin-top: 1.5rem; }
.reviews-actions .btn-outline-dark { margin: 0 auto; }

/* ========== FOOTER ========== */
footer { background: var(--blue-dark); color: rgba(255,255,255,0.72); padding: 3rem 2rem 1.5rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.75rem; }
.footer-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); }
.footer-name { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); font-weight: 700; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.58); }
footer h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.55rem; }
footer ul li a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--blue-sky); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.38); flex-wrap: wrap; gap: 0.4rem;
}

/* ========== MENU PAGE ========== */
.menu-hero {
  background: var(--blue-dark);
  padding: 10rem 2rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the logo */
.menu-hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(91,184,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.menu-hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  position: relative;
}

.menu-hero-wave {
  width: 52px; height: 18px;
  stroke: rgba(255,255,255,0.38);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.menu-hero-brand {
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  line-height: 1;
  white-space: nowrap;
}

.menu-hero-divider {
  width: 40px; height: 1px;
  background: rgba(135,206,235,0.45);
  margin: 0.3rem 0;
}

.menu-hero-sub {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-sky);
  padding-left: 0.3em;
}

.menu-hero-hint {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

.menu-categories { background: var(--white-warm); padding: 3rem 2rem 5rem; }

.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center; margin-bottom: 2.5rem; }
.menu-tab {
  background: var(--white); border: 2px solid #c8dde8;
  color: var(--text-mid); padding: 0.55rem 1.1rem;
  border-radius: var(--radius); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.menu-tab:hover, .menu-tab.active { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-images-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.menu-img-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px var(--shadow); transition: transform 0.2s; }
.menu-img-card:hover { transform: translateY(-3px); }
.menu-img-card img { width: 100%; height: 300px; object-fit: cover; display: block; cursor: pointer; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; padding: 1rem; cursor: pointer; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 92vh; object-fit: contain; border-radius: 6px; cursor: default; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ========== FLOATING PHONE (mobile) ========== */
.float-phone {
  display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  background: var(--gold); color: var(--text-dark);
  width: 56px; height: 56px; border-radius: 50%;
  font-size: 1.4rem; text-decoration: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(200,168,75,0.45);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(200,168,75,0.45); }
  50%      { box-shadow: 0 4px 28px rgba(200,168,75,0.75), 0 0 0 7px rgba(200,168,75,0.12); }
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 900;
  background: var(--blue-dark); color: var(--white);
  width: 42px; height: 42px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; font-size: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  box-shadow: 0 4px 14px var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ========== DRINKS SECTION ========== */
.drinks-section {
  background: var(--blue-dark);
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}
.drinks-section .section-label {
  color: var(--blue-sky);
  font-size: 1rem;
  letter-spacing: 4px;
}
.drinks-section .section-title { color: var(--white); }
.drinks-section .section-divider::before,
.drinks-section .section-divider::after { background: rgba(91,184,232,0.3); }
.drinks-section .section-divider span { color: var(--blue-sky); }

.drinks-section-header { text-align: center; padding: 0 2rem; margin-bottom: 1.5rem; }

.drinks-marquee-outer {
  overflow: hidden;
  padding: 0.75rem 0 1.25rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.drinks-marquee-track {
  display: flex;
  gap: 1rem;
  padding: 0 0.5rem;
  width: max-content;
  animation: drinksScroll 32s linear infinite;
}
.drinks-marquee-track:hover { animation-play-state: paused; }

@keyframes drinksScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.drinks-item {
  flex-shrink: 0;
  width: 220px;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid rgba(91,184,232,0.15);
}
.drinks-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.drinks-item:hover img { transform: scale(1.05); }

/* ========== WALL OF FAME ========== */
.wof-section {
  background: var(--white-warm);
  padding: 5rem 2rem 5.5rem;
}
.wof-section .section-label { color: var(--blue-mid); margin-bottom: 2.5rem; }

.wof-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.wof-photo-wrap {
  position: relative;
}
.wof-photo {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(10,79,126,0.22);
  display: block;
}

.wof-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wof-icon {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.wof-text h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blue-dark);
}
.wof-text p {
  color: #3a5a72;
  line-height: 1.85;
  font-size: 0.98rem;
}

/* ========== REVIEW AVATAR INITIALS ========== */
.review-avatar-initial {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-mid); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em; flex-shrink: 0;
}

/* ========== REVIEW TRANSLATE BUTTON ========== */
.review-translate-btn {
  display: inline-flex; align-items: center;
  background: none; border: 1px solid var(--blue-light);
  color: var(--text-mid); border-radius: var(--radius);
  font-family: var(--font-brand); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; padding: 0.3rem 0.75rem;
  cursor: pointer; margin-top: 0.6rem;
  transition: background 0.2s, color 0.2s;
}
.review-translate-btn:hover { background: var(--blue-pale); color: var(--blue-dark); }
.review-translated { color: var(--text-mid); font-style: italic; margin-top: 0.4rem !important; }


/* ========== FADE IN ========== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .history-grid, .contact-grid { grid-template-columns: 1fr; }
  .history-badge { bottom: -1rem; right: 0.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: span 2; }
  .wof-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  /* Mobile navbar: row 1 = language left + icons right, row 2 = brand full width */
  .navbar {
    flex-wrap: wrap;
    padding: 0.6rem 1rem 0;
    align-items: center;
    gap: 0;
  }

  /* Language button moved inside hamburger on mobile */
  .nav-corner-left { display: none; }

  /* Row 1 right: instagram + hamburger */
  .nav-corner-right {
    order: 2;
    flex: 1;
    min-width: auto;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-end;
    padding: 0.4rem 0 0.5rem;
  }

  /* Row 2: brand — full width, centered */
  .nav-center {
    order: 3;
    flex-basis: 100%;
    text-align: center;
    padding: 0 0 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.45rem;
    padding-top: 0.4rem;
  }

  /* LANGUAGE toggle button */
  .lang-toggle-btn {
    display: inline-flex; align-items: center;
    background: transparent; border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.8); font-family: var(--font-brand);
    font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem; border-radius: 3px; cursor: pointer;
    transition: background 0.2s, color 0.2s; text-transform: uppercase;
  }
  .lang-toggle-btn.open,
  .lang-toggle-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }

  /* Language dropdown — absolute so it doesn't shift the layout */
  .lang-switcher {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    gap: 2px;
    background: rgba(8,40,65,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.35rem 0.5rem;
    z-index: 200;
    min-width: 80px;
  }
  .lang-switcher.open { display: flex; }
  .lang-btn { padding: 0.2rem 0.3rem; font-size: 0.62rem; border: none; background: none; text-align: right; }
  .lang-btn.active { color: var(--white); }
  .lang-btn + .lang-btn::before { content: none; }

  .hamburger { display: flex; }
  .nav-est {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
    padding: 0.1rem 0.5rem;
  }
  .nav-wave-icon { width: 26px; height: 11px; }
  .nav-brand-name { font-size: 1.35rem; letter-spacing: 0.2em; white-space: nowrap; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,40,65,0.98);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links li + li::before { display: none; }
  .nav-links a {
    font-size: 0.78rem; letter-spacing: 0.2em;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%; display: block;
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* In-menu language picker — single horizontal row */
  .nav-links .nav-lang-item {
    display: flex; flex-direction: row; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0;
  }
  .nav-lang-toggle {
    background: none; border: none;
    color: rgba(255,255,255,0.65); font-family: var(--font-brand);
    font-size: 0.78rem; font-weight: 400; letter-spacing: 0.2em;
    padding: 0; flex-shrink: 0; cursor: pointer;
    display: flex; align-items: center; gap: 0.35rem;
    text-transform: uppercase;
  }
  .nav-lang-toggle:hover, .nav-lang-toggle.open { color: var(--white); }
  .nav-lang-arrow { font-size: 0.65rem; transition: transform 0.2s; }
  .nav-lang-toggle.open .nav-lang-arrow { transform: rotate(90deg); }
  .nav-lang-picker { display: none; flex-direction: row; flex-wrap: nowrap; gap: 0.35rem; }
  .nav-lang-picker.open { display: flex; }
  .nav-lang-picker .lang-btn {
    padding: 0.25rem 0.5rem; font-size: 0.66rem;
    border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.65);
  }
  .nav-lang-picker .lang-btn.active { background: rgba(255,255,255,0.16); color: var(--white); border-color: rgba(255,255,255,0.5); }

  .hamburger { display: flex; }
  .hero-nav { width: 38px; height: 38px; font-size: 1.1rem; }
  .hero-nav.prev { left: 0.5rem; }
  .hero-nav.next { right: 0.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .spaces-slides-wrap { aspect-ratio: 4/3; }
  .float-phone { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  /* Food cinema on mobile: full width, arrows on top of image */
  .food-cinema-wrap { width: 100%; }
  .food-nav.prev { left: 0.5rem; }
  .food-nav.next { right: 0.5rem; }
  .food-overlay-top { font-size: 0.6rem; padding: 1.2rem 1rem 0; padding-left: calc(0.3em + 1rem); }
  .spaces-slideshow { width: 100%; }
  .book-title { letter-spacing: 0.2em; padding-left: 0.2em; }
  section[id] { scroll-margin-top: 80px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  /* Drinks on mobile */
  .drinks-item { width: 160px; height: 210px; }
  /* Wall of fame on mobile */
  .wof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wof-photo { aspect-ratio: 4/3; }
}
