/* Vidéki, rusztikus és barátságos színpaletta */
    :root {
      /* Santorini Kékes-Fehéres Színpaletta */
      --santorini-blue: #0055A5;        /* Klasszikus kupolakék / fő hangsúlyos szín */
      --aegean-dark: #002B49;           /* Mélykék (a sötétzöld helyett a szövegekhez, gombokhoz) */
      --mediterranean-light: #EBF3FA;   /* Nagyon világos frissítés, a meleg bézs helyett */
      --pure-white: #FFFFFF;            /* Tisztán ragyogó fehér */
      --coral-accent: #E07A5F;          /* Lágy korall / naplemente kiemelő szín (opcionális gombokhoz) */
      
      /* Meglévő változók átirányítása az új színekre */
      --forest-green: var(--aegean-dark);
      --terracotta: var(--santorini-blue);
      --terracotta-hover: #004080;
      --warm-beige: var(--mediterranean-light);
      --text-dark: var(--aegean-dark);
      --text-muted: #5A6E7F;
      
      --transition: all 0.3s ease;
    }
    
    /* 3. Fejléc kitakarás elleni védelem (a sticky header miatt) */
section[id] {
  scroll-margin-top: 80px; /* A fejléc magasságától függően */
}

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

    body {
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--warm-beige);
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Klasszikus, barátságos talpas betűtípus a vidéki hangulathoz */
    h1, h2, h3, .guesthouse-serif {
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 400;
      color: var(--forest-green);
    }

    /* --- PREMIUM STICKY NAVBAR WITH SLIDING INDICATOR --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 85, 165, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 43, 73, 0.08);
  padding: 2px 0;
}

.navbar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Fejléc Logó Kép Stílusai */
.header-logo-img {
  max-height: 48px; /* Tetszőlegesen állítható magasság (pl. 40px - 55px) */
  width: auto;      /* Megtartja az eredeti képarányt */
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Finom lebegő hatás egérrávitelkor */
.nav-brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

/* Brand Logo */
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  z-index: 1002;
}

.brand-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--aegean-dark, #002B49);
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.brand-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--santorini-blue, #0055A5);
  font-weight: 700;
  margin-top: 2px;
}

.nav-brand:hover .brand-title {
  color: var(--santorini-blue, #0055A5);
}

/* Navigation Track and Sliding Pill Container */
.nav-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  background: rgba(0, 85, 165, 0.03);
  padding: 5px;
  border-radius: 40px;
  border: 1px solid rgba(0, 85, 165, 0.08);
}

