/* ==========================================================================
   PALLOS RENDEZVÉNY LANDING — base styles
   Színek / tipográfia a brand spec szerint (PALLOS_BRAND.md.md)
   ========================================================================== */

:root {
  /* Backgrounds */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #1A1612;
  --bg-tertiary:   #15110D;

  /* Accent */
  --accent-primary: #F5A623;
  --accent-hover:   #E8941A;
  --accent-muted:   #C9A961;

  /* Text */
  --text-primary:   #FAFAFA;
  --text-secondary: #D4D4D4;
  --text-muted:     #A8A8A8;

  /* Border / divider */
  --border-divider: #2A2520;

  /* Layout */
  --container-max: 1280px;
  --header-h: 64px;
  --bottombar-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Visually hidden (a11y) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus-visible {
  position: static; width: auto; height: auto;
  clip: auto; white-space: normal;
  padding: 12px 16px; background: var(--accent-primary);
  color: var(--bg-primary); font-weight: 600;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/* NOTE: Anton + magyar ékezetes nagybetűk (Ü/Á/É/Ó/Ő/Ű) — a brand spec
   1.05 line-height-ot ír, de az túl szoros: az ékezetek belesúrlódnak a
   fölöttük lévő sorba. 1.18-as line-height még feszes Anton-érzetet ad,
   de elfér az ékezet. Single-line címnél nem látszik a különbség. */
.font-display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.h1-hero {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-primary);
}

.h2-section {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-primary);
}

.eyebrow {
  color: var(--accent-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--accent-primary);
  flex-shrink: 0;
}

.italic-quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.section {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (min-width: 1024px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.section-title { max-width: 720px; }

.bg-primary   { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary  { background-color: var(--bg-tertiary); }

/* Placeholder note alá üres section-öknél (skeleton iterációban) */
.section-placeholder-note {
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  border-left: 2px solid var(--border-divider);
  padding-left: 14px;
}

/* Gold stripe (közbenső CTA section tetején) */
.gold-stripe {
  height: 2px;
  width: 100%;
  background-color: var(--accent-primary);
}

/* ==========================================================================
   Sticky header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  background-color: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-divider);
}
.site-header.scrolled {
  transform: translateY(0);
  opacity: 1;
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .site-header__logo { height: 40px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 16px 28px;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}
@media (min-width: 768px) {
  .btn { padding: 18px 36px; }
}
.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
}
.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.02);
}

.btn--secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-primary);
  padding-top: 14.5px;
  padding-bottom: 14.5px;
}
@media (min-width: 768px) {
  .btn--secondary {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
}
.btn--secondary:hover {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
}

.btn--mini {
  padding: 10px 18px;
  font-size: 14px;
  background-color: var(--accent-primary);
  color: var(--bg-primary);
}
.btn--mini:hover {
  background-color: var(--accent-hover);
}

.btn__icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}
.btn--mini .btn__icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Image placeholder pattern (újrahasznosítható minden valódi fotó helyén,
   amíg meg nem érkeznek)
   ========================================================================== */

.placeholder {
  position: relative;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.placeholder--3-4  { aspect-ratio: 3 / 4; }
.placeholder--4-3  { aspect-ratio: 4 / 3; }
.placeholder--1-1  { aspect-ratio: 1 / 1; }
.placeholder--4-5  { aspect-ratio: 4 / 5; }
.placeholder--16-9 { aspect-ratio: 16 / 9; }
.placeholder--21-9 { aspect-ratio: 21 / 9; }

.placeholder__logo {
  width: 96px;
  height: auto;
  opacity: 0.3;
}

.placeholder__tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

/* ==========================================================================
   Scroll-reveal animation (.reveal → .visible by JS IntersectionObserver)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Mobile sticky bottom bar
   ========================================================================== */

.mobile-bottom-bar {
  display: none;
}

/* 767.98px: pont 768-nál (iPad Mini) már a tablet/desktop nézet éljen,
   különben ütközik a Tailwind md: (min-width: 768px) szabályaival */
@media (max-width: 767.98px) {
  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    height: var(--bottombar-h);
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-divider);
    padding: 12px;
  }
  .mobile-bottom-bar .btn {
    padding: 0;
    height: 100%;
    width: 100%;
    font-size: 15px;
  }
  body {
    padding-bottom: var(--bottombar-h);
  }
}

/* ==========================================================================
   Hero (Section 2)
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 140px; /* hely a scroll indicatornak */
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Drámai full-bleed background — placeholder (logo + meleg radial gradient) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Háttér-diavetítés: 3 réteg, a .is-active látszik, a többi áttűnik */
.hero__slides {
  position: absolute;
  inset: 0;
  background-color: var(--bg-secondary);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.62) 48%,
      rgba(10, 10, 10, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 560px;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .hero__ctas {
    margin-top: 48px;
    gap: 20px;
  }
}

/* Scroll indicator (Hero aljára pozícionált) */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  z-index: 2;
  text-decoration: none;
  transition: color 200ms ease;
}
.hero__scroll:hover { color: var(--accent-primary); }
.hero__scroll:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 6px;
  border-radius: 4px;
}

