/*
Theme Name: Psathaki
Theme URI: https://psathaki.gr
Author: Differend
Description: Custom theme for Psathaki @ Kimolos Island
Version: 1.1.1
Text Domain: psathaki
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg:        #F4F5F3;
  --color-text:      #242D3E;
  --color-muted:     #606375;
  --color-sidebar:   #A7B1C7;
  --color-white:     #FFFFFF;
  --color-border:    #D8D9D7;

  --font-heading:    'Caudex', Georgia, serif;
  --font-body:       'Poppins', sans-serif;

  --header-height:   100px;
  --container-width: 1280px;
  --section-gap:     100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 6.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
h4 { font-size: 1.5rem; }

p { line-height: 1.8; color: var(--color-text); }

/* Section label (e.g. "ABOUT US", "FEATURED ROOMS") */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section {
  padding-block: var(--section-gap);
}

.section--tight {
  padding-block: 3rem;
}

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

/* ============================================================
   SIDEBAR ROTATED TEXT
   ============================================================ */
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.sidebar-text {
  position: fixed;
  top: 50%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-sidebar);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.sidebar-text--left {
  left: 1.5rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
}

.sidebar-text--right {
  right: 1.5rem;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border: none;
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

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

.btn--white {
  background: var(--color-white);
  color: var(--color-text);
}

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

.btn--solid-white {
  background: var(--color-white);
  border: none;
  color: var(--color-text);
}

.btn--solid-white:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 2rem;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s ease;
}

.site-header.is-hero {
  height: 130px;
}

.site-header.is-scrolled {
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-eu-logos {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.35);
}

.header-eu-logos img {
  height: 48px;
  width: auto;
}

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

.site-logo img {
  height: 70px;
  width: auto;
  margin-inline: auto;
  transition: height 0.4s ease;
}

/* Bigger logo on hero (homepage, before scroll) */
.site-header.is-hero .site-logo img {
  height: 115px;
}

/* Dual-logo swap: dark logo shown by default; light logo shown when header is transparent over hero */
.logo--light { display: none; }
.site-header.is-hero .logo--dark  { display: none; }
.site-header.is-hero .logo--light { display: block; }

/* Footer logo */
.footer-logo__img {
  height: 60px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lang-switcher a.active,
.lang-switcher a:hover { opacity: 1; }

.lang-switcher .lang-flag {
  width: 20px;
  height: auto;
}

/* Menu trigger */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  padding: 0;
  outline: none;
}

.menu-trigger:focus-visible {
  outline: 2px solid var(--color-sidebar);
  outline-offset: 4px;
}

.menu-trigger__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Header text white when over hero */
.site-header.is-hero .menu-trigger,
.site-header.is-hero .lang-switcher a { color: var(--color-white); }

.site-header.is-hero .lang-switcher a { opacity: 0.8; }
.site-header.is-hero .lang-switcher a.active { opacity: 1; }

/* ============================================================
   NAVIGATION OVERLAY
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__header {
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 2rem;
  flex-shrink: 0;
}

.nav-overlay__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.nav-overlay__close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  outline: none;
}

.nav-overlay__close:focus-visible {
  outline: 2px solid var(--color-sidebar);
  outline-offset: 4px;
}

.nav-overlay__close svg {
  width: 18px;
  height: 18px;
}

.nav-overlay__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 2rem 2rem;
  overflow: hidden;
}

.nav-overlay__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-height: 0;
}

.nav-overlay__item:first-child {
  grid-row: span 2;
}

.nav-overlay__img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.nav-overlay__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nav-overlay__item:hover .nav-overlay__item-img {
  transform: scale(1.04);
}

.nav-overlay__item-label {
  padding: 0.5rem 0 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-text);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}

.hero__bg.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.35) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  padding-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 5rem);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--color-white);
  opacity: 0.7;
}

.hero__scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.about-section__body {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 5fr 7fr;
  column-gap: 5rem;
  margin-top: 3rem;
  align-items: center;
}

.about-photos__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}


/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.room-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.room-card__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-card__meta {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.room-card__meta strong {
  font-weight: 700;
}

.room-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.room-card__link {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.rooms-section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Rooms list page (alternating image/text) */
.rooms-list__item {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: center;
  padding-block: 4rem;
  position: relative;
}

