/* =========================================================
   Publikus felület egységesítése – 2026-07-21
   A meglévő arculat megtartásával tisztább tipográfia,
   erősebb vizuális hierarchia és egyszerűbb mobilos használat.
   ========================================================= */

:root{
  --public-section-border: rgba(15, 23, 42, .08);
  --public-soft-blue: rgba(13, 93, 184, .075);
  --public-deep-blue: #0a4f9d;
  --public-gold: #c89a42;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body{
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll,
body.mobile-menu-open{
  overflow: hidden;
}

.skip-link{
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10001;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue2);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus{ transform: translateY(0); }

:focus-visible{
  outline: 3px solid rgba(13,93,184,.42);
  outline-offset: 3px;
}

.site-main{ padding-top: 18px; }
.section{
  position: relative;
  padding: clamp(46px, 6vw, 76px) 0;
}
/* A teljes szélességű, váltakozó felületek egyértelműen elválasztják a tartalmi blokkokat. */
.section-surface-light{
  background: rgba(255,255,255,.68);
  border-block: 1px solid rgba(13,93,184,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), inset 0 -1px 0 rgba(15,23,42,.025);
}
.section-surface-blue{
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(13,93,184,.15), transparent 60%),
    rgba(226,237,249,.68);
  border-block: 1px solid rgba(13,93,184,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(13,93,184,.035);
}
.section-surface-plain{
  background: rgba(247,246,243,.56);
  border-block: 1px solid rgba(15,23,42,.085);
}
.site-main > .section:not(.hero)::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(13,93,184,.30) 18%, rgba(200,154,66,.34) 50%, rgba(13,93,184,.30) 82%, transparent);
  pointer-events: none;
}

.h1,
.h2,
.card-title{
  text-wrap: balance;
}
.h1{
  font-weight: 820;
  letter-spacing: -.035em;
}
.h2{
  font-weight: 800;
  letter-spacing: -.025em;
}
.card-title{ font-weight: 800; }
.lead{
  color: rgba(18,32,56,.84);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.65;
}
.kicker{
  font-weight: 700;
  letter-spacing: .075em;
}
.muted{ color: rgba(18,32,56,.72); }
.prose-content,
.prose-content p,
.text{
  color: rgba(18,32,56,.84);
  font-weight: 450;
  line-height: 1.72;
}

