/* ==============================
   VELARIS BOUTIQUE HOTEL
   Palette: Forest Green + Warm Gold + Deep Night
   ============================== */

:root {
  --bg-deepest: #141414;
  --bg-dark: #1b1b1b;
  --bg-mid: #242424;
  --bg-card: #141414;

  --gold: #8a5c2e;
  --gold-light: #f0dece;
  --gold-pale: #ecb077;
  --gold-dim: rgba(255, 128, 0, 0.2);

  --green: #4a6741;
  --green-light: #5e8254;
  --green-dim: rgba(74, 103, 65, 0.3);

  --cream: #f3ca95;
  --cream-muted: rgba(255, 174, 69, 0.55);
  --cream-faint: rgba(250, 142, 0, 0.28);

  --nav-h: 70px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deepest);
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.container {
  width: min(88%, 1280px);
  margin-inline: auto;
}

.page {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(var(--nav-h) + 90px) 100px;
}

/* ==============================
   NAVIGATION
   ============================== */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(244, 238, 224, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(138, 92, 46, 0.15);
  transition:
    height 0.4s,
    background 0.4s,
    box-shadow 0.4s;
}
.main-nav.scrolled {
  height: 58px;
  background: rgba(244, 238, 224, 1);
  box-shadow: 0 1px 28px rgba(44, 31, 14, 0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(88%, 1280px);
  margin-inline: auto;
}
.nav-logo img {
  height: 50px;
  width: auto;
  /* Logo açık arka planda — filter yok, doğal görünür */
}
.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 31, 14, 0.6);
  cursor: pointer;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4eee0;
  background: var(--gold);
  padding: 9px 22px;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(44, 31, 14, 0.7);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(244, 238, 224, 0.99);
  border-top: 1px solid rgba(138, 92, 46, 0.15);
  text-align: center;
}
.mobile-menu .nav-link {
  display: block;
  padding: 15px 0;
  font-size: 0.8rem;
}
.mobile-menu.open {
  display: flex;
}

/* ==============================
   HERO
   ============================== */
.hero-section {
  flex-direction: column;
  gap: 0;
  padding-block: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center 35%;
  transition: transform 10s ease-out;
  z-index: 0;
}
.hero-section:hover .hero-bg {
  transform: scale(1.035);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(11, 17, 13, 0.25) 0%,
    rgba(11, 17, 13, 0.52) 45%,
    rgba(11, 17, 13, 0.84) 100%
  );
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(15, 30, 18, 0.5), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hotel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.hotel-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 44px;
}
.hero-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin-bottom: 28px;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}
.hero-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(196, 146, 58, 0.45);
  padding: 14px 38px;
  transition:
    background 0.35s,
    border-color 0.35s,
    color 0.35s;
}
.hero-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deepest);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

/* ==============================
   SECTION HEADER
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}
.section-header.light .section-eyebrow {
  color: var(--gold-pale);
}
.section-header.light .section-title {
  color: var(--cream);
}

/* ==============================
   FEATURES
   ============================== */
