/*
Theme Name:  Blue Mediterran
Theme URI:   https://www.bluemediterran.com/
Description: Prémium mediterrán stílusú téma a Blue Mediterran Apartmanháznak, Balatonfüred.
Version:     1.0.0
Author:      Blue Mediterran
Author URI:  https://www.bluemediterran.com/
Text Domain: blue-mediterran
License:     all rights reserved
Tags:        hotel, accommodation, responsive, custom-colors, full-width-template
*/

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

:root {
  --navy:       #0B2A4A;
  --navy-mid:   #0d3460;
  --turq:       #1B9AAA;
  --turq-light: #2ec4d6;
  --sand:       #F5E6C8;
  --sand-dark:  #e8d4a6;
  --gold:       #C8973A;
  --white:      #FDFAF5;
  --text:       #1a1a2e;
  --text-light: #5a6a7a;
  --green:      #2D7D4F;
  --yellow:     #e5b02f;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    4px;
  --shadow:    0 8px 40px rgba(11,42,74,0.12);
  --shadow-lg: 0 20px 60px rgba(11,42,74,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: rgb(247, 244, 239);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1      { transition-delay: 0.1s; }
.reveal-delay-2      { transition-delay: 0.2s; }
.reveal-delay-3      { transition-delay: 0.3s; }
.reveal-delay-4      { transition-delay: 0.4s; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(11,42,74,0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--turq-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--turq);
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--turq-light) !important; color: white !important; }

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  align-items: center;
}

.lang-switcher a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
}

.lang-switcher a.active,
.lang-switcher a:hover { color: var(--turq-light); }
.lang-switcher span    { color: rgba(255,255,255,0.25); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: calc(100vh - 150px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27,154,170,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(11,42,74,0.6) 0%, transparent 50%),
    linear-gradient(160deg, #0B2A4A 0%, #0d4a6e 35%, #1B6A7A 60%, #0B3A5A 100%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

/* Hero with custom image: bg layer shows the photo */
.hero.has-bg-image .hero-bg {
  background: var(--hero-image-url) center / cover no-repeat;
  animation: none;
}

/* Gradient overlay sits above the photo, opacity controlled via Customizer */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27,154,170,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(11,42,74,0.7) 0%, transparent 50%),
    linear-gradient(160deg, #0B2A4A 0%, #0d4a6e 35%, #1B6A7A 60%, #0B3A5A 100%);
  opacity: var(--hero-overlay-opacity, 0.65);
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(8deg) brightness(1.05); }
  100% { filter: hue-rotate(-5deg) brightness(0.95); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  overflow: hidden;
}

.hero-wave svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  animation: waveDrift 8s linear infinite;
}

.hero-wave svg:nth-child(2) {
  opacity: 0.4;
  animation-duration: 12s;
  animation-direction: reverse;
}

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

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
  animation: heroFadeIn 1.2s ease both;
}

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

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--turq-light);
  margin-bottom: 1.2rem;
  animation: heroFadeIn 1s 0.3s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  animation: heroFadeIn 1s 0.5s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--turq-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  animation: heroFadeIn 1s 0.7s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.9s ease both;
}

.btn-primary {
  background: var(--turq);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27,154,170,0.4);
}

.btn-primary:hover {
  background: var(--turq-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,154,170,0.5);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.9);
  color: white;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: heroScrollFadeIn 1s 1.4s ease both;
}

@keyframes heroScrollFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ─── SECTION SHARED ─── */
section { padding: 6rem 3rem; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turq);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(90deg, #040d1a 0%, #071830 40%, #0a2040 60%, #040d1a 100%);
  padding: 0;
  border-top: 1px solid rgba(27,154,170,0.2);
  border-bottom: 1px solid rgba(27,154,170,0.2);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,154,170,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.6rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.trust-item::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(27,154,170,0.3), transparent);
}

.trust-item:last-child::after { display: none; }



.trust-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.7rem;
  color: var(--turq);
  opacity: 0.9;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.trust-number-accent {
  color: var(--turq-light);
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.5);
}