.btn{
  min-height: 46px;
  padding: 11px 16px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-large{ min-height: 52px; padding-inline: 22px; }
.btn-ghost{
  background: rgba(255,255,255,.58);
  border-color: rgba(15,23,42,.15);
}

/* Fejléc és navigáció */
.site-header{
  background: rgba(247,246,243,.88);
  box-shadow: 0 8px 28px rgba(8,18,34,.045);
}
.site-header .header-row{ min-height: 76px; }
.site-header .brand{ min-width: 0; }
.site-header .brand-logo{
  width: auto;
  height: 54px;
  flex: 0 0 auto;
}
.site-header .brand-name{
  font-weight: 800;
  line-height: 1.08;
}
.site-header .brand-tag{
  color: rgba(18,32,56,.68);
  font-size: 11.5px;
  font-weight: 550;
}
.site-header .nav{ gap: 4px; }
.site-header .nav-link{
  position: relative;
  padding: 11px 13px;
  color: rgba(18,32,56,.82);
  font-weight: 650;
  background: transparent;
  box-shadow: none;
}
.site-header .nav-link::after{
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active{
  color: var(--blue2);
  background: transparent;
  box-shadow: none;
}
.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after{ transform: scaleX(1); }
.header-booking-btn{ white-space: nowrap; }

.mobile-nav{
  background: rgba(247,246,243,.98);
  box-shadow: 0 22px 42px rgba(8,18,34,.12);
}
.mobile-nav-inner{ gap: 14px; }
.mobile-nav-primary,
.mobile-nav-secondary{ display: grid; gap: 8px; }
.mobile-nav-secondary{
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.10);
}
.mobile-nav-label{
  padding-inline: 4px;
  color: rgba(18,32,56,.58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mobile-link{
  font-weight: 650;
  background: rgba(255,255,255,.65);
  box-shadow: none;
}
.mobile-link.is-active{
  color: var(--blue2);
  border-color: rgba(13,93,184,.32);
  background: rgba(13,93,184,.08);
  box-shadow: none;
}
.mobile-link-secondary{
  padding-block: 10px;
  background: transparent;
  border-color: transparent;
}

/* Hero: kevesebb CTA, erősebb fókusz */
.hero{ padding-top: 10px; }
.hero-wrap{ border-radius: clamp(24px, 4vw, 34px); }
.hero-inner-focused{
  grid-template-columns: minmax(0, 760px);
  min-height: clamp(380px, calc(100svh - 205px), 520px);
  align-content: center;
  padding: clamp(30px, 5vw, 62px);
}
.home-hero .hero-inner-focused{
  min-height: clamp(380px, calc(100svh - 205px), 500px);
}
.home-hero .h1{
  font-size: clamp(38px, min(4vw, 7vh), 54px);
}
.inner-hero .hero-inner-focused{ min-height: clamp(350px, 44vw, 470px); }
.hero-copy{ position: relative; z-index: 2; }
.hero-copy .lead{ max-width: 680px; }
.hero-actions-priority{ align-items: center; }
.hero-text-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 4px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}
.hero-text-link:hover{ text-decoration: underline; }
.hero-text-link-dark{ color: var(--blue2); }
.hero-text-link-light{ color: rgba(255,255,255,.92); }
.home-hero .hero-overlay{
  background: linear-gradient(90deg, rgba(3,12,27,.82) 0%, rgba(3,12,27,.55) 48%, rgba(3,12,27,.14) 100%);
}

.home-bridge{ margin-top: 8px; }
.home-bridge-inner{
  padding-block: 8px;
  font-weight: 650;
  letter-spacing: .025em;
}

.section-head{ max-width: 760px; margin-bottom: 30px; }
.section-head.centered{ margin-inline: auto; }
.section-head .lead{ max-width: 700px; }
.section-actions{ margin-top: 28px; }

/* Főoldali szolgáltatások */
.home-service-card{
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 38px rgba(8,18,34,.08);
}
.home-service-media{
  display: block;
  height: 220px;
  overflow: hidden;
}
.home-service-media img{ transition: transform .4s ease; }
.home-service-card:hover .home-service-media img{ transform: scale(1.025); }
.home-service-body{ padding: 20px; }
.home-service-body h3{ font-size: 22px; font-weight: 800; }
.home-service-body p{ color: rgba(18,32,56,.76); font-weight: 450; }
.home-service-meta{ padding-top: 14px; border-top: 1px solid rgba(15,23,42,.09); }
.service-card-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--blue2);
  font-weight: 700;
  text-decoration: none;
}
.service-card-link:hover{ text-decoration: underline; text-underline-offset: 4px; }

/* Előtte-utána */
.section-before-after-preview .ba-card{ background: rgba(255,255,255,.75); }
.ba-content h3{ font-weight: 800; }
.ba-content p{ color: rgba(18,32,56,.76); font-weight: 450; }

/* Bemutatkozás – kártyakeret nélkül */
.intro-grid{ align-items: center; gap: clamp(28px, 5vw, 70px); }
.intro-content-simple{ padding: clamp(8px, 2vw, 24px) 0; }
.intro-content-simple .intro-prose{ max-width: 660px; }
.intro-content-simple .intro-highlights{
  margin-top: 24px;
  padding: 18px 0;
  border-block: 1px solid rgba(15,23,42,.10);
}
.intro-highlight strong{ font-weight: 750; }
.intro-highlight small{ color: rgba(18,32,56,.68); }
.intro-actions{ margin-top: 22px; align-items: center; }

/* Vélemények */
.review-card{
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 34px rgba(8,18,34,.07);
}
.review-text{
  color: rgba(18,32,56,.84);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.68;
}
.review-author{ font-weight: 750; }

/* Stílus blokk */
.vibe-grid-refresh{ gap: 22px; }
.vibe-feature{
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.48);
}
.vibe-feature-media{
  height: 230px;
  background-size: cover;
  background-position: center;
}
.vibe-feature > div:last-child{ padding: 20px; }
.vibe-feature h3{ margin: 0 0 6px; font-size: 21px; font-weight: 800; }
.vibe-feature p{ margin: 0; color: rgba(18,32,56,.75); line-height: 1.65; }
.gallery-mood-strip-refresh{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.gallery-mood-strip-refresh.has-vibe-cards{ margin-top: 22px; }
.gallery-mood-photo{
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 38px rgba(8,18,34,.07);
}
.gallery-mood-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3,12,27,.76) 100%);
}
.gallery-mood-photo span{
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}