.rooms-list__stretched-link {
  position: absolute;
  inset: 0;
}

.rooms-list__item:hover .rooms-list__img {
  transform: scale(1.02);
}

.rooms-list__media {
  overflow: hidden;
}

.rooms-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.rooms-list__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.rooms-list__name a {
  color: inherit;
  text-decoration: none;
}

.rooms-list__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin: 0.3rem 0;
  color: var(--color-muted);
}

.rooms-list__meta strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.rooms-list__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-block: 1.5rem;
  line-height: 1.8;
}

/* ============================================================
   AMENITIES / SERVICES
   ============================================================ */
.amenities-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.amenity-item img,
.amenity-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.65;
}

.purespace-note {
  max-width: 500px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.purespace-note p {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.purespace-note ul {
  font-size: 0.8125rem;
  color: var(--color-muted);
  list-style: disc;
  text-align: left;
  display: inline-block;
}

/* ============================================================
   EXPERIENCES SECTION
   ============================================================ */
.experiences-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.experiences-grid > *:nth-child(even) {
  margin-top: 3rem;
}

.experience-card {
  position: relative;
}

.experience-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.experience-card__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.experience-card__link {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section__header {
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-booking-badge {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.review-card {
  background: var(--color-white);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.review-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #003580;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px 4px 4px 0;
  margin-bottom: 0.75rem;
}

.review-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.review-card__body {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.review-card__meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-sidebar);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6rem;
  align-items: center;
}

.btn--block {
  width: 100%;
}

.contact-form__heading { margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-text);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* Field-level error state */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #c0392b !important;
}

.field-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.2rem;
}

/* Global form result message */
.form-message {
  display: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 2px;
  margin-top: 1rem;
}

.form-message--ok  { background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; }
.form-message--err { background: #fdf3f2; color: #c0392b; border: 1px solid #f5c6c2; }

.phone-input {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.phone-input input { border-left: none; }

.phone-code-select {
  appearance: none;
  background-color: var(--color-white, #fff);
  border: 1px solid var(--color-border, #d4cfc8);
  border-right: none;
  padding: 0 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  height: 100%;
}

.contact-info__phones {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.contact-info__phones a {
  display: block;
  color: var(--color-text);
}

.contact-info__detail {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.gallery-masonry {
  columns: 2;
  column-gap: 1.25rem;
}

.gallery-masonry__img {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }

.gallery-grid__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding-block: 3rem 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.footer-info__item svg { width: 16px; flex-shrink: 0; margin-top: 2px; }

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

.footer-logo img {
  height: 80px;
  width: auto;
  margin-inline: auto;
}

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

.footer-social__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.footer-social__instagram-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-social__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 0.75rem;
  max-width: 340px;
  margin-inline: auto;
}

.footer-social__grid-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.footer-social__follow-label {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.footer-social__icons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.footer-social__icons a svg {
  width: 26px;
  height: 26px;
  fill: var(--color-muted);
  transition: fill 0.2s;
  display: block;
}

.footer-social__icons a:hover svg { fill: var(--color-text); }

/* ── WhatsApp floating widget ────────────────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.wa-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

.wa-trigger__icon--close { display: none; }
.wa-trigger.is-open .wa-trigger__icon--open  { display: none; }
.wa-trigger.is-open .wa-trigger__icon--close { display: block; }

.wa-popup {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #fff;
  animation: waSlideIn 0.22s ease;
}
@keyframes waSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wa-popup__header {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.wa-popup__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wa-popup__name {
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}
.wa-popup__status {
  color: #888;
  font-size: 0.75rem;
}
.wa-popup__close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.wa-popup__close:hover { color: #555; }

.wa-popup__body {
  background: #f5f5f5;
  padding: 20px 16px;
  min-height: 100px;
}
.wa-popup__bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  max-width: 88%;
  white-space: pre-line;
}

.wa-popup__footer {
  padding: 10px 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}
.wa-popup__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: #333;
  background: transparent;
  padding: 6px 0;
}
.wa-popup__input::placeholder { color: #aaa; }
.wa-popup__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}
.wa-popup__send:hover { background: #1ebe5d; }

/* Hide reCAPTCHA badge — legal notice shown in contact form instead */
.grecaptcha-badge { visibility: hidden !important; }

.form-group--consent { margin-bottom: 1rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-text);
  cursor: pointer;
}
.consent-label a { color: var(--color-muted); text-decoration: underline; }
.form-group--consent.has-error .consent-label { color: #c0392b; }

.recaptcha-badge-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 6px 10px 6px 8px;
  align-self: center;
}
.recaptcha-badge-inline__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.recaptcha-badge-inline__text span:first-child {
  font-size: 0.65rem;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.recaptcha-badge-inline__text span:last-child {
  font-size: 0.65rem;
  color: #999;
}
.recaptcha-badge-inline__text a {
  color: #4A90D9;
  text-decoration: none;
}
.recaptcha-badge-inline__text a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bottom__links {
  display: flex;
  gap: 2rem;
}

.footer-bottom a:hover { color: var(--color-text); }

.footer-credit {
  font-size: 0.75rem;
  color: var(--color-sidebar);
  margin: 0;
}

.footer-credit a { color: var(--color-text); font-weight: 500; }

/* ============================================================
   PAGE.PHP — Legal pages (Privacy Policy, Terms of Use)
   ============================================================ */
.entry-content p,
.entry-content li { font-size: 16px !important; line-height: 1.75 !important; }
.entry-content h2 { font-size: 1.1rem; font-weight: 600; margin-top: 2rem; margin-bottom: 0.5rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.room-detail__hero-single {
  width: 100%;
  line-height: 0;
}

.room-detail__hero-single-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.room-detail__hero-placeholder--full {
  width: 100%;
  height: 55vh;
  background: var(--color-bg-alt, #f0ede8);
  display: block;
}

.room-detail__hero-placeholder {
  background: var(--color-bg-alt, #f0ede8);
  width: 100%;
  height: 100%;
}

.room-detail__content {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  padding-block: 3rem 0;
}

.room-detail__about-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.room-detail__specs {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.room-detail__gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.room-detail__gallery-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.room-detail__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.room-detail__gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.room-detail__gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt, #f0ede8);
}

/* ============================================================
   OUR COMPLEX PAGE
   ============================================================ */
.complex-hero {
  margin-top: var(--header-height);
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}

.complex-text-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
}

.complex-text-media.reverse { direction: rtl; }
.complex-text-media.reverse > * { direction: ltr; }

.complex-text-media__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.location-map {
  width: 100%;
  height: 450px;
  border: none;
}

/* Rooms listing: alternating reverse layout */
.rooms-list__item--reverse {
  direction: rtl;
}
.rooms-list__item--reverse > * {
  direction: ltr;
}

/* Room detail intro text */
.room-detail__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

/* Room gallery – click to open lightbox */
.room-gallery-item { display: block; overflow: hidden; }
.room-gallery-item:hover .room-detail__gallery-img { transform: scale(1.03); }

/* ── Lightbox ──────────────────────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#lightbox.is-open { display: flex; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: zoom-out;
}

.lb-img {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.lb-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 100%);
}

.lb-counter {
  font-size: 0.85rem;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.05em;
  margin-right: auto;
}

.lb-close,
.lb-fullscreen,
.lb-prev,
.lb-next {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
  opacity: 0.75;
}
.lb-close:hover,
.lb-fullscreen:hover,
.lb-prev:hover,
.lb-next:hover { opacity: 1; }

.lb-close {
  position: relative;
  font-size: 2rem;
  padding: 0.1rem 0.4rem;
}

.lb-fullscreen {
  position: relative;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

.lb-prev,
.lb-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  padding: 0.5rem 1rem;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.room-detail__gallery-img { transition: transform 0.4s ease; }

/* Room prev/next nav */
.room-nav { border-top: 1px solid var(--color-border); }
.room-nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.room-nav__link:hover { color: var(--color-text); }

/* Rooms listing intro */
.rooms-intro {
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.8;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 1rem;
  text-align: center;
}

/* Simple centered heading (no bg image) — Gallery, Location, etc. */
.page-heading {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 2rem;
  text-align: center;
}

.page-heading h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-heading + .section {
  padding-top: 1rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.breadcrumb a:hover { color: var(--color-text); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid          { grid-template-columns: 1fr; }
  .experiences-grid    { grid-template-columns: repeat(2, 1fr); }
  .nav-overlay__grid   { grid-template-columns: repeat(2, 1fr); }
  .nav-overlay__item:first-child { grid-row: span 1; }
  .amenities-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 60px;
    --header-height: 72px;
  }

  .site-header           { padding-inline: 1rem; }
  .header-eu-logos       { display: none; }

  .sidebar-text          { display: none; }

  .contact-section       { grid-template-columns: 1fr; }
  .footer-inner          { grid-template-columns: 1fr; text-align: center; }
  .footer-info__item     { justify-content: center; }
  .footer-social         { text-align: center; }
  .footer-social__grid   { justify-content: center; margin-right: auto; }
  .footer-social__ig-link { justify-content: center; }
  .footer-social__icons  { justify-content: center; }

  .about-photos          { grid-template-columns: 1fr; }
  .experiences-grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider        { grid-template-columns: 1fr; }
  .nav-overlay__grid     { grid-template-columns: 1fr 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .complex-text-media    { grid-template-columns: 1fr; }
  .rooms-list__item      { grid-template-columns: 1fr; }
  .room-detail__hero-single-img { max-height: 45vh; }
  .room-detail__gallery  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .experiences-grid  { grid-template-columns: 1fr; }
  .gallery-masonry   { columns: 1; }
}

/* ============================================================
   PAGE HERO — IMAGE VARIANT (inner pages with hero photo)
   ============================================================ */
.page-hero--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.page-hero--short.page-hero--img { min-height: 42vh; }

.page-hero__overlay {
  display: none;
}

.page-hero--img .page-hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,45,62,0.65) 0%, rgba(36,45,62,0.25) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 3rem;
  width: 100%;
}

.page-hero--img .page-hero__content h1,
.page-hero--img .page-hero__content .section-label { color: #fff; }

.section-label--light { color: rgba(255,255,255,0.75); }

/* ============================================================
   OUR COMPLEX — ALTERNATING SECTIONS
   ============================================================ */
.complex-intro {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.85;
}

.complex-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 3rem;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.complex-section--reverse { direction: rtl; }
.complex-section--reverse > * { direction: ltr; }

.complex-section__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.complex-section__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.complex-section__text p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.85;
}

.complex-photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  line-height: 0;
}

.complex-photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  line-height: 0;
  margin-top: 6px;
}

.complex-photo-grid-2 img,
.complex-photo-grid-4 img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FULL GALLERY PAGE
   ============================================================ */
.full-gallery {
  columns: 3;
  column-gap: 1rem;
  padding-inline: 2rem;
  max-width: var(--container-width);
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--color-border);
  break-inside: avoid;
  margin-bottom: 1rem;
}

.gallery-item__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,45,62,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}

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

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.location-map-section { line-height: 0; }

.location-map { width: 100%; border: none; }

.location-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.location-way__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-sidebar);
}

.location-way h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.location-way p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.location-address__line {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
  line-height: 1.7;
}

/* ============================================================
   LOCATION — alternating image/text sections
   ============================================================ */
.location-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}

.location-hero-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-hero-placeholder span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.location-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}

.location-section--reverse {
  grid-template-columns: 7fr 5fr;
}

.location-section__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.location-section__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-border);
}