.hero__scroll-arrow {
  display: block;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.55; }
  50%      { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-arrow { animation: none; }
}

/* Mobilon: a Hero CTA-kat elrejtjük — a sticky bottom bar ugyanezt
   a két akciót pinneli minden viewen, így nincs duplikáció. A "Fedezd fel"
   scroll indicator marad a soft prompt a Hero-ban. */
@media (max-width: 767.98px) {
  .hero__ctas {
    display: none;
  }
  .hero__scroll {
    bottom: calc(var(--bottombar-h) + 16px);
  }
  .hero {
    padding-bottom: 140px;
  }
}

/* ==========================================================================
   Section 3 — Üzenet Adriannától
   ========================================================================== */

.udvozles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
/* Tablettől (768px) már két oszlop — 900-nál a 768–899 sávban (iPad-ek)
   a fotó árván lebegett középen */
@media (min-width: 768px) {
  .udvozles__grid {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .udvozles__grid {
    gap: 72px;
  }
}

.udvozles__media {
  margin: 0;
  max-width: 460px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .udvozles__media {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

.udvozles__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-divider);
}

.udvozles__lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.udvozles__quote {
  margin: 36px 0 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--accent-primary);
}

.udvozles__quote p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0;
}

.udvozles__signature {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

.udvozles__name {
  font-weight: 500;
  color: var(--text-secondary);
}

.udvozles__role {
  font-style: italic;
}

.udvozles__role::before {
  content: " · ";
  color: var(--accent-primary);
  margin: 0 4px;
  font-style: normal;
}

/* ==========================================================================
   Section sub-headline (újrahasznosítható H2 alatti leírás)
   ========================================================================== */

.section-sub {
  margin: 24px 0 0;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

/* ==========================================================================
   Section 4 — Miért a Pallos (4 értékkártya)
   ========================================================================== */

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .values__grid {
    gap: 24px;
    margin-top: 64px;
  }
}

.value-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}
@media (max-width: 640px) {
  .value-card { padding: 24px; }
}

.value-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(245, 166, 35, 0.15);
}

.value-card__num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 24px;
}

.value-card__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.value-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  max-width: 42ch;
}

@media (prefers-reduced-motion: reduce) {
  .value-card { transition: none; }
  .value-card:hover { transform: none; }
}

/* ==========================================================================
   Section 12 — Nagy finálé / Kapcsolat
   ========================================================================== */

.contact__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact__title .eyebrow-row {
  margin-left: auto;
  margin-right: auto;
}