/* Záró foglalási sáv */
.section-booking-final{ padding-top: 34px; }
.booking-strip-refresh{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(26px, 5vw, 50px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background:
    radial-gradient(620px 260px at 10% 0%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, #0d5db8, #083e7c);
  color: #fff;
  box-shadow: 0 24px 56px rgba(8,62,124,.22);
}
.booking-strip-refresh .h2,
.booking-strip-refresh .lead{ color: #fff; }
.booking-strip-refresh .lead{ opacity: .86; }
.booking-strip-refresh .kicker{
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}
.booking-strip-actions{ display: grid; justify-items: center; gap: 8px; }
.booking-strip-refresh .btn-primary{
  color: var(--blue2);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

/* Szolgáltatások oldal */
.services-section-head{ margin-bottom: 34px; }
.cards-grid-refresh{ align-items: stretch; }
.price-card-refresh{
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 38px rgba(8,18,34,.075);
}
.price-card-refresh .price-media{ height: 210px; }
.price-card-refresh .price-media img{ transition: transform .4s ease; }
.price-card-refresh:hover .price-media img{ transform: scale(1.025); }
.price-card-refresh .price-body{ flex: 1; padding: 20px; }
.price-card-refresh .card-title{ font-size: 22px; margin-bottom: 0; }
.service-description{
  margin: 0;
  color: rgba(18,32,56,.75);
  font-weight: 450;
  line-height: 1.65;
}
.price-card-refresh .price-row{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.09);
}
.price-card-refresh .price-amount{ font-weight: 800; }
.service-help-band{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(13,93,184,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
}
.service-help-band .lead{ max-width: 780px; }

/* Galéria */
.gallery-hero .hero-inner-focused{ min-height: clamp(310px, 40vw, 420px); }
.gallery-section{ padding-top: clamp(34px, 5vw, 60px); }
.gallery-section-head{
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.gallery-help{
  max-width: 360px;
  margin: 0 0 6px;
  color: rgba(18,32,56,.68);
  font-size: 14px;
}
.gallery-grid-refresh{
  grid-auto-flow: dense;
  grid-auto-rows: clamp(235px, 18vw, 278px);
  gap: 14px;
}
.gallery-grid-refresh .gallery-item{
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(8,18,34,.07);
}
.gallery-grid-refresh .gallery-media-wrap{
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: rgba(8,18,38,.08);
}
.gallery-grid-refresh .gallery-media-wrap > img,
.gallery-grid-refresh .gallery-media-wrap > video{
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gallery-grid-refresh .gallery-item:nth-child(5n + 1){ grid-row: span 2; }
.gallery-grid-refresh .gallery-item img,
.gallery-grid-refresh .gallery-item video{ transition: transform .4s ease; }
.gallery-grid-refresh .gallery-item:hover img,
.gallery-grid-refresh .gallery-item:hover video{ transform: scale(1.025); }
.gallery-grid-refresh .gallery-item .cap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.94);
  font-size: 13px;
}
.gallery-grid-refresh .gallery-item .cap strong{ font-weight: 700; }
.gallery-bottom-cta{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(13,93,184,.16);
  background: rgba(255,255,255,.62);
}
.gallery-bottom-actions{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.lb{ backdrop-filter: blur(10px); }
.lb-close,
.lb-nav{ cursor: pointer; }

/* Fontos tudnivalók */
.rules-overview-grid{ gap: 18px; }
.rules-overview-item{
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.64);
}
.rules-overview-number{
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.rules-overview-item h2{ margin: 8px 0 6px; font-size: 21px; font-weight: 800; }
.rules-overview-item p{ margin: 0; color: rgba(18,32,56,.74); }
.rules-detail-layout{
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.rules-detail-heading{ position: sticky; top: 110px; }
.rules-card-refresh{
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255,255,255,.66);
}
.rules-card-refresh .prose-content h2,
.rules-card-refresh .prose-content h3{
  margin-top: 1.5em;
  margin-bottom: .45em;
  color: var(--ink);
  font-weight: 800;
}
.rules-card-refresh .prose-content > :first-child{ margin-top: 0; }

/* Kapcsolat */
.contact-booking-compact{ padding: 30px 0; }
.contact-booking-refresh{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  border: 1px solid rgba(13,93,184,.18);
  background:
    radial-gradient(560px 220px at 8% 0%, rgba(13,93,184,.13), transparent 62%),
    rgba(255,255,255,.66);
}
.contact-method-grid-refresh{ gap: 18px; }
.contact-method-card-refresh{
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 34px rgba(8,18,34,.06);
}
.contact-icon{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--blue2);
  background: rgba(13,93,184,.10);
  font-size: 21px;
  font-weight: 800;
}
.contact-method-card-refresh h3{ margin: 0 0 8px; font-size: 21px; font-weight: 800; }
.contact-method-card-refresh p{ color: rgba(18,32,56,.72); line-height: 1.6; }
.contact-method-card-refresh .btn{ margin-top: auto; }
.contact-value{
  color: var(--blue2);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-value:hover{ text-decoration: underline; }
.contact-value-email{ font-size: 15px; }
.contact-hours-compact{
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.contact-hours-compact li{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(15,23,42,.07);
  color: rgba(18,32,56,.74);
  font-size: 14px;
}
.contact-hours-compact strong{ color: var(--ink); font-weight: 700; }
.social-links-row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: rgba(18,32,56,.68);
  font-size: 14px;
}
.social-links-row a{ color: var(--blue2); font-weight: 700; text-decoration: none; }
.social-links-row a:hover{ text-decoration: underline; }
.contact-location-grid-refresh{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 30px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 44px rgba(8,18,34,.08);
}
.map-card-refresh{ min-height: 480px; }
.map-card-refresh iframe{ width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.location-card-refresh{ padding: clamp(26px, 5vw, 48px); align-self: center; }
.location-facts{ display: grid; gap: 16px; margin: 24px 0; }
.location-facts > div{ display: grid; gap: 2px; padding-left: 16px; border-left: 3px solid rgba(13,93,184,.22); }
.location-facts strong{ font-weight: 750; }
.location-facts span{ color: rgba(18,32,56,.70); }
.faq-container-refresh{ max-width: 900px; }
.faq-item{ background: rgba(255,255,255,.66); }
.faq-item summary{ font-weight: 700; }
.faq-answer{ color: rgba(18,32,56,.80); font-weight: 450; }

/* Foglalás */
.booking-card-refresh{ background: rgba(255,255,255,.72); }
.booking-card-lead{ margin: -4px 0 20px; color: rgba(18,32,56,.70); }
.booking-stepper{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.booking-stepper > span{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 14px;
  color: rgba(18,32,56,.58);
  background: rgba(15,23,42,.045);
  font-size: 12px;
  font-weight: 650;
}
.booking-stepper b{
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(15,23,42,.09);
  font-size: 11px;
}
.booking-stepper > span.is-active{
  color: var(--blue2);
  background: rgba(13,93,184,.10);
}
.booking-stepper > span.is-active b{ color: #fff; background: var(--blue); }
.booking-stepper > span.is-complete{
  color: #087c56;
  background: rgba(16,185,129,.10);
}
.booking-stepper > span.is-complete b{ color: #fff; background: #0a9368; }
.booking-slot-choice{ text-align: center; }
.booking-slot-choice strong{ font-size: 17px; font-weight: 800; }
.booking-slot-choice span{ font-size: 11px; font-weight: 600; }
.booking-summary{
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(13,93,184,.20);
  border-radius: 20px;
  background: rgba(13,93,184,.06);
}
.booking-summary-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.booking-summary-head .kicker{ margin: 0; }
.booking-summary-head > strong{ font-size: 17px; font-weight: 800; }
.booking-summary dl{ display: grid; gap: 0; margin: 0; }
.booking-summary dl > div{
  display: grid;
  grid-template-columns: minmax(110px, .6fr) minmax(0, 1.4fr);
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(13,93,184,.10);
}
.booking-summary dt{ color: rgba(18,32,56,.62); font-size: 13px; font-weight: 650; }
.booking-summary dd{ margin: 0; color: var(--ink); font-weight: 700; text-align: right; }
.booking-form-section-title{
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(15,23,42,.10);
}
.booking-form-section-title span{
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.booking-form-section-title strong{ font-weight: 800; }
.booking-check{ font-weight: 500; }
.booking-result{
  scroll-margin-top: 120px;
  white-space: normal;
}
.booking-result > strong{ display: block; margin-bottom: 5px; font-size: 17px; }
.booking-result p{ margin: 0; font-weight: 500; }
.booking-result-details{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.booking-result-details span{
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}
.booking-info-card{ background: rgba(255,255,255,.60); }
.booking-info-list{ font-weight: 500; line-height: 1.6; }

/* Lábléc */
.footer-grid-refresh{ grid-template-columns: 1.15fr .85fr 1fr .75fr; }
.footer-card{ background: rgba(255,255,255,.46); }
.footer-title{ font-weight: 800; }
.footer-text{ font-weight: 450; }
.footer-list li{ font-size: 14px; }
.footer-contact-list li{ align-items: start; }
.footer-contact-list li span:last-child{ text-align: right; overflow-wrap: anywhere; }
.footer-nav{ display: grid; gap: 9px; }
.footer-nav a{
  color: rgba(18,32,56,.76);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.footer-nav a:hover{ color: var(--blue2); text-decoration: underline; }
.chip{ font-weight: 650; }

/* Napi ajánlat és mobil alsó sáv */
.daily-deal-text{ white-space: nowrap; }
.daily-deal-tab{ font-weight: 700; }
.mobile-cta-label{ font-weight: 750; }
.mobile-cta-sub{ font-weight: 500; }

@media (max-width: 1100px){
  .footer-grid-refresh{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px){
  .header-booking-btn{ margin-left: auto; }
  .home-hero .hero-inner-focused{ min-height: clamp(370px, calc(100svh - 190px), 470px); }
  .booking-strip-refresh,
  .service-help-band,
  .gallery-bottom-cta,
  .contact-booking-refresh{
    grid-template-columns: 1fr;
  }
  .booking-strip-actions{ justify-items: start; }
  .gallery-bottom-actions{ justify-content: flex-start; }
  .rules-detail-layout{ grid-template-columns: 1fr; }
  .rules-detail-heading{ position: static; }
  .contact-location-grid-refresh{ grid-template-columns: 1fr; }
  .map-card-refresh,
  .map-card-refresh iframe{ min-height: 390px; }
}

@media (max-width: 760px){
  html{ scroll-padding-top: 78px; }
  body{ padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .container{ width: min(100% - 28px, 1120px); }
  .site-main{ padding-top: 8px; }
  .section{ padding: 42px 0; }
  .site-header .header-row{ min-height: 66px; padding-block: 7px; }
  .site-header .brand-logo{ height: 46px; }
  .site-header .brand-tag{ display: none; }
  .header-booking-btn{ display: none; }
  .icon-btn{ width: 42px; height: 42px; }

  .hero-wrap{ border-radius: 22px; }
  .hero-inner-focused,
  .inner-hero .hero-inner-focused{
    min-height: 390px;
    padding: 30px 20px;
    align-content: end;
  }
  .home-hero .hero-inner-focused{
    min-height: clamp(380px, calc(100svh - 230px), 460px);
  }
  .hero .h1{ font-size: clamp(31px, 10vw, 43px); }
  .hero-actions-priority{ display: grid; grid-template-columns: 1fr; align-items: stretch; }
  .hero-actions-priority .btn{ width: 100%; }
  .hero-text-link{ justify-content: center; }
  .home-hero .hero-overlay{
    background: linear-gradient(180deg, rgba(3,12,27,.12) 0%, rgba(3,12,27,.42) 40%, rgba(3,12,27,.88) 100%);
  }
  .home-bridge-inner{ gap: 7px; font-size: 12px; text-align: center; }
  .home-bridge-inner i{ display: none; }
  .home-bridge-inner span{ flex: 1 1 100%; }

  .home-service-media,
  .price-card-refresh .price-media{ height: 210px; }
  .intro-grid{ gap: 26px; }
  .intro-content-simple .intro-highlights{ grid-template-columns: 1fr; }
  .vibe-feature-media{ height: 210px; }
  .gallery-mood-strip-refresh{ grid-template-columns: 1fr; }
  .gallery-mood-photo{ min-height: 220px; }
  .booking-strip-refresh{ border-radius: 24px; }

  .gallery-section-head{ display: grid; gap: 8px; }
  .gallery-help{ max-width: none; }
  .gallery-grid-refresh{ grid-auto-rows: auto; }
  .gallery-grid-refresh .gallery-item,
  .gallery-grid-refresh .gallery-item:nth-child(5n + 1){
    grid-row: auto;
    height: auto;
  }
  .gallery-grid-refresh .gallery-media-wrap,
  .gallery-grid-refresh .gallery-item:nth-child(5n + 1) .gallery-media-wrap{
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .rules-overview-grid{ grid-template-columns: 1fr; }
  .contact-method-grid-refresh{ grid-template-columns: 1fr; }
  .contact-booking-actions .btn{ width: 100%; }
  .map-card-refresh,
  .map-card-refresh iframe{ min-height: 320px; }

  .booking-stepper > span{
    justify-content: center;
    padding: 8px 5px;
    font-size: 10px;
    text-align: center;
  }
  .booking-stepper b{ width: 22px; height: 22px; }
  .booking-summary-head{ align-items: start; flex-direction: column; gap: 5px; }
  .booking-summary dl > div{ grid-template-columns: 1fr; gap: 1px; }
  .booking-summary dd{ text-align: left; }

  .footer-grid-refresh{ grid-template-columns: 1fr; }

  .analytics-consent-visible .daily-deal-widget{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .analytics-consent-visible .mobile-cta-bar{
    opacity: .45;
    pointer-events: none;
  }
  .daily-deal-widget{ transition: opacity .18s ease, visibility .18s ease; }
  .daily-deal-text{ font-size: 12px; }
}

@media (max-width: 480px){
  .container{ width: min(100% - 22px, 1120px); }
  .h2{ font-size: 29px; }
  .card{ border-radius: 21px; }
  .home-service-body,
  .price-card-refresh .price-body{ padding: 17px; }
  .gallery-grid-refresh{ grid-template-columns: 1fr; }
  .gallery-grid-refresh .gallery-media-wrap{ aspect-ratio: 4 / 3; }
  .mobile-cta-bar{ left: 8px; right: 8px; width: auto; }
  .mobile-cta-link{ min-width: 0; padding-inline: 5px; }
  .mobile-cta-sub{ font-size: 10px; }
  .daily-deal-tab{ padding-inline: 10px; }
  .daily-deal-badge{ display: none; }
}

/* Alacsonyabb laptop- és fekvő kijelzőkön a teljes hero és az értéksáv is a hajtás fölött marad. */
@media (min-width: 761px) and (max-height: 780px){
  .home-hero .hero-inner-focused{
    min-height: max(350px, calc(100svh - 205px));
    padding-block: clamp(24px, 4.5vh, 38px);
  }
  .home-hero .kicker{ margin-bottom: 7px; padding-block: 6px; }
  .home-hero .h1{ font-size: clamp(36px, 6.6vh, 49px); }
  .home-hero .lead{ margin-top: 10px; line-height: 1.48; }
  .home-hero .hero-actions{ margin-top: 14px; }
  .home-bridge{ margin-top: 6px; padding-top: 8px; }
  .home-bridge-inner{ padding-block: 7px; }
}

@media (min-width: 761px) and (max-height: 640px){
  .home-hero .hero-inner-focused{
    min-height: 330px;
    padding-block: 22px;
  }
  .home-hero .h1{ font-size: clamp(34px, 6.2vh, 42px); }
  .home-hero .lead{ font-size: 15px; }
  .home-hero .btn{ min-height: 42px; padding-block: 8px; }
  .home-bridge-inner{ font-size: 11px; }
}

@media (max-width: 760px) and (max-height: 650px){
  .home-hero .hero-inner-focused{
    min-height: 360px;
    padding-block: 24px;
  }
  .home-hero .h1{ font-size: clamp(31px, 8.5vw, 39px); }
  .home-hero .lead{ margin-top: 9px; line-height: 1.5; }
  .home-hero .hero-actions{ margin-top: 13px; gap: 8px; }
  .home-hero .btn{ min-height: 42px; padding-block: 8px; }
  .home-bridge{ margin-top: 5px; padding-top: 6px; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   Szekcióelválasztók egységes függőleges ritmusa – 2026-07-21
   Az elválasztó vonal mindkét oldalán azonos tér marad.
   ========================================================= */
:root{
  --public-section-space: clamp(46px, 6vw, 76px);
}

.site-main > .section:not(.hero){
  padding-block: var(--public-section-space);
}

/* A hero alatti értéksáv ugyanakkora helyet hagy az első elválasztóig,
   mint amekkora tér az elválasztó másik oldalán a következő tartalomig van. */
.home-bridge{
  margin-top: 8px;
  padding: 14px 0 var(--public-section-space);
}

@media (max-width: 760px){
  :root{
    --public-section-space: 42px;
  }

  .home-bridge{
    padding-top: 10px;
  }
}

@media (max-width: 480px){
  :root{
    --public-section-space: 38px;
  }
}

@media (min-width: 761px) and (max-height: 780px){
  .home-bridge{
    padding-top: 8px;
  }
}

@media (max-width: 760px) and (max-height: 650px){
  .home-bridge{
    padding-top: 6px;
  }
}