.trust-gold-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  opacity: 0.6;
}

/* ─── PAGE INTRO (WP oldalszerkesztő tartalom) ─── */
.page-intro {
  background: rgb(247, 244, 239);
  padding: 3rem 3rem 0;
}

.page-intro-content {
  max-width: 100%;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.page-intro-content h1,
.page-intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Gold divider after every h1/h2 — matches .section-divider */
.page-intro-content h1::after,
.page-intro-content h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.page-intro-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}



.page-intro-content p { margin-bottom: 1rem; }

/* ─── SECTION RULE (divider between page-intro and properties) ─── */
.section-rule {
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.35;
  margin: 0 auto;
  max-width: 960px;
  width: calc(100% - 4rem);
}

/* ─── PROPERTIES ─── */
.properties {
  background: #f7f4ef;
  position: relative;
}

.properties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 2px 12px rgba(11,42,74,0.07); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,42,74,0.14);
}

/* Large watermark number */
.card-number {
  position: absolute;
  top: -0.6rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  display: none;
}

.card-blue   .card-number { color: rgba(27,154,170,0.08); }
.card-green  .card-number { color: rgba(45,125,79,0.08); }
.card-yellow .card-number { color: rgba(184,134,11,0.08); }

/* Top accent line */
.card-accent-line {
  height: 3px;
  width: 100%;
}