.contact__title .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.h2-section--xl {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.12;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 56px auto 0;
  max-width: 820px;
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
@media (min-width: 1024px) {
  .contact__grid { margin-top: 72px; gap: 72px; }
}

.contact__col-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--accent-primary);
  margin: 0 0 24px;
  line-height: 1.2;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__item-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact__item-value {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  transition: color 200ms ease;
}

a.contact__item-value:hover {
  color: var(--accent-primary);
}

.contact__item-value--address {
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 16px;
}

.contact__item-note {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
}

.contact__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-divider);
}
.contact__hours-row:first-child { padding-top: 0; }
.contact__hours-row:last-child  { border-bottom: none; padding-bottom: 0; }

.contact__hours-day {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact__hours-time {
  color: var(--text-primary);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.contact__ctas {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact__ctas { margin-top: 64px; gap: 20px; }
}

.contact__map {
  margin-top: 56px;
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}
@media (min-width: 1024px) {
  .contact__map { margin-top: 72px; }
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(20%);
}
@media (min-width: 768px) {
  .contact__map iframe { height: 400px; }
}

/* ==========================================================================
   Section 11 — Vendégek mondták (3 testimonial-kártya)
   ========================================================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    gap: 28px;
    margin-top: 64px;
  }
}

.testimonial {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .testimonial { padding: 24px; }
}

.testimonial__quote-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-primary);
  fill: currentColor;
  display: block;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testimonial__text {
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-primary);
}

.testimonial__attribution {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-divider);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.testimonial__name {
  font-weight: 500;
  color: var(--text-secondary);
}

.testimonial__meta {
  font-style: italic;
  color: var(--text-muted);
  font-size: 13px;
}

/* ==========================================================================
   Section 10 — Galéria (CSS-columns masonry)
   ========================================================================== */

.gallery__grid {
  column-count: 2;
  column-gap: 12px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .gallery__grid { column-count: 3; column-gap: 16px; }
}
@media (min-width: 1280px) {
  .gallery__grid { column-count: 4; column-gap: 20px; margin-top: 64px; }
}

.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  break-inside: avoid;
  margin-bottom: 12px;
  transition: transform 300ms ease;
}
@media (min-width: 640px)  { .gallery__item { margin-bottom: 16px; } }
@media (min-width: 1280px) { .gallery__item { margin-bottom: 20px; } }

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

.gallery__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-divider);
}

/* Collapsed állapot: az "extra" képek rejtve, amíg nincs lenyitva */
.gallery__grid:not(.is-expanded) .gallery__item--extra {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery__item { transition: none; }
  .gallery__item:hover { transform: none; }
}

/* "Több kép" lenyitó gomb */
.gallery__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media (min-width: 1280px) {
  .gallery__more { margin-top: 44px; }
}

.gallery__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  border: 1.5px solid var(--accent-primary);
  border-radius: 4px;
  color: var(--accent-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}

.gallery__more-btn:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.gallery__more-btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.gallery__more-count {
  font-weight: 500;
  opacity: 0.75;
}

.gallery__more-btn:hover .gallery__more-count {
  opacity: 0.9;
}

/* ==========================================================================
   Lightbox (overlay, vanilla JS-kontrollolt)
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

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

.lightbox__content {
  width: min(85vw, 560px);
  max-height: 85vh;
  position: relative;
  z-index: 1;
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(26, 22, 18, 0.7);
  border: 1px solid var(--border-divider);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.lightbox__close { top: 20px; left: 20px; }
.lightbox__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.lightbox__counter {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.lightbox__counter-current { color: var(--accent-primary); }
.lightbox__counter-sep     { color: var(--text-muted); margin: 0 6px; }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; left: 12px; width: 40px; height: 40px; }
  .lightbox__prev,
  .lightbox__next { width: 40px; height: 40px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close svg,
  .lightbox__prev svg,
  .lightbox__next svg { width: 18px; height: 18px; }
  .lightbox__counter { top: 18px; right: 16px; font-size: 15px; }
}

/* ==========================================================================
   Section 9 — Hogyan zajlik (4 lépés vertikális timeline)
   ========================================================================== */

