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

:root {
  --navy:  #0a1628;
  --navy2: #122040;
  --gold:  #c9a84c;
  --gold2: #e8c97a;
  --white: #ffffff;
  --light: #f5f0e8;
  --gray:  #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--navy);
  /* Safety net only — the layout is built not to overflow. clip (not hidden)
     keeps position: sticky working should it ever be used. */
  overflow-x: clip;
}

/* Keyboard focus has to be visible on both the navy and the light sections */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── NAVBAR ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ─── BURGER BUTTON ──────────────────────────── */
/* Drawn in CSS rather than with an icon font, so the bars can morph into
   an X and the control still works if the icon CDN fails. */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.2s;
}

.nav-toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: '';
  left: 0;
  transform: translateX(0);
}

.nav-toggle-bar::before { top: -8px; }
.nav-toggle-bar::after  { top: 8px; }

.nav-open .nav-toggle-bar {
  background: transparent;
}

.nav-open .nav-toggle-bar::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle-bar::after {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}

.nav-cta:hover { background: var(--gold2); }
.nav-cta::after { display: none !important; }

/* ─── PAGE HERO (interior pages) ────────────── */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .img-placeholder-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.55) 100%);
  z-index: 1;
}

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

.page-hero-content .hero-tag {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  /* svh tracks the visible area once a mobile address bar collapses;
     min() keeps the hero inside the screen in landscape. */
  height: 100svh;
  min-height: min(600px, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.35) 50%,
    rgba(10,22,40,0.72) 100%
  );
  z-index: 1;
}

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

.hero-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-welcome-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-welcome-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-tag {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  font-family: 'Lato', sans-serif;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 8px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
  letter-spacing: -1px;
}

.hero-title-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold2);
  margin-bottom: 24px;
  letter-spacing: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}

.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll svg { width: 18px; opacity: 0.6; }

/* ─── SECTION COMMON ─────────────────────────── */
/* Fluid padding scales smoothly instead of jumping at one breakpoint */
section { padding: clamp(56px, 8vw, 90px) clamp(20px, 5vw, 80px); }

.section-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* ─── ABOUT ──────────────────────────────────── */
#about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: clamp(240px, 45vw, 420px);
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-badge span { font-size: 16px; font-weight: 700; display: flex; gap: 4px; margin-bottom: 4px; }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.about-feature i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────── */
#services {
  background: var(--navy);
}

#services .section-title { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.service-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.service-icon {
  font-size: 34px;
  margin-bottom: 18px;
  display: block;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── POOL PRICES ────────────────────────────── */
#pool {
  background: var(--white);
}

.pool-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pool-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.pool-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.pool-hours i { color: var(--gold); }

.pool-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* Centres a standalone price table (on the home page it sits inside a
   two-column grid instead, which already constrains its width). */
/* Lets a cramped table scroll inside its own box instead of widening the page */
.price-wrap {
  max-width: 560px;
  margin: 0 auto;
  overflow-x: auto;
}

/* Prices and the safety notice side by side. Both children carry their own
   centring/width rules, which have to be released inside the grid. */
.pool-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.pool-info-grid .price-wrap,
.pool-info-grid .rooms-perk {
  max-width: none;
  margin: 0;
}

/* The notice sits next to a table, so it stretches to the same height and
   carries a larger icon — otherwise it reads as an afterthought beside it. */
.pool-info-grid .rooms-perk--notice {
  align-self: stretch;
  align-items: center;
  gap: 26px;
  padding: 32px 36px;
}

.pool-info-grid .rooms-perk--notice i {
  font-size: 46px;
  margin-top: 0;
}

.pool-info-grid .rooms-perk--notice p {
  font-size: 16px;
  line-height: 1.85;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
}

.price-table caption {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  text-align: left;
  margin-bottom: 16px;
  padding-bottom: 12px;
  caption-side: top;
  font-weight: 700;
}

.price-table tr {
  border-bottom: 1px solid #e8e0d0;
}

.price-table td {
  padding: 16px 12px;
  font-size: 14px;
  color: var(--navy);
}

.price-table td i {
  color: var(--gold);
  width: 18px;
  margin-right: 8px;
}

/* Capacity / conditions under a price label — indented to clear the icon so
   it reads as a footnote to the row rather than a second label. */
.price-table td small {
  display: block;
  margin: 4px 0 0 26px;
  font-size: 12px;
  color: var(--gray);
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
}