.card-blue   .card-accent-line { background: linear-gradient(90deg, var(--turq), var(--turq-light)); }
.card-green  .card-accent-line { background: linear-gradient(90deg, #1a6635, var(--green)); }
.card-yellow .card-accent-line { background: linear-gradient(90deg, #8a6400, var(--yellow)); }

.property-card-body {
  padding: 1.8rem 1.8rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-distance {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.card-blue   .card-distance { color: var(--turq); }
.card-green  .card-distance { color: var(--green); }
.card-yellow .card-distance { color: var(--yellow); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.card-image {
  margin: -0.4rem 0 1.4rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.property-card:hover .card-image img {
  transform: scale(1.04);
}

.property-amenities {
  list-style: none;
  margin-bottom: 1.8rem;
  flex: 1;
  border-top: 1px solid rgba(11,42,74,0.06);
  padding-top: 0.2rem;
}

.property-amenities li {
  font-size: 0.84rem;
  color: var(--text-light);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(11,42,74,0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* SVG checkmark via inline pseudo-element */
.property-amenities li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.card-blue  .property-amenities li::before { background-color: rgba(27,154,170,0.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%231B9AAA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.card-green .property-amenities li::before { background-color: rgba(45,125,79,0.12);  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%232D7D4F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.card-yellow .property-amenities li::before { background-color: rgba(184,134,11,0.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23B8860B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.btn-card {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.card-blue   .btn-card { background: var(--turq);   color: white; box-shadow: 0 4px 16px rgba(27,154,170,0.3); }
.card-green  .btn-card { background: var(--green);  color: white; box-shadow: 0 4px 16px rgba(45,125,79,0.3); }
.card-yellow .btn-card { background: var(--yellow); color: white; box-shadow: 0 4px 16px rgba(184,134,11,0.3); }

.card-blue   .btn-card:hover { background: var(--turq-light); box-shadow: 0 6px 24px rgba(27,154,170,0.45); }
.card-green  .btn-card:hover { background: #359960;           box-shadow: 0 6px 24px rgba(45,125,79,0.45); }
.card-yellow .btn-card:hover { background: #d4970d;           box-shadow: 0 6px 24px rgba(184,134,11,0.45); }

/* ─── AMENITIES ─── */
.amenities {
  background: #07192e;
  position: relative;
  overflow: hidden;
}

.amenities .section-label { color: var(--turq-light); }

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

.amenities .section-divider { background: var(--gold); }

/* Subtle glow */
.amenities::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27,154,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.amenity-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 1.8rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
  cursor: default;
}

.amenity-card:hover {
  background: rgba(27,154,170,0.06);
}

/* remove right border on last col */
.amenity-card:nth-child(2n) { border-right: none; }
/* remove bottom border on last row */
.amenity-card:nth-child(n+3) { border-bottom: none; }

.amenity-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--turq-light);
  margin-top: 2px;
}

.amenity-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-content { display: flex; flex-direction: column; gap: 0.3rem; }

.amenity-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.amenity-desc {
  font-size: 0.8rem;
  color: rgba(245,230,200,0.5);
  line-height: 1.55;
}

/* ─── BOOKING BAND ─── */
.booking-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3460 60%, #0a2640 100%);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27,154,170,0.12) 0%, transparent 70%);
}

.booking-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.booking-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.booking-band h2 em { font-style: italic; color: var(--sand); }

.booking-band p {
  font-size: 1rem;
  color: rgba(245,230,200,0.75);
  margin-bottom: 2.2rem;
  font-weight: 300;
}

/* ─── REVIEWS ─── */
.reviews-section {
  background: var(--white);
}

.reviews-section .section-title em {
  font-style: italic;
  color: var(--turq);
  font-family: var(--font-accent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 2px 16px rgba(11,42,74,0.06);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  font-size: 1.1rem;
}

.star-full  { color: var(--gold); }
.star-empty { color: #d8ccb4; }

.review-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.review-source {
  color: var(--text-light);
  opacity: 0.7;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid rgba(11,42,74,0.07);
}

.reviews-avg {
  font-weight: 600;
  color: var(--text);
}

.reviews-sep { opacity: 0.4; }

.reviews-cta {
  color: var(--turq);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.reviews-cta:hover { color: var(--navy); }

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .reviews-grid { max-width: 100%; }
}

/* ─── SOCIAL ─── */
.social-section {
  background: var(--navy);
}

.social-section .section-inner {
  text-align: center;
}

.social-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 3rem;
}

.social-section .section-label { color: var(--turq-light); }
.social-section .section-title { color: var(--white); }
.social-section .section-divider { margin: 1.5rem auto; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 0;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.social-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.social-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--social-color, var(--turq));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  opacity: 0.92;
}

.social-card-icon svg {
  width: 22px;
  height: 22px;
}

.social-card-body {
  flex: 1;
  min-width: 0;
}

.social-card-platform {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}

.social-card-handle {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.social-card:hover .social-card-arrow {
  color: var(--turq-light);
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT ─── */
.contact {
  background: #f7f4ef;
  padding-bottom: 0;
  padding: 3rem 0 0;
}

/* 3-column info cards row */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    border: 0;
    box-shadow: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;

}


.contact-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #071830, var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turq-light);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turq);
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.contact-card-value a {
  color: var(--navy);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.contact-card-value a:hover { color: var(--turq); }

.contact-hours {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 12px;
  padding: 1.4rem 2rem;
  border: 0;
  margin-bottom: 3rem;
}

.contact-hours-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #071830, var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-hours-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.contact-hours-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.contact-hours-value {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Map card */
.contact-map-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.contact-map {
  width: 100%;
  height: 380px;
  background:
    radial-gradient(circle at 50% 50%, rgba(27,154,170,0.15) 0%, transparent 55%),
    repeating-linear-gradient(0deg,  rgba(11,42,74,0.04) 0px, rgba(11,42,74,0.04) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(90deg, rgba(11,42,74,0.04) 0px, rgba(11,42,74,0.04) 1px, transparent 1px, transparent 50px),
    linear-gradient(160deg, #cde4ed 0%, #daeef5 50%, #c8dce6 100%);
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

.contact-map.has-embed {
  background: #e8eaed;
}

.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
  flex-wrap: wrap;
}

.contact-map-address-text {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 400;
}

.contact-map-btn {
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(11,42,74,0.2);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-map-btn:hover {
  background: var(--turq);
  box-shadow: 0 6px 20px rgba(27,154,170,0.4);
}

/* ─── FOOTER ─── */
footer {
  background: #060f1c;
  padding: 3rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.footer-logo span { color: var(--turq-light); }

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--turq-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ─── MOBILE NAV FULL-SCREEN ─── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,42,74,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

/* Top bar: logo + close button */
.nav-mobile-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

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

.nav-mobile-logo img {
  height: 40px;
  width: auto;
}

.nav-mobile-logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  letter-spacing: 0.02em;
}

.nav-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

.nav-mobile-close span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background: white;
  top: 50%;
  left: 50%;
}

.nav-mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Menu items */
.nav-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-links li:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-links .mobile-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 1.1rem 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-mobile-links .mobile-link:hover { color: var(--turq-light); }

/* FOGLALÁS CTA */
.mobile-link-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--turq-light) !important;
  text-decoration: none;
  padding: 0.6rem 0;
  margin-bottom: 0.5rem;
}

/* Language switcher */
.lang-switcher--mobile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.lang-switcher--mobile a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.lang-switcher--mobile a.active,
.lang-switcher--mobile a:hover { color: white; }

.lang-switcher--mobile span { color: rgba(255,255,255,0.2); }

.nav-overlay {
  display: none;
}

/* ─── WORDPRESS ADMIN BAR OFFSET ─── */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  section { padding: 4.5rem 1.5rem; }
  .trust-bar { padding: 1.5rem; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item::after { display: none; }
  .trust-item { border-bottom: 1px solid rgba(27,154,170,0.12); padding: 2rem 1.5rem; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(27,154,170,0.12); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

  .properties-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .properties-header { margin-bottom: 2.5rem; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card:nth-child(3n)   { border-right: 1px solid rgba(255,255,255,0.06); }
  .amenity-card:nth-child(2n)   { border-right: none; }
  .amenity-card:nth-child(n+5)  { border-bottom: none; }
  .amenity-card:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,0.06); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact-cards { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact-hours { max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact-map { height: 280px; }
  .contact-map-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card:nth-child(n)   { border-right: none; }
  .amenity-card:last-child     { border-bottom: none; }
  .amenity-card:nth-child(-n+5){ border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }

  .contact-cards { max-width: 100%; }
  .contact-hours { max-width: 100%; flex-direction: column; gap: 1rem; }
  .contact-hours-icon { flex-shrink: 0; }
  .contact-map { height: 240px; }
}

/* ─── STATIC PAGE (page.php) ─── */

/* Nav always visible on static pages (no hero image to float over) */
body.page:not(.home) .nav {
  background: rgba(11,42,74,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

/* Inline page header (replaces page-hero) */
.page-content-header {
  margin-bottom: 3rem;
}

.page-content-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turq);
  margin-bottom: 0.8rem;
}

.page-content-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

/* Content section */
.page-content-section {
  padding: 9rem 3rem 6rem;
}

.page-content-body {
  max-width: 100%;
}

/* h2 styled like section headings */
.page-content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin: 3rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(11,42,74,0.1);
}

.page-content-body h2:first-child {
  margin-top: 0;
}

.page-content-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--navy-mid);
  margin: 2rem 0 0.5rem;
}

.page-content-body p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.page-content-body ul,
.page-content-body ol {
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
  line-height: 1.85;
}

.page-content-body li {
  margin-bottom: 0.4rem;
}

/* gold accent bullet for unordered lists */
.page-content-body ul li::marker {
  color: var(--gold);
}

.page-content-body a {
  color: var(--turq);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content-body a:hover {
  color: var(--gold);
}

.page-content-body strong {
  color: var(--navy);
  font-weight: 600;
}

.page-content-body hr {
  border: none;
  border-top: 1px solid rgba(11,42,74,0.1);
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .page-content-section { padding: 3rem 1.5rem 4rem; }
}

/* ─── BOOKING PAGE (page-foglalas.php) ─── */
.booking-section {
  padding: 7rem 3rem 6rem;
  background: #f7f4ef;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* ── Form wrap ── */
.booking-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem;
}

.booking-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(11,42,74,0.1);
}

.booking-form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.booking-form-header p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Field rows ── */
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field label {
  /* font-family: var(--font-accent); */
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /* color: var(--turq); */
}

.req {
  color: var(--gold);
  font-weight: 700;
}

.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"],
.booking-field input[type="date"],
.booking-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #faf8f4;
  border: 1.5px solid rgba(11,42,74,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--turq);
  box-shadow: 0 0 0 3px rgba(27,154,170,0.12);
  background: #fff;
}

.booking-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Guest stepper ── */
.guest-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(11,42,74,0.15);
  border-radius: var(--radius);
  background: #faf8f4;
  overflow: hidden;
}

.guest-stepper input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  width: 100%;
  padding: 0.75rem 0;
  outline: none;
}

.guest-stepper input[type="number"]::-webkit-inner-spin-button,
.guest-stepper input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

.stepper-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  padding: 0.75rem 1.1rem;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: var(--turq);
  color: var(--white);
}

/* ── Room type cards ── */
.room-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.room-card {
  cursor: pointer;
  display: block;
}

.room-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.room-card-inner {
  border: 1.5px solid rgba(11,42,74,0.15);
  border-radius: var(--radius);
  padding: 1rem 0.9rem;
  background: #faf8f4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.room-card input:checked + .room-card-inner {
  border-color: var(--turq);
  background: rgba(27,154,170,0.05);
  box-shadow: 0 0 0 3px rgba(27,154,170,0.15);
}

.room-card:hover .room-card-inner {
  border-color: rgba(27,154,170,0.5);
}

.room-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.room-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.room-card-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--turq);
}

/* ── Consent checkbox ── */
.consent-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--turq);
  cursor: pointer;
}

.consent-label a {
  color: var(--turq);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Submit button — mirrors .btn-primary ── */
.booking-submit {
  display: block;
  width: 100%;
  background: var(--turq);
  color: white;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(27,154,170,0.4);
}

.booking-submit:hover {
  background: var(--turq-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,154,170,0.5);
}

/* ── Success / error notices ── */
.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.booking-notice svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  margin-top: 1px;
}

.booking-notice strong { display: block; margin-bottom: 0.2rem; }
.booking-notice p { font-size: 0.88rem; margin: 0; }

.booking-notice--success {
  background: rgba(45,125,79,0.08);
  border: 1px solid rgba(45,125,79,0.3);
  color: var(--green);
}

.booking-notice--error {
  background: rgba(200,40,40,0.06);
  border: 1px solid rgba(200,40,40,0.25);
  color: #c02020;
}

/* ── Contact Form 7 – booking page styling ── */
.booking-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
}

.booking-form-wrap .form-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 0;
}

.booking-form-wrap .col-12 {
  grid-column: 1 / -1;
}

.booking-form-wrap .col-6 {
  grid-column: span 1;
}

.booking-form-wrap .form-contact p {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}

.booking-form-wrap .form-contact p br {
  display: none;
}

.booking-form-wrap .form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.booking-form-wrap .wpcf7-form-control.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #faf8f4;
  border: 1.5px solid rgba(11,42,74,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  box-shadow: none;
}

.booking-form-wrap .wpcf7-form-control.form-control:focus {
  border-color: var(--turq);
  box-shadow: 0 0 0 3px rgba(27,154,170,0.12);
  background: #fff;
}

.booking-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 120px;
  rows: 5;
}

.booking-form-wrap select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b2a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.booking-form-wrap .wpcf7-form-control-wrap {
  display: block;
}

/* Checkbox (consent) */
.booking-form-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.booking-form-wrap .wpcf7-acceptance label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.booking-form-wrap .wpcf7-acceptance input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--turq);
  cursor: pointer;
}

/* Submit button */
.booking-form-wrap .wpcf7-submit {
  display: block;
  width: 100%;
  background: var(--turq);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(27,154,170,0.4);
}

.booking-form-wrap .wpcf7-submit:hover:not(:disabled) {
  background: var(--turq-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,154,170,0.5);
}

.booking-form-wrap .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.booking-form-wrap .wpcf7-spinner {
  display: none;
}

/* Validation errors */
.booking-form-wrap .wpcf7-not-valid {
  border-color: #c02020 !important;
}

.booking-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #c02020;
  margin-top: 0.25rem;
  display: block;
}

/* Response output (success / error message) */
.booking-form-wrap .wpcf7-response-output {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  border-width: 1px;
  border-style: solid;
}

.booking-form-wrap .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(45,125,79,0.08);
  border-color: rgba(45,125,79,0.3);
  color: #2d7d4f;
}

.booking-form-wrap .wpcf7-form.failed .wpcf7-response-output,
.booking-form-wrap .wpcf7-form.invalid .wpcf7-response-output,
.booking-form-wrap .wpcf7-form.spam .wpcf7-response-output {
  background: rgba(200,40,40,0.06);
  border-color: rgba(200,40,40,0.25);
  color: #c02020;
}

/* ── Sidebar ── */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.bsb-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.bsb-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  letter-spacing: 0.02em;
}