.location-section__text p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.85;
  text-align: justify;
}

.location-map {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ============================================================
   ORGANIZE YOUR TRIP — article content
   ============================================================ */
.trip-article {
  max-width: 820px;
  margin-inline: auto;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.85;
}

.trip-article h2,
.trip-article h3,
.trip-article h4 {
  color: var(--color-text);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.trip-article p { margin-bottom: 1em; }

.trip-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1em;
}

.trip-article ul li { margin-bottom: 0.35rem; }

.trip-article a { text-decoration: underline; color: #2563eb; }

/* ============================================================
   ORGANIZE YOUR TRIP — TIPS (legacy, kept for fallback)
   ============================================================ */
.trip-intro {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

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

.trip-tip {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.trip-tip__number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  color: var(--color-border);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}

.trip-tip__body h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.trip-tip__body p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ============================================================
   SINGLE POST (Experiences)
   ============================================================ */
/* Hide Elementor's own rotated sidebar labels — header.php provides these globally */
.post-single__content .elementor-element.e-transform { display: none !important; }

.post-single__hero-img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.post-single__content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
}

.post-single__content p { margin-bottom: 1em; font-size: 16px !important; }

/* ── Experience post body — clean HTML layout ────────────────────────────── */
.post-body-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-block: 3.5rem;
}

.post-body-section--flip .post-body-section__img { order: 1; }
.post-body-section--flip .post-body-section__text { order: -1; }

.post-body-section__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.post-body-section__text p,
.post-body-full p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text, rgb(36,45,62));
  margin-bottom: 1em;
}

