/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark: #0d2a6e;
  --blue-mid:  #1a3a8f;
  --blue-bg:   #233f8f;
  --red:       #cc1f2a;
  --red-hover: #a91520;
  --white:     #ffffff;
  --off-white: #f4f4f4;
  --gray-text: #555;
  --gray-light:#e8e8e8;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --header-h:  68px;
  --bottom-h:  44px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #222;
  background: #fff;
  padding-bottom: var(--bottom-h);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ===========================
   STICKY HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(26, 50, 120, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  pointer-events: none;
  opacity: 0;
}

.site-header.visible {
  opacity: 1;
  pointer-events: all;
  background: rgba(26, 50, 120, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo {
  flex-shrink: 0;
  height: 56px;
}
.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: rgba(255,255,255,0.75); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-arrow { font-size: 9px; opacity: 0.7; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  padding: 0;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: rgba(255,255,255,0.12); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* GPU-accelerated layer — prevents stuttering */
  will-change: transform;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ===========================
   RESTAURANTS SECTION
=========================== */
.restaurants {
  background: var(--blue-bg);
  color: var(--white);
  padding: 60px 0 70px;
}

.section-title {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 14px;
  text-align: center;
  opacity: 0.85;
  margin-bottom: 16px;
}

.section-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.75; }

.restaurants-text {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}
.restaurants-text p { margin-bottom: 10px; }
.restaurants-text .tagline { font-size: 15px; font-weight: 600; }

/* Location Cards */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.location-card:hover .location-img-wrap img { transform: scale(1.08); }

.location-name {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.location-city { font-size: 13px; opacity: 0.85; margin-bottom: 2px; }
.location-address { font-size: 13px; opacity: 0.8; margin-bottom: 2px; }
.location-phone { font-size: 13px; opacity: 0.8; margin-bottom: 12px; }

.btn-menu {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  margin-top: auto;
}
.btn-menu:hover { background: var(--red-hover); transform: translateY(-1px); }

/* ===========================
   WHAT'S NEW
=========================== */
.whats-new {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whats-new-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.whats-new-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
}
.whats-new-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.whats-new-badge-wrap {
  position: absolute;
  bottom: 14px;
  right: 20px;
  z-index: 3;
}
.whats-new-badge {
  height: 50px;
  width: auto;
  border-radius: 4px;
}

/* ===========================
   NEWS SECTION
=========================== */
.news {
  background: var(--white);
  padding: 60px 0 70px;
}

.news-explore {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 36px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img-wrap img { transform: scale(1.06); }

.news-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.news-excerpt {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 12px;
}

.news-more {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-top: auto;
}
.news-more:hover { color: var(--red); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter {
  background: var(--off-white);
  padding: 60px 0;
}
.newsletter-inner {
  max-width: 480px;
}
.newsletter-title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #1a1a1a;
}
.newsletter-sub {
  font-size: 13px;
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.newsletter-cities {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #333;
}
.newsletter-cities label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.newsletter-cities input[type="checkbox"] {
  accent-color: var(--red);
  width: 14px;
  height: 14px;
}
.nl-input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  background: transparent;
  padding: 10px 2px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #333;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--blue-dark); }
.nl-input::placeholder { color: #aaa; }

.nl-consent {
  font-size: 12px;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
}
.nl-consent a { color: var(--blue-dark); text-decoration: underline; }

.nl-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn-confirm {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-confirm:hover { background: var(--red-hover); }
.btn-cancel {
  background: transparent;
  color: var(--gray-text);
  border: 1px solid #bbb;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-cancel:hover { background: #e0e0e0; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #f9f9f9;
  border-top: 1px solid var(--gray-light);
  padding-top: 48px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light);
}

.footer-col-title {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray-text);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-pfr {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--gray-light);
}
.pfr-badge {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  border-radius: 2px;
}
.pfr-text {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
}

.footer-bottom {
  background: #1a1a1a;
  padding: 14px 0;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.03em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* ===========================
   STICKY BOTTOM BAR
=========================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: var(--bottom-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.bottom-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.bottom-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.lang-switcher:hover { background: rgba(0,0,0,0.05); }
.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: #333;
}
.lang-chevron { opacity: 0.55; }

.bottom-bar-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}
.bottom-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: color 0.2s;
}
.bottom-social-link:hover { color: var(--red); }

.bottom-bar-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #888;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.bottom-bar-close:hover { background: rgba(0,0,0,0.08); color: #333; }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: calc(var(--bottom-h) + 16px);
  right: 20px;
  z-index: 940;
  width: 38px;
  height: 38px;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 16px;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-mid); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .news-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { min-height: 70vh; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .whats-new { height: 200px; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