.price-table tr:last-child td:last-child {
  color: #2d9e5e;
}

/* The green above flags a free item — the pool table ends on „Безплатно“.
   Tables that end on a paid price have to put the gold accent back. */
.price-table--paid tr:last-child td:last-child {
  color: var(--gold);
}

.price-table tr:hover td { background: var(--light); }

/* ─── ROOMS ──────────────────────────────────── */
#rooms-intro {
  background: var(--light);
}

/* Centred intro paragraph under a section heading. Used on every interior
   page; --on-dark is for sections sitting on the navy background. */
.page-lead {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.9;
}

.page-lead--on-dark {
  max-width: 720px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.rooms-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* Three tiles need a wider container, otherwise each one is too cramped to
   hold its label on a single line. The 900px / 580px rules further down
   already take it back to two columns and then one. */
.rooms-stats--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}


.room-stat {
  background: var(--white);
  border: 1px solid #e8e0d0;
  padding: 36px 24px;
  text-align: center;
}

.room-stat i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.room-stat .room-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.room-stat .room-stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gray);
  text-transform: uppercase;
}

.rooms-perk {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
}

.rooms-perk i {
  font-size: 24px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.rooms-perk p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.rooms-perk strong {
  color: var(--navy);
}

/* Safety rule rather than a selling point — amber accent so it reads as a
   notice and does not blend in with the gold-accented blocks around it. */
.rooms-perk--notice {
  border-left-color: #c2761a;
  background: #fdf6ec;
}

.rooms-perk--notice i {
  color: #c2761a;
}

/* ─── ROOM CATEGORY HEADER ───────────────────────
   Opens each room category with its price and the two or three facts a guest
   actually decides on — capacity and terraces. The price gets its own panel
   rather than waiting in the price table at the bottom of the page.
   flex-wrap puts the price above the facts on a narrow screen, so this needs
   no breakpoint of its own. */
.room-cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  max-width: 900px;
  margin: 0 auto 48px;
  background: var(--light);
  border: 1px solid #e8e0d0;
  border-left: 3px solid var(--gold);
  padding: clamp(26px, 3vw, 36px) clamp(24px, 4vw, 44px);
}

/* On a light section the banner has to invert to stay readable */
.room-cat-head--on-light {
  background: var(--white);
}

.room-cat-price {
  flex-shrink: 0;
  text-align: center;
}

.room-cat-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.room-cat-unit {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

.room-cat-facts {
  list-style: none;
  display: grid;
  gap: 14px;
  /* min-width releases the implicit min-content floor, so a long fact wraps
     instead of pushing the banner wider than the screen */
  flex: 1 1 300px;
  min-width: 0;
}

.room-cat-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
}