.nav-item {
  position: relative;
  z-index: 2;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  color: var(--text-muted, #5A6E7F);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 30px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--aegean-dark, #002B49);
}

.nav-link.active {
  color: var(--santorini-blue, #0055A5);
}

/* Dynamically Positioned Sliding Pill */
.nav-sliding-pill {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 85, 165, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  opacity: 0;
}

.nav-sliding-pill.visible {
  opacity: 1;
}

/* Book Now CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--santorini-blue, #0055A5);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 85, 165, 0.25);
  margin-left: 1.25rem;
}

.nav-cta-btn:hover {
  background-color: var(--santorini-blue-hover, #004080);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 85, 165, 0.35);
}

/* Mobile Navigation Drawer & Hamburger */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--aegean-dark, #002B49);
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  outline: none;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta-btn {
    display: none;
  }

  /* Beúszó mobil menü panel javítása */
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 1.5rem 2rem 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 1005; /* Emelve 1005-re, hogy garantáltan minden felett legyen! */
    overflow-y: auto;
  }

  .nav-menu-wrapper.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: none;
    gap: 0.5rem;
    padding: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1.05rem;
  }

  .nav-sliding-pill {
    display: none !important;
  }

  .nav-link.active {
    background-color: var(--mediterranean-light, #F4F8FC);
    color: var(--santorini-blue, #0055A5);
  }

  /* Mobil CTA gomb megjelenítés a menün belül */
  .mobile-cta {
    display: flex !important;
    margin: 1.5rem 0 0 0;
    width: 100%;
    justify-content: center;
  }

  .mobile-cta .nav-cta-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

/* Háttér sötétítés (Backdrop) */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 43, 73, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999; /* A header (1000) ALÁ kerül! */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
  visibility: hidden;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

    /* --- VIDÉKI HERO SZEKCIÓ --- */
    .hero {
      position: relative;
      min-height: 90vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 20px 60px 20px;
      background: radial-gradient(circle at 80% 20%, rgba(45, 74, 34, 0.04) 0%, transparent 50%),
                  radial-gradient(circle at 20% 80%, rgba(200, 122, 83, 0.03) 0%, transparent 50%);
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: center;
      z-index: 2;
    }

    @media (min-width: 992px) {
      .hero-container {
        grid-template-columns: 1fr 1fr; /* Egyenlő, 50-50%-os eloszlás a két oldal között */
        gap: 3.75rem; /* 60px */
      }
    }

    .hero-content {
      max-width: 600px;
    }

    .hero-subtitle {
      color: var(--terracotta);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-title .alt-font {
      font-style: italic;
      color: var(--terracotta);
    }

    .hero-description {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .btn-terracotta {
      display: inline-block;
      background: var(--terracotta);
      color: #ffffff;
      padding: 14px 32px;
      border-radius: 24px;
      font-weight: 600;
      text-decoration: none;
      font-size: 0.95rem;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(200, 122, 83, 0.2);
    }

    .btn-terracotta:hover {
      background: var(--terracotta-hover);
      transform: translateY(-1px);
    }

    /* Rusztikus képes illusztráció keret */
    .hero-visual {
    justify-content: flex-end; /* A keret szépen a jobb szélre igazodik */
  }

    /* Rusztikus képkeret tartója */
    .guesthouse-image-frame {
      position: relative;
      width: 100%;
      max-width: 28.125rem; /* 450px-re növelve (korábban 380px volt) */
      background: #ffffff;
      border: 0.875rem solid #ffffff; /* 14px-es elegáns fehér keret */
      border-radius: 0.375rem; /* 6px */
      box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.07);
      display: flex;
      flex-direction: column;
      gap: 1.25rem; /* 20px távolság a kép és a képaláírás között */
      padding: 1.25rem; /* 20px */
    }
    
    .guesthouse-image-frame::before {
      content: '';
      position: absolute;
      top: -0.375rem;
      left: -0.375rem;
      right: -0.375rem;
      bottom: -0.375rem;
      border: 1px solid rgba(45, 74, 34, 0.12);
      pointer-events: none;
    }
    
    /* Nagyobb, arányosabb kép */
    .guesthouse-img {
      width: 100%;
      height: 21.875rem; /* 350px-re növelt magasság (korábban 260px volt) */
      object-fit: cover;
      border-radius: 0.25rem;
      display: block;
    }
    
    /* Képaláírás igazítása */
    .frame-caption {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .frame-caption h3 {
      font-size: 1.375rem; /* ~22px */
      line-height: 1.3;
    }
    
    .frame-caption p {
      font-size: 0.875rem; /* ~14px */
      color: var(--text-muted);
    }

    .image-placeholder {
      width: 100%;
      height: 260px;
      background: #f0ede6;
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-style: italic;
    }

    .frame-caption {
      text-align: center;
      margin-top: 15px;
    }

    .frame-caption h3 {
      font-size: 1.3rem;
      margin-bottom: 4px;
    }

    .frame-caption p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* --- RUSZTIKUS GYORSFOGLALÁSI SÁV --- */
    .booking-bar {
      max-width: 1050px;
      width: 100%;
      background: #ffffff;
      margin: 50px auto 0 auto;
      padding: 24px 30px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(45, 74, 34, 0.05);
      border: 1px solid rgba(45, 74, 34, 0.08);
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      align-items: center;
      z-index: 10;
    }

    @media (min-width: 768px) {
      .booking-bar {
        grid-template-columns: repeat(3, 1fr) auto;
        margin-top: 60px;
        border-radius: 60px;
        padding: 16px 40px;
      }
    }

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

    .booking-field label {
      font-size: 0.8rem;
      color: var(--forest-green);
      font-weight: 600;
    }

    .booking-field input, .booking-field select {
      padding: 10px 12px;
      border: 1px solid #dcdad4;
      border-radius: 6px;
      font-size: 0.95rem;
      color: var(--text-dark);
      outline: none;
      background-color: var(--warm-beige);
      transition: var(--transition);
    }

    @media (min-width: 768px) {
      .booking-field input, .booking-field select {
        border-color: transparent;
        background-color: transparent;
        padding: 8px 0;
        border-bottom: 1px dashed #cbd5e1;
        border-radius: 0;
      }
    }

    .booking-field input:focus, .booking-field select:focus {
      border-color: var(--terracotta);
    }

    .booking-btn {
      background: var(--forest-green);
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      margin-top: auto;
      box-shadow: 0 4px 10px rgba(45, 74, 34, 0.15);
    }

    .booking-btn:hover {
      background: var(--terracotta);
    }

    /* --- PANZIÓ BEMUTATKOZÓ --- */
    .guesthouse-intro {
      background-color: #ffffff;
      padding: 100px 20px;
      border-top: 1px solid rgba(45, 74, 34, 0.05);
    }

    .intro-container {
      max-width: 750px;
      margin: 0 auto;
      text-align: center;
    }
    
    /* --- PARALLAX INTRO SZEKCIÓ (Mobile-First) --- */
    .guesthouse-intro.parallax-section {
      position: relative;
      width: 100%;
      min-height: 50vh; /* Rugalmas minimális magasság fix magasság helyett */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 1.25rem; /* 64px 20px */
      
      /* Háttérkép beállítása */
      background-image: url('images/santorini-view.webp');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      
      color: #ffffff;
      text-align: center;
      overflow: hidden;
    }
    
    /* Sötétítő réteg az olvashatóságért */
    .intro-overlay {
      position: absolute;
      inset: 0; /* top: 0, right: 0, bottom: 0, left: 0 kiváltása */
      background-color: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }
    
    /* Tartalom konténer (Flexbox segítségével pozicionálva) */
    .intro-container {
      position: relative;
      z-index: 2;
      max-width: 45rem; /* 720px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem; /* 16px térköz a h2 és p között, az egyedi margók helyett */
    }
    
    .intro-title {
      font-family: Georgia, serif;
      font-size: clamp(2rem, 4vw, 3rem); /* Dinamikus, skálázódó betűméret */
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin: 0;
    }
    
    .intro-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin: 0;
    }
    
    /* --- DESKTOP SKÁLÁZÁS (Felfelé építkező Media Query) --- */
    @media (min-width: 48rem) { /* 768px - Tablet és Desktop nézet */
      .guesthouse-intro.parallax-section {
        min-height: 60vh;
        padding: 6rem 1.25rem;
        
        /* Parallax hatás bekapcsolása nagyobb kijelzőkön */
        background-attachment: fixed;
      }
    
      .intro-container {
        gap: 1.25rem; /* 20px térköz desktopon */
      }
    }
    
    /* --- ABOUT US SZEKCIÓ (Mobile-First) --- */
.about-section {
  background-color: #ffffff;
  padding: 4rem 1.25rem; /* 64px 20px */
  border-top: 1px solid rgba(45, 74, 34, 0.05);
}

.about-container {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px gap mobilon */
  align-items: center;
}

/* Kép és jelvény konténer */
.about-visual {
  width: 100%;
}

.about-image-stack {
  position: relative;
  width: 100%;
  max-width: 31.25rem; /* 500px */
  margin: 0 auto;
}

.about-img.main-img {
  width: 100%;
  height: 22.5rem; /* 360px mobilon */
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.08);
  display: block;
}

/* Lebegő jelvény */
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1rem;
  background-color: var(--forest-green);
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 1.25rem rgba(45, 74, 34, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-number {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Szöveges tartalom */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px távolság az elemek között */
}

.about-subtitle {
  color: var(--terracotta);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-weight: 600;
}

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Funkciólista */
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px gap */
  margin-top: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(200, 122, 83, 0.12);
  color: var(--terracotta);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

    /* --- DESKTOP SKÁLÁZÁS (Felfelé építkező Media Query) --- */
    @media (min-width: 62rem) { /* 992px */
      .about-section {
        padding: 6.25rem 1.25rem; /* 100px 20px */
      }
    
      .about-container {
        display: grid;
        grid-template-columns: 1fr 1.1fr; /* Kéthasábos Grid elrendezés */
        gap: 4.5rem; /* 72px gap a kép és a szöveg között */
        align-items: center;
      }
    
      .about-visual {
        justify-content: flex-start;
      }
    
      .about-img.main-img {
        height: 28.125rem; /* 450px asztali nézetben */
      }
    
      .about-badge {
        bottom: 2rem;
        right: -1.5rem;
        padding: 1.25rem 1.5rem;
      }
    }
    
    /* --- APARTMENTS SZEKCIÓ (Mobile-First) --- */
    .apartments-section {
      background-color: var(--warm-beige);
      padding: 4rem 1.25rem; /* 64px 20px */
      border-top: 1px solid rgba(45, 74, 34, 0.05);
    }
    
    .apartments-container {
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem; /* 48px gap a fejlécek és a kártyák között */
    }
    
    /* Fejléc stílusok */
    .apartments-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .apartments-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .apartments-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .apartments-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Apartman kártyák Grid elrendezése */
    .apartments-grid {
      display: grid;
      grid-template-columns: 1fr; /* Mobilon 1 hasáb */
      gap: 2rem; /* 32px távolság a kártyák között */
    }
    
    /* Egyedi kártya felépítése */
    .apartment-card {
      background-color: #ffffff;
      border-radius: 0.75rem; /* 12px */
      overflow: hidden;
      box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(45, 74, 34, 0.06);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .apartment-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
    }
    
    .apartment-image-wrapper {
      position: relative;
      width: 100%;
      height: 15rem; /* 240px kép magasság */
      overflow: hidden;
    }
    
    .apartment-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .apartment-card:hover .apartment-img {
      transform: scale(1.04);
    }
    
    .apartment-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background-color: var(--terracotta);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.375rem 0.875rem;
      border-radius: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    /* Kártya belső tartalma (Flexbox) */
    .apartment-body {
      padding: 1.5rem; /* 24px */
      display: flex;
      flex-direction: column;
      gap: 1.25rem; /* 20px függőleges térköz */
      flex-grow: 1;
    }
    
    .apartment-meta {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }
    
    .apartment-name {
      font-size: 1.375rem; /* 22px */
      line-height: 1.3;
    }
    
    .apartment-price {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    
    .apartment-price strong {
      font-size: 1.25rem;
      color: var(--forest-green);
    }
    
    .apartment-text {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    /* Felszereltség (Amenity) Ikonos Lista */
    .apartment-amenities {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 oszlopos elrendezés az ikonoknak */
      gap: 0.875rem; /* 14px */
      padding-top: 0.5rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .amenity-item {
      display: flex;
      align-items: center;
      gap: 0.625rem; /* 10px ikon-szöveg távolság */
      font-size: 0.85rem;
      color: var(--text-dark);
    }
    
    .amenity-icon {
      color: var(--terracotta);
      font-size: 1rem;
      width: 1.25rem;
      text-align: center;
    }
    
    /* Kártya gombja */
    .apartment-btn {
      display: inline-block;
      text-align: center;
      background-color: var(--forest-green);
      color: #ffffff;
      padding: 0.875rem 1.5rem;
      border-radius: 1.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: var(--transition);
      margin-top: auto; /* A gombot mindig a kártya aljára tolja */
    }
    
    .apartment-btn:hover {
      background-color: var(--terracotta);
    }
    
    /* --- RESPONSIVE BREAKPOINTS (Felfelé építkező Media Query) --- */
    
    /* Tablet nézet (768px-től) */
    @media (min-width: 48rem) {
      .apartments-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 oszlop */
      }
    }
    
    /* Desktop nézet (1024px-től) */
    @media (min-width: 64rem) {
      .apartments-section {
        padding: 6.25rem 1.25rem; /* 100px 20px */
      }
    
      .apartments-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 oszlop mindhárom kártyának */
        gap: 2.25rem;
      }
    }
    
    /* --- AMENITIES & WELLNESS SZEKCIÓ HÁTTÉRKÉPPEL (Mobile-First) --- */
    .amenities-section {
      position: relative;
      padding: 4rem 1.25rem; /* 64px 20px */
      background-image: url('images/amenities-bg.webp');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
    }
    
    /* Finom világos/meleg overlay a kontrasztért */
    .amenities-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(253, 251, 247, 0.2); /* Lágy krémszínű fedőréteg */
      z-index: 1;
    }
    
    .amenities-container {
      position: relative;
      z-index: 2;
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    
    /* Fejléc elrendezése */
    .amenities-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .amenities-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .amenities-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .amenities-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Grid elrendezés (Mobilon 1 oszlop) */
    .amenities-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    /* Egyedi szolgáltatás kártyák (lágy, fél-áttetsző üveghatással) */
    .amenity-card {
      background-color: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(4px);
      padding: 2rem 1.5rem;
      border-radius: 0.75rem;
      border: 1px solid rgba(45, 74, 34, 0.08);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .amenity-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.08);
    }
    
    /* Ikon tartó kör */
    .amenity-icon-wrapper {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 50%;
      background-color: rgba(200, 122, 83, 0.12);
      color: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.375rem;
      flex-shrink: 0;
    }
    
    .amenity-card-title {
      font-size: 1.25rem;
      line-height: 1.3;
    }
    
    .amenity-card-text {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }
    
    /* --- RESPONSIVE BREAKPOINTS (Felfelé építkező Media Query) --- */
    
    /* Tablet nézet (768px-től) */
    @media (min-width: 48rem) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }
    
    /* Desktop nézet (1024px-től) */
    @media (min-width: 64rem) {
      .amenities-section {
        padding: 6.25rem 1.25rem;
        background-attachment: fixed; /* Parallax háttér hatás desktopon */
      }
    
      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
      }
    }
    
    /* --- GALLERY CAROUSEL SZEKCIÓ (Mobile-First) --- */
    .gallery-section {
      background-color: var(--warm-beige);
      padding: 4rem 1.25rem; /* 64px 20px */
      border-top: 1px solid rgba(45, 74, 34, 0.05);
    }
    
    .gallery-container {
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem; /* 40px gap */
    }
    
    /* Fejléc elrendezése */
    .gallery-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .gallery-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .gallery-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .gallery-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Carousel Konténer & Nyilak Elrendezése */
    .carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    /* Scroll Snap Alapú Carousel Pálya */
    .carousel-track {
      display: flex;
      gap: 1.25rem; /* 20px hézag a képek között */
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 1rem; /* Hely a görgetősáv elrejtéséhez */
      scrollbar-width: none; /* Firefox görgetősáv elrejtése */
    }
    
    .carousel-track::-webkit-scrollbar {
      display: none; /* Chrome/Safari/Edge görgetősáv elrejtése */
    }
    
    /* Egyedi Dia (Slide) */
    .carousel-slide {
      flex: 0 0 85%; /* Mobilon a kártya a kijelző 85%-át foglalja el */
      scroll-snap-align: center;
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      margin: 0;
      box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.06);
    }
    
    .gallery-img {
      width: 100%;
      height: 20rem; /* 320px magasság mobilon */
      object-fit: cover;
      display: block;
    }
    
    /* Képaláírás */
    .slide-caption {
      position: absolute;
      bottom: 0;
      inset-inline: 0;
      padding: 1.25rem 1rem 0.875rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 500;
      text-align: center;
    }
    
    /* Léptető gombok */
    .carousel-control {
      display: none; /* Mobilon elrejtve, helyette érintéssel/görgetéssel működik */
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background-color: #ffffff;
      color: var(--forest-green);
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      cursor: pointer;
      flex-shrink: 0;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .carousel-control:hover {
      background-color: var(--forest-green);
      color: #ffffff;
    }
    
    /* --- RESPONSIVE BREAKPOINTS (Felfelé építkező Media Query) --- */
    
    /* Tablet (640px-től) */
    @media (min-width: 40rem) {
      .carousel-slide {
        flex: 0 0 48%; /* Tablet nézetben egyszerre 2 kép látható részben */
      }
    
      .gallery-img {
        height: 23.75rem; /* 380px */
      }
    }
    
    /* Desktop (1024px-től) */
    @media (min-width: 64rem) {
      .gallery-section {
        padding: 6.25rem 1.25rem;
      }
    
      .carousel-control {
        display: flex; /* Gombok megjelenítése desktopon */
      }
    
      .carousel-slide {
        flex: 0 0 calc(33.333% - 0.85rem); /* Desktopon egyszerre 3 kép látható tiszta töréssel */
        scroll-snap-align: start;
      }
    
      .gallery-img {
        height: 26.25rem; /* 420px */
      }
    }
    
    /* --- REVIEWS SZEKCIÓ (Mobile-First) --- */
    .reviews-section {
      background-color: #ffffff;
      padding: 4rem 1.25rem; /* 64px 20px */
      border-top: 1px solid rgba(45, 74, 34, 0.05);
    }
    
    .reviews-container {
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem; /* 48px gap a fejléc és a kártyák között */
    }
    
    /* Fejléc elrendezése */
    .reviews-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .reviews-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .reviews-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .reviews-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Review kártyák Grid elrendezése (Mobilon 1 oszlop) */
    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem; /* 24px gap */
    }
    
    /* Értékelés kártya stílusok */
    .review-card {
      background-color: var(--warm-beige);
      padding: 2rem 1.5rem; /* 32px 24px */
      border-radius: 0.75rem;
      border: 1px solid rgba(45, 74, 34, 0.06);
      display: flex;
      flex-direction: column;
      gap: 1.25rem; /* 20px függőleges térköz az elemek között */
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .review-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.05);
    }
    
    /* Csillagok */
    .review-stars {
      color: #e6a100;
      font-size: 0.9rem;
      display: flex;
      gap: 0.25rem;
    }
    
    /* Idézet szövege */
    .review-text {
      margin: 0;
      color: var(--text-dark);
      font-size: 0.975rem;
      line-height: 1.65;
      font-style: italic;
      flex-grow: 1;
    }
    
    /* Szerző lábléc (Flexbox) */
    .review-author {
      display: flex;
      align-items: center;
      gap: 0.875rem; /* 14px */
      padding-top: 1rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .author-avatar {
      width: 2.75rem; /* 44px */
      height: 2.75rem;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    
    .author-info {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }
    
    .author-name {
      font-style: normal;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-dark);
    }
    
    .author-location {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    
    /* --- RESPONSIVE BREAKPOINTS (Felfelé építkező Media Query) --- */
    
    /* Tablet (768px-től) */
    @media (min-width: 48rem) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }
    
    /* Desktop (1024px-től) */
    @media (min-width: 64rem) {
      .reviews-section {
        padding: 6.25rem 1.25rem; /* 100px 20px */
      }
    
      .reviews-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 oszlop desktopon */
        gap: 2.25rem;
      }
    }
    
    /* --- LOCATION & ATTRACTIONS SZEKCIÓ (Mobile-First) --- */
    .location-section {
      position: relative;
      padding: 4rem 1.25rem; /* 64px 20px */
      background-image: url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=1920&q=80');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
    }
    
    /* Lágy, világos overlay a szöveg áttetsző, szép olvashatóságához */
    .location-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(253, 251, 247, 0.8);
      z-index: 1;
    }
    
    .location-container {
      position: relative;
      z-index: 2;
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem; /* 48px gap */
    }
    
    /* Fejléc elrendezése */
    .location-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .location-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .location-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .location-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Látnivalók Grid elrendezése (Mobilon 1 oszlop) */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem; /* 24px gap */
    }
    
    /* Látnivaló kártya felépítése */
    .attraction-card {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 1.75rem 1.5rem; /* 28px 24px */
      border-radius: 0.75rem;
      border: 1px solid rgba(45, 74, 34, 0.08);
      display: flex;
      gap: 1.25rem; /* 20px távolság az ikon és a szöveg között */
      align-items: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .attraction-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.06);
    }
    
    /* Ikon tartó */
    .attraction-icon-wrapper {
      width: 3rem; /* 48px */
      height: 3rem;
      border-radius: 50%;
      background-color: rgba(200, 122, 83, 0.12);
      color: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    
    .attraction-content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .attraction-name {
      font-size: 1.2rem;
      line-height: 1.3;
    }
    
    .attraction-text {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    /* --- RESPONSIVE BREAKPOINTS (Felfelé építkező Media Query) --- */
    
    /* Tablet (768px-től) */
    @media (min-width: 48rem) {
      .location-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 oszlop */
        gap: 2rem;
      }
    }
    
    /* Desktop (1024px-től) */
    @media (min-width: 64rem) {
      .location-section {
        padding: 6.25rem 1.25rem; /* 100px 20px */
        background-attachment: fixed; /* Parallax háttér hatás desktopon */
      }
    
      .location-grid {
        gap: 2.25rem;
      }
    }
    
    /* --- CONTACT & MAP SZEKCIÓ (Mobile-First) --- */
    .contact-section {
      background-color: var(--warm-beige);
      padding: 4rem 1.25rem; /* 64px 20px */
      border-top: 1px solid rgba(45, 74, 34, 0.05);
    }
    
    .contact-wrapper {
      max-width: 75rem; /* 1200px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem; /* 40px gap */
    }
    
    /* Fejléc elrendezése */
    .contact-header {
      text-align: center;
      max-width: 42.5rem; /* 680px */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .contact-subtitle {
      color: var(--terracotta);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.125rem;
      font-weight: 600;
    }
    
    .contact-title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.2;
    }
    
    .contact-description {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Kéthasábos Grid elrendezés mobilon 1 oszlop */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    
    /* Kontakt adatok kártyája */
    .contact-info-card {
      background-color: #ffffff;
      padding: 2.5rem 2rem;
      border-radius: 0.75rem;
      border: 1px solid rgba(45, 74, 34, 0.08);
      box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .info-card-title {
      font-size: 1.75rem;
      margin-bottom: 0.25rem;
      color: var(--forest-green);
    }
    
    .info-card-lead {
      font-size: 0.9rem;
      color: var(--terracotta);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
      margin-bottom: 2rem;
    }
    
    /* Elérhetőségek listája */
    .contact-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background-color: rgba(200, 122, 83, 0.12);
      color: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      flex-shrink: 0;
    }
    
    .contact-text-group {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    
    .contact-text-group strong {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--forest-green);
    }
    
    .contact-text-group span,
    .contact-text-group a {
      font-size: 0.95rem;
      color: var(--text-dark);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-text-group a:hover {
      color: var(--terracotta);
    }
    
    /* Térkép konténer */
    .contact-map-wrapper {
      width: 100%;
      min-height: 350px;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(45, 74, 34, 0.08);
    }
    
    .contact-map-iframe {
      width: 100%;
      height: 100%;
      min-height: 350px;
      border: 0;
      display: block;
    }
    
    /* --- RESPONSIVE BREAKPOINTS --- */
    @media (min-width: 64rem) { /* 1024px-től */
      .contact-section {
        padding: 6.25rem 1.25rem; /* 100px 20px */
      }
    
      .contact-grid {
        grid-template-columns: 1fr 1.2fr; /* Bal oldalon adatok, jobb oldalon a térkép */
        gap: 2.5rem;
      }
    
      .contact-map-wrapper,
      .contact-map-iframe {
        min-height: 100%; /* Kitölti a bal oldali kártya magasságát */
      }
    }
    
    /* --- PARALLAX FOGLALÁSI ŰRLAP SZEKCIÓ --- */
    .booking-section {
      position: relative;
      padding: 100px 20px;
      background-image: url('images/booking-bg.webp'); /* Cseréld ki a saját képedre */
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    /* Sötétítő / Finomító réteg a jó olvashatóságért */
    .booking-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(45, 74, 34, 0.35); /* Erdőzöld árnyalatú lágy sötétítés */
      z-index: 1;
    }
    
    .booking-container {
      position: relative;
      z-index: 2;
      max-width: 650px;
      margin: 0 auto;
      background: #ffffff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(45, 74, 34, 0.08);
    }
    
    .booking-header {
      text-align: center;
      margin-bottom: 32px;
    }
    
    .booking-header h2 {
      font-size: 2rem;
      margin-bottom: 8px;
      color: var(--forest-green);
    }
    
    .booking-header p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    
    .booking-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    @media (min-width: 576px) {
      .booking-form .form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    
    .form-group label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--forest-green);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px;
      border: 1px solid #dcdad4;
      border-radius: 6px;
      font-size: 0.95rem;
      outline: none;
      background-color: var(--warm-beige);
      transition: var(--transition);
      color: var(--text-dark);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--forest-green);
      background-color: #ffffff;
      box-shadow: 0 0 0 3px rgba(45, 74, 34, 0.08);
    }
    
    .form-submit-btn {
      background-color: var(--terracotta);
      color: #ffffff;
      border: none;
      padding: 16px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.95rem;
      transition: var(--transition);
      margin-top: 10px;
      box-shadow: 0 4px 12px rgba(200, 122, 83, 0.25);
    }
    
    .form-submit-btn:hover {
      background-color: var(--terracotta-hover);
    }
    
    .form-submit-btn:disabled {
      background-color: #cbd5e1;
      cursor: not-allowed;
    }
    
    /* iOS / Mobil támogatás a Parallax effekthez */
    @media (max-width: 768px) {
      .booking-section {
        background-attachment: scroll; /* Mobileszközökön az iOS elakadások elkerülése végett */
      }
    }
    
    /* --- SIKER MODAL --- */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(45, 74, 34, 0.4);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 2000;
      padding: 20px;
    }
    
    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    
    .modal-card {
      background: #ffffff;
      padding: 40px 32px;
      border-radius: 12px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      transform: scale(0.9);
      transition: transform 0.3s ease;
      border: 1px solid rgba(45, 74, 34, 0.08);
    }
    
    .modal-overlay.active .modal-card {
      transform: scale(1);
    }
    
    .modal-icon {
      width: 60px;
      height: 60px;
      background-color: #f1f6f0;
      color: var(--forest-green);
      border: 1px solid rgba(45, 74, 34, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      margin: 0 auto 20px auto;
    }
    
    .modal-close-btn {
      background-color: var(--forest-green);
      color: #ffffff;
      border: none;
      padding: 12px 24px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      width: 100%;
      transition: var(--transition);
    }
    
    .modal-close-btn:hover {
      background-color: var(--terracotta);
    }
    
    /* ==========================================
   STÍLUSOS MEDITERRÁN FOOTER SZEKCIÓ
   ========================================== */

.site-footer {
  background-color: var(--aegean-dark, #002B49);
  color: #ffffff;
  padding-top: 5rem;
  border-top: 3px solid var(--santorini-blue, #0055A5);
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

/* Brand oszlop */
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1.2rem;
}

.footer-brand-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--santorini-blue, #0055A5);
  font-weight: 700;
  margin-top: 4px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 340px;
}

/* Social Ikonsor */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-link:hover {
  background: var(--santorini-blue, #0055A5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 85, 165, 0.4);
}

/* Címek */
.footer-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--santorini-blue, #0055A5);
  border-radius: 2px;
}

/* Navigációs és szállás linkek */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-size: 0.92rem;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--santorini-blue, #0055A5);
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(2px);
}

/* Elérhetőségi lista */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--santorini-blue, #0055A5);
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

/* Alsó Sáv (Copyright & Jogi linkek) */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

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

/* Footer Logó Kép Stílusai */
.footer-brand-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-img {
  max-width: 100px; /* Szükség szerint módosítható */
  height: auto;
  display: block;
  filter: brightness(0) invert(1); /* Ha sötét hátterű footerhez fehérre szeretnéd alakítani a fekete logót */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-brand-logo-link:hover .footer-logo-img {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Kombinált / Ikonos Logó Stílusai */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.2rem;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  background-color: var(--santorini-blue, #0055A5);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--santorini-blue, #0055A5);
  font-weight: 700;
  margin-top: 3px;
}