/* ==========================================================================
   1. REGISZTER & VÁLTOZÓK
   ========================================================================== */
:root {
  --primary-blue: #0f172a;     /* Mély éjszakai kék */
  --accent-ice: #e2e8f0;       /* Jégfehér a finom részletekhez */
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(1rem);
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #090d16;
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.serif-font {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

/* ==========================================================================
   2. TOP INFO BAR (Mobil alapértelmezés: elrejtve a szűkös hely miatt)
   ========================================================================== */
.top-bar {
  display: none;
  background: rgba(9, 13, 22, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.625rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.top-bar-container {
  max-width: 81.25rem; /* 1300px */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   3. MODERN GLASS NAVBAR & MOBIL MENÜ (Mobile-First)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  will-change: background-color, border-color, padding;
  transform: translateZ(0);
}

.navbar.scrolled {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--glass-border);
  padding: 0.875rem 0;
}

.nav-container {
  max-width: 81.25rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 400;
  z-index: 1100; /* A nyitott menü felett marad a logó */
}

/* Mobil Hamburger Gomb */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 0.875rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100; /* Mindig a nyitott overlay felett van */
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hamburger ikonná alakulása X-szé kinyitáskor */
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* TELJES KÉPERNYŐS MOBILMENÜ OVERLAY */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Dizájnos sötét, mélytengeri/alpesi éjszakai háttér finom blur effekttel */
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}


/* Aktivált állapot (Kinyitott menü) */
.nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Menüpontok stílusa */
.nav-item a {
  font-size: 1.75rem; /* Nagyobb, elegáns méret mobilon */
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition);
  font-weight: 400;
}

.nav-item a:hover {
  color: #fbbf24;
  transform: translateY(-2px);
}

.nav-item.nav-cta a {
  font-size: 1.25rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 0.75rem 2rem;
  border-radius: 6.25rem;
  margin-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Kizárólag min-width)
   ========================================================================== */

/* Asztali / Tablet Fekvő nézet (768px és felette) */
@media (min-width: 48rem) {
  .top-bar {
    display: block;
  }

  .navbar {
    top: 2.25rem;
  }

  .nav-toggle {
    display: none;
  }

  /* Visszaállás hagyományos vízszintes asztali menüsorra */
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    flex-direction: row;
    gap: 2rem;
  }

  .nav-item a {
    font-size: 1rem;
  }

  .nav-item.nav-cta a {
    font-size: 1rem;
    margin-top: 0;
    padding: 0.625rem 1.25rem;
  }

  .nav-item.nav-cta a:hover {
    background: var(--text-light);
    color: #090d16;
  }
}

/* ==========================================================================
   4. HERO SZEKCIÓ (Mobile-First)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7.5rem 1.5rem 0 1.5rem;
  background: linear-gradient(rgba(9, 13, 22, 0.3), rgba(9, 13, 22, 0.7)),
              url('images/hero-bg-2.webp');
  background-size: cover;
  background-position: center;
}

.hero-container {
  max-width: 81.25rem;
  margin: auto auto 2.5rem auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-end;
}

.hero-content {
  max-width: 38.75rem;
  text-align: left;
}

.rating-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-badge span { color: #fbbf24; }

.hero-title {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 6.25rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: none
}

.btn-action span.icon-arrow {
  width: 1.75rem;
  height: 1.75rem;
  background: #ffffff;
  color: #090d16;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: var(--transition);
}

.btn-action:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-action:hover span.icon-arrow {
  transform: translateX(2px);
}

/* Asztali nézettől (pl. 1024px / 64rem felett) megjelenítjük */
@media (min-width: 64rem) {
  .btn-action {
    display: inline-flex; /* Vagy display: flex; ha ikon is van benne */
  }
}

/*.hero-visual {
  display: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}*/

.hero-visual {
  display: flex;
  justify-content: center; /* Vízszintesen középre helyezi a badge-et */
  align-items: center;     /* Függőlegesen középre igazít */
  width: 100%;
}

.location-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #ffffff;
}