.room-cat-facts i {
  color: var(--gold);
  font-size: 15px;
  width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Two opening-hours tiles side by side (.pool-hours on its own is a
   single inline tile). */
.hours-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hours-row .pool-hours {
  margin-bottom: 0;
}

.room-types {
  display: grid;
  /* min() lets the track shrink below its ideal width on narrow phones —
     a bare minmax(320px, …) would force the page to scroll sideways. */
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(20px, 3vw, 32px);
  max-width: 1100px;
  margin: 0 auto;
}

/* Fixed three-up row (auto-fit would stretch three cards oddly on wide screens) */
.room-types--three {
  grid-template-columns: repeat(3, 1fr);
}

/* Landscape image cards. A square works when the grid has three columns,
   but with only one or two wide cards it towers over the text below it. */
.room-types--landscape .room-type-img {
  aspect-ratio: 3 / 2;
}

/* Four cards on one row. The default auto-fit caps at three columns here,
   which would leave a lone card stranded on a second row. */
.room-types--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Card with no photo — icon + text only */
.room-type-card--text {
  text-align: center;
}

/* An amenity card is just an icon and a name — with no paragraph after it the
   heading's bottom margin would sit the text off-centre in the card. */
.room-type-card--text .room-type-body h3:last-child {
  margin-bottom: 0;
}

.room-type-card--text .card-icon {
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.room-type-card {
  background: var(--white);
  border: 1px solid #e8e0d0;
  overflow: hidden;
}

.room-type-img {
  aspect-ratio: 1 / 1;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  overflow: hidden;
  cursor: pointer;
}

.room-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-type-img:hover img {
  transform: scale(1.06);
}

.room-type-body {
  padding: 28px 30px;
}

.room-type-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px;
}

.room-type-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ─── GALLERY ────────────────────────────────── */
#gallery {
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:first-child img,
.gallery-item:nth-child(2) img {
  height: 420px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption span {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 86vw;
}

.lightbox img {
  max-width: 86vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

.lightbox figcaption {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  text-align: center;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 3px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lightbox-nav:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}

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

/* ─── CONTACT ────────────────────────────────── */
#contact {
  background: var(--navy2);
}

#contact .section-title { color: var(--white); }
#contact .section-tag { color: var(--gold); }

/* The map earns more width than the contact list beside it, and stretches
   to the same height so the two columns line up top and bottom */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info a,
.contact-info span {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─── CONTACT MAP ────────────────────────────── */
/* A flex column so the map itself can absorb the leftover height and end up
   exactly as tall as the contact list beside it. */
.contact-map {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-frame {
  flex: 1;
  min-height: 340px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  overflow: hidden;
  line-height: 0;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* The embed renders light; this tones it toward the navy section */
  filter: saturate(0.9);
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 16px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-map-link:hover { color: var(--gold2); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 56px 5% 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 44px;
}

/* Column heading with the gold rule underneath it */
.footer-col h3 {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.footer-logo-mark {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
  max-width: 320px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-links a i {
  color: var(--gold);
  font-size: 10px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact {
  gap: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact i {
  color: var(--gold);
  font-size: 14px;
  width: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ─── IMAGE PLACEHOLDER (photo not uploaded yet) ── */
/* Generic wrapper — sizing comes from the context it is used in
   (.page-hero fills the banner, .room-type-img keeps a square ratio),
   so no height here: it would override those rules further up the file. */
.img-placeholder-wrap {
  position: relative;
  width: 100%;
}

.img-placeholder-wrap.img-missing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light);
  color: var(--gray);
  text-align: center;
  padding: 12px;
}

.img-placeholder-wrap.img-missing i {
  font-size: 26px;
  color: var(--gold);
}

.img-placeholder-wrap.img-missing span {
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
/* ─── BREAKPOINTS ────────────────────────────────
   1100px  широките решетки се свиват (4 → 2 колони)
    900px  таблет: менюто става бургер, две колони → една
    580px  телефон: всичко на една колона
   Извън тях размерите се движат плавно с clamp().
   ─────────────────────────────────────────────── */

@media (max-width: 1100px) {
  /* Four narrow cards on a laptop screen read as a squeezed row */
  .room-types--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .about-grid,
  .pool-wrap,
  .pool-info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-badge { right: 8px; bottom: 8px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item img { height: 240px; }
  .gallery-item:first-child img { height: 300px; }

  /* Stacked under the contact list — a tall map would push the page down */
  .contact-map-frame { min-height: 320px; }

  /* ── Mobile menu ── */
  .nav-toggle { display: block; }

  /* Hidden with visibility, not display, so the panel can animate and so
     focus never lands on an off-screen link. */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 5% 20px;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Full-width rows with a comfortable touch target */
  .nav-links li { width: 100%; }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* The sliding underline makes no sense in a stacked list */
  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 14px;
    border-bottom: none;
    padding: 14px 22px;
  }

  /* Scrolling behind an open menu is disorienting */
  body.menu-open { overflow: hidden; }

  .rooms-stats { grid-template-columns: 1fr 1fr; }

  .room-types--three { grid-template-columns: 1fr; }
  /* --four already dropped to two columns at 1100px */

  /* Brand blurb takes the full width, the two link columns share the row */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 580px) {
  .rooms-stats { grid-template-columns: 1fr; }

  /* Long labels next to a nowrap price squeeze the row too tightly */
  .price-table td { padding: 14px 6px; }
  .price-table td:last-child { white-space: normal; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item img, .gallery-item:first-child img { height: 260px; }


  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .rooms-perk { flex-direction: column; }
  .room-types--four { grid-template-columns: 1fr; }

  .lightbox-nav { width: 44px; height: 44px; font-size: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox img { max-width: 76vw; }
}

/* ─── REDUCED MOTION ─────────────────────────────
   .reveal starts at opacity 0 and is only made visible by a transition,
   so switching animations off has to also make that content visible —
   otherwise the page would render blank for these users.
   ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