.bsb-card-header svg {
  width: 16px;
  height: 16px;
  stroke: var(--turq-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.bsb-list {
  list-style: none;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bsb-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}

.bsb-list a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.bsb-list a:hover { color: var(--turq); }

.bsb-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--turq);
}

.bsb-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.bsb-list--emoji .bsb-emoji {
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── Sidebar image card ── */
.bsb-image-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.bsb-image-wrap {
  position: relative;
  overflow: hidden;
}

.bsb-image-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.bsb-image-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
}

.bsb-image-body {
  padding: 1rem 1.2rem;
}

.bsb-image-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.bsb-image-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Phone CTA card — mirrors .booking-band style ── */
.bsb-phone-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3460 60%, #0a2640 100%);
  border-radius: 8px;
  padding: 1.4rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.bsb-phone-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 260px; height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27,154,170,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bsb-phone-card p {
  position: relative;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bsb-phone-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.bsb-phone-btn:hover {
  background: #b5832e;
  transform: translateY(-1px);
}

.bsb-phone-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .booking-section { padding: 3rem 1.5rem 4rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 1.8rem 1.4rem; }
  .booking-row { grid-template-columns: 1fr; gap: 0; }
  .room-type-grid { grid-template-columns: 1fr; }
  .booking-form-wrap .form-contact { grid-template-columns: 1fr; }
  .booking-form-wrap .col-6 { grid-column: 1 / -1; }
}