.features-section {
  background: var(--bg-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}
.feat-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feat-card:nth-child(2) {
  transition-delay: 0.1s;
}
.feat-card:nth-child(3) {
  transition-delay: 0.2s;
}
.feat-card:nth-child(4) {
  transition-delay: 0.08s;
}
.feat-card:nth-child(5) {
  transition-delay: 0.16s;
}
.feat-card:nth-child(6) {
  transition-delay: 0.24s;
}
.feat-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}
.feat-img-wrap img {
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feat-card:hover .feat-img-wrap img {
  transform: scale(1.06);
}
.feat-num {
  display: none;
}
/* Green accent on hover */
.feat-img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green-light);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}
.feat-card:hover .feat-img-wrap::after {
  transform: scaleY(1);
}
.feat-body h3 {
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.feat-body p {
  font-size: 0.84rem;
  color: var(--cream-muted);
  line-height: 1.78;
}

/* ==============================
   ROOMS
   ============================== */
.rooms-section {
  background: var(--bg-deepest);
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 28px;
  align-items: start;
}
.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.room-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.room-card:nth-child(2) {
  transition-delay: 0.14s;
}
.room-card:nth-child(3) {
  transition-delay: 0.28s;
}
.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-deepest);
  padding: 5px 13px;
}
.room-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}
.room-card.featured .room-img-wrap {
  aspect-ratio: 2 / 3;
  border-color: rgba(196, 146, 58, 0.45);
}
.room-img-wrap img {
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-card:hover .room-img-wrap img {
  transform: scale(1.06);
}
.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 13, 0.58);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 34px;
  opacity: 0;
  transition: opacity 0.4s;
}
.room-card:hover .room-overlay {
  opacity: 1;
}
.room-cta {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-deepest);
  background: var(--gold);
  padding: 12px 30px;
  transition: background 0.3s;
}
.room-cta:hover {
  background: var(--gold-light);
}
.room-info {
  padding: 20px 2px 12px;
  border-bottom: 1px solid var(--gold-dim);
}
.room-info h3 {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.room-info p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.room-meta {
  display: flex;
  gap: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ==============================
   LOCATION MAP
   ============================== */
.location-section {
  background: var(--bg-deepest);
  padding-block: 0;
  min-height: auto;
  display: block;
}
.location-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 580px;
}

/* Sol metin */
.location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px min(8vw, 120px);
  background: var(--bg-mid);
  border-right: 1px solid var(--gold-dim);
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.location-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.location-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0;
}
.location-title em {
  color: var(--gold-light);
  font-style: italic;
}
.location-divider {
  width: 42px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 28px 0;
}
.location-desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 32px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--cream-muted);
}
.loc-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
  letter-spacing: 0;
}
.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 6px;
  width: fit-content;
  transition:
    color 0.3s,
    border-color 0.3s,
    gap 0.3s;
  text-decoration: none;
}
.location-cta:hover {
  color: var(--gold-pale);
  border-color: var(--gold-light);
  gap: 16px;
}
.loc-arrow {
  transition: transform 0.3s;
}
.location-cta:hover .loc-arrow {
  transform: translateX(4px);
}

/* Sağ harita */
.location-map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.map-frame {
  position: relative;
  flex: 1;
  min-height: 520px;
  overflow: hidden;
}
#velaris-map {
  width: 100%;
  height: 100%;
  /* Sepia + düşük doygunluk → vintage atlas hissi */
  filter: sepia(0.55) saturate(0.55) brightness(0.88) contrast(1.1);
}
/* Üstten alta altın-krem vignette */
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 20, 20, 0.38) 0%, transparent 22%),
    linear-gradient(to bottom, rgba(20, 20, 20, 0.22) 0%, transparent 30%),
    linear-gradient(to top, rgba(20, 20, 20, 0.22) 0%, transparent 30%);
  z-index: 10;
  pointer-events: none;
}
/* İnce altın çerçeve */
.map-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196, 146, 58, 0.22);
  z-index: 11;
  pointer-events: none;
}
/* Tüm haritayı tıklanabilir yapan şeffaf overlay */
.map-click-shield {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: pointer;
}
.map-hint {
  background: var(--bg-deepest);
  border-top: 1px solid var(--gold-dim);
  padding: 10px 20px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-align: center;
}

/* Leaflet tile attribution gizle (lisans uyumlu) */
.leaflet-control-attribution {
  display: none !important;
}

/* ── Özel PIN marker ── */
.velaris-pin {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-ring {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(196, 146, 58, 0.5);
  animation: pinPulse 2.8s ease-in-out infinite;
}
.pin-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(196, 146, 58, 0.25);
}
@keyframes pinPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
.pin-core {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 3px rgba(196, 146, 58, 0.25),
    0 0 12px rgba(196, 146, 58, 0.5);
}
.pin-label {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.68rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: #c4923a;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 860px) {
  .location-split {
    grid-template-columns: 1fr;
  }
  .location-text {
    padding: 56px 32px;
  }
  .map-frame {
    min-height: 340px;
  }
}