.process__list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}
@media (min-width: 1024px) {
  .process__list {
    margin-top: 64px;
    max-width: 760px;
  }
}

.process__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.process__step:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .process__step {
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding-bottom: 48px;
  }
}

/* Vékony összekötő vonal a számok között (kivéve az utolsót) */
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23.5px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background-color: var(--border-divider);
}
@media (min-width: 768px) {
  .process__step:not(:last-child)::after {
    left: 31.5px;
    top: 52px;
  }
}

.process__step-num {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  .process__step-num { font-size: 40px; }
}

.process__step-body {
  padding-top: 2px;
}

.process__step-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.process__step-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Lent — last-minute pill banner */
.process__urgent-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .process__urgent-wrap { margin-top: 56px; }
}

.process__urgent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background-color: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.process__urgent-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   Section 8 — Mit kapnak (All-inclusive, két oszlop)
   ========================================================================== */

.package__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 900px) {
  .package__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 64px;
  }
}

.package-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  padding: 32px;
}
@media (max-width: 640px) {
  .package-card { padding: 24px; }
}

.package-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 24px;
}

.package-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-card__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.package-card__icon {
  color: var(--accent-primary);
  flex-shrink: 0;
  display: flex;
  margin-top: 2px;
}

.package-card__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.package__note {
  margin: 32px auto 0;
  max-width: 620px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .package__note { margin-top: 40px; }
}

/* ==========================================================================
   Section 7 — Milyen eseményekre (8 esemény-tile)
   ========================================================================== */

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .events__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .events__grid {
    gap: 24px;
    margin-top: 64px;
  }
}

.event-tile {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}
@media (max-width: 640px) {
  .event-tile { padding: 24px 12px; }
}

.event-tile:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(245, 166, 35, 0.15);
}

.event-tile__icon {
  color: var(--accent-primary);
  display: flex;
}

.event-tile__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.event-tile__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .event-tile { transition: none; }
  .event-tile:hover { transform: none; }
}

/* ==========================================================================
   Section 6 — Közbenső CTA sáv
   ========================================================================== */

.cta-band__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-band__lead {
  margin: 24px auto 0;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--accent-primary);
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 200ms ease, transform 200ms ease;
}

.cta-band__phone:hover {
  color: var(--accent-hover);
  transform: scale(1.02);
}

.cta-band__phone:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 6px;
}

.cta-band__phone-icon {
  width: clamp(24px, 3.2vw, 36px);
  height: clamp(24px, 3.2vw, 36px);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.cta-band__phone-number {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__phone { transition: none; }
  .cta-band__phone:hover { transform: none; }
}

/* ==========================================================================
   Section 5 — Termeink (3 terem-kártya)
   ========================================================================== */

.rooms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rooms__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
  }
}

.room-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.room-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(245, 166, 35, 0.15);
}

.room-card__media {
  position: relative;
}

/* A placeholder kártyán belül világosabb (secondary) — kontraszt
   a kártya tertiary bg-jével. Border + radius törölve, mert a kártya
   borderje és overflow:hidden kezeli a külső formát. */
.room-card .placeholder {
  background-color: var(--bg-secondary);
  border-radius: 0;
  border: none;
}

/* Valódi terem-fotó — 4:3 keret, cover-crop a kis arányeltérésre */
.room-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.room-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 640px) {
  .room-card__body { padding: 24px; }
}

.room-card__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
}

.room-card__capacity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}

.room-card__capacity-icon {
  color: var(--accent-primary);
  display: inline-flex;
  flex-shrink: 0;
}

.room-card__capacity-icon svg {
  width: 18px;
  height: 18px;
}

.room-card__capacity strong {
  font-weight: 600;
  color: var(--accent-primary);
}