.post-body-full {
  max-width: 720px;
  margin-inline: auto;
  margin-block: 2.5rem;
}

@media (max-width: 767px) {
  .post-body-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .post-body-section--flip .post-body-section__img,
  .post-body-section--flip .post-body-section__text { order: 0; }
}

.post-single__explore-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.post-tag {
  display: inline-block;
  border: 1px solid var(--color-border);
  padding: 0.25em 0.75em;
  font-size: 0.8125rem;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
  color: var(--color-muted);
}

/* ============================================================
   EXPERIENCES GRID — full page variant
   ============================================================ */
.experiences-grid--full { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   EXPERIENCES LIST (full-page vertical layout)
   ============================================================ */
.exp-list__item {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 5rem;
  align-items: start;
  padding-block: 4rem;
  position: relative;
}

.exp-list__item + .exp-list__item {
  border-top: none;
}

.exp-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.exp-list__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 1.25rem;
}

.exp-list__title a {
  color: inherit;
  text-decoration: none;
}

.exp-list__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.exp-list__excerpt {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.exp-list__link {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: background 0.2s, color 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

/* ============================================================
   BUTTON BASE
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: none;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-white, #fff);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-text);
  color: #fff;
}

.btn.btn--solid-white {
  background: var(--color-white, #fff);
  border: none;
  color: var(--color-text);
}

.btn.btn--solid-white:hover {
  background: var(--color-text);
  color: var(--color-white, #fff);
}

/* ============================================================
   NEW PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .full-gallery        { columns: 2; }
  .trip-tips           { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid--full { grid-template-columns: repeat(2, 1fr); }
  .location-section    { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .complex-section     { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .complex-section--reverse { direction: ltr; }
  .complex-photo-grid-2 { grid-template-columns: 1fr; }
  .complex-photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .location-ways       { grid-template-columns: 1fr; }
  .location-section    { grid-template-columns: 1fr !important; }
  .location-section > *:first-child { order: -1; }
  .trip-tips           { grid-template-columns: 1fr; }
  .experiences-grid--full { grid-template-columns: 1fr; }
  .page-hero--img      { min-height: 36vh; }
}

@media (max-width: 480px) {
  .full-gallery        { columns: 1; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */

/* Initial hidden state per direction */
.reveal                       { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal[data-anim="fadeInUp"]    { transform: translateY(36px); }
.reveal[data-anim="fadeInDown"]  { transform: translateY(-28px); }
.reveal[data-anim="fadeInLeft"]  { transform: translateX(-36px); }
.reveal[data-anim="fadeInRight"] { transform: translateX(36px); }

/* Visible state — added by IntersectionObserver */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Optional stagger delays */
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Elfsight reviews widget — theme typography override ─────────────────── */
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-review-author-name,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-review-info-date,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-review-content-text-container,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-text-shortener-control,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-booking-rating-value,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-header-rating,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-header-info {
  font-family: 'Poppins', sans-serif !important;
}

.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-review-content-title,
.elfsight-app-eeeac66d-fe8a-4db6-b08c-e2ae00cb0b65 .es-header-heading-text {
  font-family: 'Caudex', Georgia, serif !important;
}