/* ==============================
   BOOKING
   ============================== */
.booking-section {
  flex-direction: column;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/booking.jpg");
  background-size: cover;
  background-position: center 55%;
  filter: brightness(0.22) saturate(0.8);
  z-index: 0;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 13, 0.65);
  z-index: 1;
}
.booking-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.booking-widget-wrap {
  max-width: 680px;
  margin-inline: auto;
  border: 1px solid rgba(138, 92, 46, 0.28);
  border-top: 2px solid var(--gold);
  background: rgba(240, 233, 217, 0.88);
  backdrop-filter: blur(14px);
  padding: 56px 48px 52px;
}
.elektra-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.elektra-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.loader {
  border: 1px solid rgba(44, 31, 14, 0.1);
  border-top: 1px solid var(--gold);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  animation: spin 1.3s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.elektra-sub {
  font-size: 0.78rem;
  color: var(--cream-muted);
}
.booking-contact {
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--cream-muted);
}
.booking-contact a {
  color: var(--gold-light);
  transition: color 0.3s;
}
.booking-contact a:hover {
  color: var(--gold-pale);
}

/* ==============================
   FOOTER
   ============================== */
.main-footer {
  background: var(--bg-deepest);
  border-top: 1px solid rgba(196, 146, 58, 0.25);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: min(88%, 1280px);
  margin-inline: auto;
  padding-block: 24px;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 5px;
}
.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(196, 146, 58, 0.5);
  font-family: "Cormorant Garamond", serif;
}
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(196, 146, 58, 0.65);
  margin-bottom: 8px;
}
.footer-col p {
  font-size: 0.72rem;
  color: rgba(240, 233, 217, 0.38);
  margin-bottom: 3px;
}
.footer-col a,
.footer-link {
  color: rgba(240, 233, 217, 0.38);
  cursor: pointer;
  transition: color 0.3s;
}
.footer-col a:hover,
.footer-link:hover {
  color: rgba(196, 146, 58, 0.9);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  padding-inline: min(6%, 80px);
  border-top: 1px solid rgba(240, 233, 217, 0.04);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  color: rgba(240, 233, 217, 0.15);
  text-transform: uppercase;
}
.footer-credit-logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.28;
  transition: opacity 0.3s;
  display: block;
}
.footer-credit-logo:hover img {
  opacity: 0.6;
}
/* ==============================
   ROOM SLIDESHOW
   ============================== */
.room-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.room-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
}
.room-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(11, 17, 13, 0.52);
  color: var(--gold-light);
  border: 1px solid rgba(196, 146, 58, 0.3);
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.3s;
}
.room-img-wrap:hover .slide-btn {
  opacity: 1;
}
/* Mobilde butonlar her zaman görünsün */
@media (max-width: 900px) {
  .slide-btn {
    opacity: 0.8;
  }
}
.slide-prev {
  left: 10px;
}
.slide-next {
  right: 10px;
}
.slide-btn:hover {
  background: rgba(138, 92, 46, 0.7);
}
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 222, 206, 0.35);
  border: 1px solid rgba(196, 146, 58, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: var(--gold-light);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .room-card.featured .room-img-wrap {
    aspect-ratio: 3/4;
  }
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 55%;
    justify-self: center;
  }
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .features-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  .intro-stat {
    padding-inline: 22px;
  }
  .footer-top {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    gap: 28px;
  }
  .booking-widget-wrap {
    padding: 36px 22px 34px;
  }
  .hotel-title {
    letter-spacing: 0.05em;
  }
  .page {
    padding-block: calc(var(--nav-h) + 60px) 80px;
  }
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(44, 31, 14, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
}
.lang-sep {
  font-size: 0.55rem;
  color: rgba(44, 31, 14, 0.25);
}
.mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--gold-dim);
}
.mobile-lang .lang-btn {
  color: rgba(44, 31, 14, 0.6);
}