/* ─── PRICING PAGE ─── */
.pricing-section {
  background: var(--white);
  min-height: 100vh;
  padding: 7rem 2rem 5rem;
}

.pricing-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--turq);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.pricing-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--turq);
  font-family: var(--font-accent);
}

.pricing-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ── Table ── */
.pricing-table-wrap {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  /* box-shadow: 0 2px 16px rgba(0,0,0,0.06); */
}

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

.pricing-table thead tr {
  background: rgb(247, 244, 239);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-align: left;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  line-height: 1.5;
}

.pricing-table th:not(:first-child) {
  text-align: center;
}

.pricing-table tbody tr {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: #fdfaf5;
}

.pricing-season {
  padding: 1.8rem 1.5rem;
  vertical-align: middle;
}

.pricing-season strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.pricing-season span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  padding: 1.8rem 1.5rem;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── Info cards ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.04); */
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--turq);
  margin: 0 0 0.75rem;
}

.pricing-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.align-center { text-align: center; } 

/* ── CTA ── */
.pricing-cta {
  text-align: center;
}

.pricing-cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: white;
  background: var(--turq);
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: background 0.2s;
}

.pricing-cta-btn:hover {
  background: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .pricing-section { padding: 5rem 1.25rem 3.5rem; }

  .pricing-table-wrap { overflow-x: auto; }

  .pricing-table th,
  .pricing-table td { padding: 1rem; }

  .pricing-price { font-size: 1.25rem; }

  .pricing-cards { grid-template-columns: 1fr; }
}