.room-card__desc {
  margin: 16px 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.room-card__best {
  margin-top: auto;      /* push to bottom (cards bottom-alignelnek)  */
  padding-top: 22px;
  border-top: 1px solid var(--border-divider);
}

.room-card__best-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.room-card__best-list {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .room-card { transition: none; }
  .room-card:hover { transform: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-divider);
  padding-top: 64px;
  padding-bottom: 32px;
  color: var(--text-secondary);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 64px;
  }
}

.site-footer__col-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 14px;
  font-weight: 500;
}

.site-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer p { margin: 4px 0; }

.site-footer a:hover {
  color: var(--accent-primary);
  transition: color 200ms ease;
}

.site-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-divider);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border-divider);
  text-underline-offset: 4px;
}
.site-footer__bottom a:hover { color: var(--accent-primary); }

/* ==========================================================================
   Jogi oldalak (adatvédelem / impresszum) — olvasható szövegoszlop
   ========================================================================== */

.legal {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.legal__updated {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.legal h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--text-primary);
  margin: 44px 0 14px;
  line-height: 1.3;
}

.legal h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--accent-muted);
  margin: 28px 0 10px;
  line-height: 1.4;
}

.legal p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.legal ul {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc;
}

.legal li { margin-bottom: 6px; }

.legal a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__data {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-divider);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
}

.legal__data p { margin-bottom: 6px; }

.legal__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-divider);
}

/* ==========================================================================
   Cookie consent sáv (vanilla JS-ből injektálva)
   ========================================================================== */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-divider);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 85vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.cookie-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* mobilon a sticky bottom bar fölé emeljük */
@media (max-width: 767.98px) {
  .cookie-bar {
    bottom: calc(var(--bottombar-h) + 16px);
  }
}

/* fő sor: szöveg + gombok */
.cookie-bar__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-bar__main {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.cookie-bar__text {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.cookie-bar__text a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.cookie-bar__btn--accept {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  border: 1.5px solid var(--accent-primary);
}
.cookie-bar__btn--accept:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); }

.cookie-bar__btn--reject {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-divider);
}
.cookie-bar__btn--reject:hover { border-color: var(--text-muted); color: var(--text-primary); }

.cookie-bar__btn--ghost {
  background-color: transparent;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-bar__btn--ghost:hover { color: var(--text-primary); }

.cookie-bar__btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* lenyíló beállító panel */
.cookie-bar__panel {
  border-top: 1px solid var(--border-divider);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-bar__panel[hidden] { display: none; }

.cookie-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-cat__info { max-width: 560px; }

.cookie-cat__title {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.cookie-cat__desc {
  display: block;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 2px;
}

.cookie-cat__always {
  flex-shrink: 0;
  color: var(--accent-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-top: 2px;
}

.cookie-bar__panel-actions {
  display: flex;
  justify-content: flex-end;
}

/* kapcsoló (toggle switch) */
.cookie-switch {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.cookie-switch__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-switch__track {
  position: absolute;
  inset: 0;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-divider);
  border-radius: 999px;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.cookie-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-color: var(--text-muted);
  border-radius: 50%;
  transition: transform 200ms ease, background-color 200ms ease;
}
.cookie-switch__input:checked + .cookie-switch__track {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
}
.cookie-switch__input:checked + .cookie-switch__track .cookie-switch__thumb {
  transform: translateX(20px);
  background-color: var(--bg-primary);
}
.cookie-switch__input:focus-visible + .cookie-switch__track {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Nyelvváltó (SK / HU) a fejlécben
   ========================================================================== */

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border-divider);
  border-radius: 4px;
  padding: 2px;
  background-color: rgba(10, 10, 10, 0.35);
}

.lang-switch__item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 5px 9px;
  border-radius: 3px;
  text-decoration: none;
  transition: color 200ms ease, background-color 200ms ease;
}

.lang-switch__item:hover { color: var(--text-primary); }

.lang-switch__item.is-active {
  color: var(--bg-primary);
  background-color: var(--accent-primary);
}

.lang-switch__item:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}