@media (min-width: 64rem) { /* 1024px */
  .hero-visual {
  display: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
}

/* ==========================================================================
   5. STATISZTIKÁK ÉS VELEMÉNY KÁRTYA (Hero Footer)
   ========================================================================== */
.hero-footer {
  max-width: 81.25rem;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  align-items: center;
}

.stats-group {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 300;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1rem;
  border-radius: 1rem;
  max-width: 22.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-align: left;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #334155 url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=150&q=80') center/cover;
}

.testimonial-body p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-body span {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.375rem;
}

/* ==========================================================================
   6. FOGLALÁSI SÁV (Booking Bar - Szekcióhatáron Lebegő)
   ========================================================================== */
.booking-bar-wrapper {
  max-width: 81.25rem;
  width: 100%;
  margin: 2.5rem auto -2.5rem auto;
  z-index: 10;
  padding: 0 0.5rem;
}

.booking-bar {
  width: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.booking-field input,
.booking-field select {
  border: none;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  background: transparent;
  padding: 0.25rem 0;
}

.booking-field input[type="text"] {
  cursor: pointer;
  width: 100%;
}

.booking-field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.booking-btn {
  background: #ffffff;
  color: #090d16;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 6.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}

.booking-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   INTRO & BRAND STORY SZEKCIÓ (Mobile-First)
   ========================================================================== */

.intro-section {
  background-color: #090d16;
  color: var(--text-light);
  /* Megfelelő térköz a felette lévő lebegő booking-bar miatt */
  padding: 6rem 1.5rem 4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-container {
  max-width: 81.25rem; /* 1300px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Fejléc elrendezés */
.intro-header {
  text-align: center;
  max-width: 42.5rem; /* 680px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-header .sub-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.intro-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-light);
}

.intro-header .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Szolgáltatások Grid (Mobil alapértelmezés: 1 oszlop) */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Kártyák üveghatású dizájnja */
.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}

.amenity-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.amenity-card h3 {
  font-size: 1.35rem;
  color: var(--text-light);
}

.amenity-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Kizárólag min-width)
   ========================================================================== */

/* Tablet nézet (768px és felette) */
@media (min-width: 48rem) {
  .intro-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

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

/* ==========================================================================
   SUITES & ACCOMMODATION SZEKCIÓ (Mobile-First)
   ========================================================================== */

.suites-section {
  background-color: #0b0f19;
  color: var(--text-light);
  padding: 5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suites-container {
  max-width: 81.25rem; /* 1300px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.suites-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suites-header .sub-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.suites-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
}

.suites-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Kártya elrendezés (Mobil alapértelmezés: 1 oszlop) */
.suites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.suite-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.suite-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-0.25rem);
}

.suite-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.suite-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.suite-card:hover .suite-image-wrapper img {
  transform: scale(1.05);
}

.suite-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(9, 13, 22, 0.75);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.35rem 0.875rem;
  border-radius: 6.25rem;
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.suite-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.suite-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.suite-meta .dot {
  opacity: 0.5;
}

.suite-content h3 {
  font-size: 1.5rem;
  color: var(--text-light);
}

.suite-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.suite-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suite-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-suite-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-suite-link:hover {
  color: var(--text-muted);
  transform: translateX(0.25rem);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Kizárólag min-width)
   ========================================================================== */

/* Tablet nézet (768px és felette) */
@media (min-width: 48rem) {
  .suites-section {
    padding: 7rem 2rem;
  }

  .suites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Asztali nézet (1024px és felette) */
@media (min-width: 64rem) {
  .suites-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}




/* ==========================================================================
   UNIVERZÁLIS MODAL STÍLUSOK (Szigorú Mobile-First)
   ========================================================================== */

/* Teljes képernyős overlay Flexbox alapon */
.suite-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Aktív állapot */
.suite-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal kártya modern Flexbox elrendezéssel */
.suite-modal-card {
  position: relative;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 42.5rem; /* 680px */
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.7);
}

/* Bezáró X gomb */
.suite-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(9, 13, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.suite-modal-close:hover {
  background: #ffffff;
  color: #090d16;
}

/* 1. Kép a szobáról */
.suite-modal-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090d16;
}

.suite-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2. Tartalom szekció */
.suite-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.suite-modal-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.suite-modal-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suite-modal-header h3 {
  font-size: 1.75rem;
  color: #ffffff;
  line-height: 1.2;
}

.suite-modal-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* SVG ikonos felszereltségek gap elrendezéssel */
.suite-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.875rem;
  border-radius: 6.25rem;
  font-size: 0.8rem;
  color: #ffffff;
}

/* Az ikonok színének finomhangolása */
.amenity-tag i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Lábléc elemei */
.suite-modal-footer {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suite-modal-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

.suite-modal-price span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.suite-modal-cta {
  background: #ffffff;
  color: #090d16;
  text-align: center;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 6.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.suite-modal-cta:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Kizárólag min-width)
   ========================================================================== */

/* Tablet és Desktop nézet (576px felett) */
@media (min-width: 36rem) {
  .suite-modal-body {
    padding: 2rem;
  }

  .suite-modal-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   PARALLAX SECTION (Szigorú Mobile-First)
   ========================================================================== */

.parallax-section {
  position: relative;
  width: 100%;
  min-height: 50vh; /* Fix magasság helyett rugalmas min-height */
  
  /* Parallax háttér beállítása */
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1920&q=80');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* Görgetési effektus (Desktopon fixált háttér) */
  background-attachment: scroll; /* Mobilon a stabil teljesítményért */
}

/* Sötétítő réteg a szöveg tökéletes olvashatóságáért */
.parallax-overlay {
  width: 100%;
  min-height: 50vh;
  background: rgba(9, 13, 22, 0.65);
  padding: 4rem 1.5rem;
  
  /* Flexbox alapú középre igazítás (abszolút pozicionálás nélkül) */
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-content {
  max-width: 50rem; /* 800px */
  text-align: center;
  color: #ffffff;
  
  /* Elemek közötti rugalmas távolság */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.parallax-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.parallax-content blockquote {
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.parallax-author {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .parallax-section,
  .parallax-overlay {
    min-height: 60vh;
  }

  .parallax-content blockquote {
    font-size: 2.25rem;
  }
}

@media (min-width: 64rem) { /* 1024px - Desktop */
  /* Asztali nézetben aktiváljuk a valódi parallax (fixed background) hatást */
  .parallax-section {
    background-attachment: fixed;
  }

  .parallax-overlay {
    padding: 6rem 2rem;
  }
}

/* ==========================================================================
   EXPERIENCES SECTION (Szigorú Mobile-First)
   ========================================================================== */

.experiences-section {
  padding: 4rem 1.5rem;
  background-color: #090d16;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
}

/* Szekció fejléce */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.section-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Experiences Grid Layout (Mobilon 1 oszlop) */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Élmény kártya */
.experience-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.experience-card:hover .experience-image img {
  transform: scale(1.05);
}

/* Kártya tartalma */
.experience-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
}

.experience-content h3 {
  font-size: 1.25rem;
  color: #ffffff;
}

.experience-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) { /* 1024px - Desktop */
  .experiences-section {
    padding: 6rem 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

/* ==========================================================================
   HERITAGE & PHILOSOPHY SECTION (Szigorú Mobile-First)
   ========================================================================== */

.heritage-section {
  padding: 4rem 1.5rem;
  background-color: #0d121f;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
}

/* Rugalmas elrendezés (Mobilon 1 oszlop egymás alatt) */
.heritage-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

/* Kép konténer */
.heritage-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.heritage-image-wrapper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Képen lévő kiemelt jelvény */
.heritage-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.heritage-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.heritage-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* Szöveges blokk */
.heritage-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section-header.align-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.heritage-content h2 {
  font-size: 1.85rem;
  line-height: 1.25;
  color: #ffffff;
}

.heritage-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

/* Számadatok / Statisztikák */
.heritage-highlights {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
}

.heritage-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  color: #ffffff;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 64rem) { /* 1024px - Desktop */
  .heritage-section {
    padding: 6rem 2rem;
  }

  /* Kétoszlopos CSS Grid elrendezés */
  .heritage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .heritage-image-wrapper img {
    aspect-ratio: 1 / 1; /* Asztali nézetben négyzetesebb arány */
  }

  .heritage-content h2 {
    font-size: 2.5rem;
  }

  .heritage-badge {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1rem 1.5rem;
  }
}

/* ==========================================================================
   PARALLAX HOT TUB SECTION (Szigorú Mobile-First)
   ========================================================================== */

.hottub-parallax {
  position: relative;
  width: 100%;
  min-height: 55vh;
  
  /* Gőzölgő dézsafürdő és havas hegyek háttérkép */
  background-image: url('images/parallax-2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll; /* Mobilon a folyamatos teljesítményért */
}

/* Sötétített maszk a tökéletes kontrasztért */
.hottub-parallax .parallax-overlay {
  width: 100%;
  min-height: 55vh;
  background: rgba(9, 13, 22, 0.55);
  padding: 4rem 1.5rem;
  
  /* Flexbox alapú tiszta középre igazítás */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hottub-parallax .parallax-content {
  max-width: 48rem; /* 768px */
  text-align: center;
  color: #ffffff;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hottub-parallax .parallax-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

.hottub-parallax h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.hottub-parallax .parallax-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

/* CTA Gomb a parallax-on belül */
.parallax-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 6.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  margin-top: 0.5rem;
}

.parallax-cta:hover {
  background: #ffffff;
  color: #090d16;
  border-color: #ffffff;
  transform: translateY(-0.125rem);
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .hottub-parallax,
  .hottub-parallax .parallax-overlay {
    min-height: 65vh;
  }

  .hottub-parallax h2 {
    font-size: 2.75rem;
  }
}

@media (min-width: 64rem) { /* 1024px - Desktop */
  /* Asztali nézetben aktiváljuk a fixált parallax görgetést */
  .hottub-parallax {
    background-attachment: fixed;
  }

  .hottub-parallax .parallax-overlay {
    padding: 6rem 2rem;
  }
}

/* ==========================================================================
   TESTIMONIALS & AWARDS SECTION (Szigorú Mobile-First)
   ========================================================================== */

.testimonials-section {
  padding: 4rem 1.5rem;
  background-color: #090d16;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
}

/* Fejléc */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.section-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Grid (Mobilon 1 oszlop) */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Értékelő Kártya */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.25rem);
}

.testimonial-stars {
  color: #d4af37; /* Elegáns arany árnyalat */
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.author-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Awards Sáv */
.awards-wrapper {
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.awards-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 0.0625rem solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.award-item i {
  color: #d4af37;
  font-size: 1rem;
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 64rem) { /* 1024px - Desktop */
  .testimonials-section {
    padding: 6rem 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

/* ==========================================================================
   LOCATION & ARRIVAL SECTION (Szigorú Mobile-First)
   ========================================================================== */

.location-section {
  padding: 4rem 1.5rem;
  background-color: #0d121f;
  /*background-image:
    linear-gradient(rgba(9, 13, 22, 0.85), rgba(9, 13, 22, 0.85)),
    url('images/location-bg.webp');
  background-size: cover;
  background-position: center;*/
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
}

/* Rugalmas elrendezés (Mobilon 1 oszlop) */
.location-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header.align-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.location-content h2 {
  font-size: 2rem;
  line-height: 1.25;
}

.section-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Cím kártya */
.location-address-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.address-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37; /* Arany akcentus */
  font-size: 1.1rem;
  flex-shrink: 0;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.address-title {
  font-size: 0.95rem;
  color: #ffffff;
}

.address-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Transzfer opciók */
.transfer-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transfer-heading {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.transfer-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.transfer-icon {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.2rem;
  width: 1.5rem;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.transfer-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.transfer-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Térkép kártya */
.location-map-wrapper {
  width: 100%;
}

.map-card {
  position: relative;
  width: 100%;
  min-height: 22rem; /* Rugalmas magasság fix érték helyett */
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  background: #090d16;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(120%); /* Elegáns, sötét módos térkép filter */
  display: block;
}

.map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  font-size: 0.8rem;
  color: #ffffff;
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 64rem) { /* 1024px - Desktop */
  .location-section {
    padding: 6rem 2rem;
  }

  /* 2 oszlopos Grid elrendezés */
  .location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .location-content h2 {
    font-size: 2.5rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 32rem; /* Asztalon magasabb térkép a tartalom kíséréséhez */
  }
}

/* ==========================================================================
   CONTACT & BOOKING SECTION (Szigorú Mobile-First)
   ========================================================================== */

.contact-section {
  padding: 4rem 1.5rem;
  background-color: #090d16;
  background-image:
    linear-gradient(rgba(9, 13, 22, 0.85), rgba(9, 13, 22, 0.85)),
    url('images/location-bg.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

/* Általános elrendezés és szélességi korlát */
.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* --------------------------------------------------------------------------
   BAL OLDAL: CONCIERGE ÉS ELÉR HETŐSÉGEK
   -------------------------------------------------------------------------- */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4af37;
}

.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.section-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: #d4af37;
}

/* --------------------------------------------------------------------------
   JOBB OLDAL: ŰRLAP KÁRTYA (.contact-form-card)
   -------------------------------------------------------------------------- */

.contact-form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-header h2 {
  font-size: 1.75rem;
  color: #ffffff;
  line-height: 1.2;
}

.contact-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-row-2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
  background-color: #090d16;
  color: #ffffff;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #ffffff;
  color: #090d16;
  border: none;
  border-radius: 6.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: #d4af37;
  color: #ffffff;
  transform: translateY(-0.125rem);
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop töréspontok)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .contact-form-card {
    padding: 2.5rem 2rem;
  }

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

@media (min-width: 64rem) { /* 1024px - Desktop */
  .contact-section {
    padding: 6rem 2rem;
  }

  /* Kétoszlopos elrendezés: Bal oldal Concierge, Jobb oldal Űrlap */
  .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .contact-header h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   SITE FOOTER (Szigorú Mobile-First elvek alapján)
   ========================================================================== */

.site-footer {
  background-color: #060910;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

/* Fő footer elrendezés mobilon */
.footer-wrapper {
  display: flex;
  padding-inline: 1.25rem;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

/* Brand oszlop */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  border-color: #d4af37;
  background: #d4af37;
  color: #090d16;
}

/* Navigációs oszlopok */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Hírlevél oszlop */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-form .input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 3.125rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-form .input-group:focus-within {
  border-color: #d4af37;
}

.newsletter-form input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffffff;
  color: #090d16;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.newsletter-form button:hover {
  background: #d4af37;
  color: #ffffff;
}

/* Alsó sáv */
.footer-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

.footer-bottom-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   MIN-WIDTH BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

@media (min-width: 48rem) { /* 768px - Tablet */
  .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-bottom-wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 64rem) { /* 1024px - Desktop */
  .site-footer {
    padding-top: 5rem;
  }

  .footer-wrapper {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   9. FLATPICKR NAPTÁR EGYEDI STÍLUSOK
   ========================================================================== */
.flatpickr-calendar {
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(1.25rem) !important;
  -webkit-backdrop-filter: blur(1.25rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  border-radius: 1rem !important;
  font-family: inherit !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #0f172a !important;
}

span.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 500 !important;
}

.flatpickr-day {
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 0.5rem !important;
  transition: all 0.2s ease;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #ffffff !important;
  color: #090d16 !important;
  border-color: #ffffff !important;
  font-weight: 600;
}

.flatpickr-day.today {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS (Mobile-First: Kizárólag min-width)
   ========================================================================== */

/* Tablet nézet (576px és felette) */
@media (min-width: 36rem) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Kisebb Asztali / Tablet Fekvő (768px és felette) */
@media (min-width: 48rem) {
  .top-bar {
    display: block;
  }

  .navbar {
    top: 0;
  }

  .nav-toggle {
    display: none;
  }

  /* Visszaállás hagyományos vízszintes asztali menüsorra */
  .nav-menu {
    position: top;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    flex-direction: row;
    gap: 2rem;
  }

  .nav-item a {
    font-size: 1rem;
  }

  .nav-item.nav-cta a {
    font-size: 1rem;
    margin-top: 0;
    padding: 0.625rem 1.25rem;
  }

  .nav-item.nav-cta a:hover {
    background: var(--text-light);
    color: #090d16;
  }

/* Hover, amikor a navbar még áttetsző / "nem látható" */
  .navbar .nav-item a:hover {
    color: #d9d9d9; /* Pl. egy világosabb jégkék / akcentus szín */
    opacity: 0.8;
  }

  /* Hover, amikor a navbar már látható (.scrolled osztály aktív) */
  .navbar.scrolled .nav-item a:hover {
    color: #d9d9d9; /* Pl. meleg prémium arany tónus a sötét háttér előtt */
    opacity: 1;
  }

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

  .booking-bar-wrapper {
    margin-bottom: -1.75rem;
  }

  .booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 0.6fr auto;
    gap: 1.5rem;
    padding: 0.75rem 2rem;
    border-radius: 6.25rem;
    align-items: center;
  }

  .booking-field:not(:nth-child(3)) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 1rem;
  }

  .booking-field input[type="text"] {
    width: 6.5rem;
  }

  .booking-btn {
    width: auto;
  }

  .contact-section {
    padding-top: 6.5rem;
  }
}

/* Nagy Asztali nézet (992px és felette) */
@media (min-width: 62rem) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero-visual {
    align-items: flex-end;
  }
  .hero-visual {
  display: flex;
}

/* Siker modal egyedi stílusai */
.success-modal-card {
  max-width: 28rem; /* Kisebb, kompakt kártya a sikerüzenethez */
  text-align: center;
}

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

.success-icon {
  font-size: 3rem;
  color: #10b981; /* Kellemes zöld szín */
  margin-bottom: 0.5rem;
}

.modal-close-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}