/* ============================================================
   Monteurunterkunft Kaiserslautern – Stylesheet
   Brand: Indigo #2D3AB0 + Grün #6AB04C
   ============================================================ */

/* ── 1. Reset & Custom Properties ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --indigo:        #2D3AB0;
  --indigo-dark:   #1E278A;
  --indigo-mid:    #3B4DC8;
  --indigo-light:  #4558D4;
  --indigo-pale:   #EEF0FB;
  --indigo-glow:   rgba(45, 58, 176, 0.12);

  --green:         #6AB04C;
  --green-dark:    #4E8A35;
  --green-light:   rgba(106, 176, 76, 0.14);

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F7F8FC;
  --text:          #1C1F3A;
  --muted:         #5A6170;
  --border:        #DDE1F0;
  --border-light:  #ECEEF6;

  /* Sizing */
  --container:     1160px;
  --section-pad:   96px;
  --radius:        14px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(45, 58, 176, 0.08);
  --shadow:     0 6px 24px rgba(45, 58, 176, 0.12);
  --shadow-lg:  0 16px 48px rgba(45, 58, 176, 0.18);
  --shadow-xl:  0 24px 64px rgba(45, 58, 176, 0.22);

  /* Typography */
  --font-sans:  'Poppins', 'Inter', system-ui, sans-serif;
}

/* ── 2. Base ── */
html  { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ── 3. Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--pale  { background: var(--off-white); }
.section--indigo { background: var(--indigo-pale); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header p { color: var(--muted); margin-top: 14px; font-size: 1rem; font-weight: 400; }

/* ── 4. Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 999px;
  padding: 5px 14px; margin-bottom: 14px;
  border: 1px solid rgba(106, 176, 76, 0.25);
}

/* ── 5. Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all 0.25s ease; white-space: nowrap;
}

.btn--green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(106, 176, 76, 0.38);
}
.btn--green:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 28px rgba(106, 176, 76, 0.50);
  transform: translateY(-2px);
}

.btn--indigo {
  background: var(--indigo); color: var(--white);
  box-shadow: 0 4px 20px rgba(45, 58, 176, 0.32);
}
.btn--indigo:hover {
  background: var(--indigo-dark);
  box-shadow: 0 6px 28px rgba(45, 58, 176, 0.44);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
}

.btn--outline-indigo {
  background: transparent; color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn--outline-indigo:hover {
  background: var(--indigo); color: var(--white);
}

/* Flat SVG icons inside buttons */
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

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

/* ── 6. Header & Navigation ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(45,58,176,0.1);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: var(--container); margin: 0 auto; gap: 24px;
}

/* Logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; gap: 10px; }
.nav__logo img {
  height: 44px; width: auto; object-fit: contain;
  /* Weißes Logo auf dem transparenten Header (über dunklem Hero) */
  filter: brightness(0) invert(1);
  transition: filter 0.35s;
}
.header.scrolled .nav__logo img {
  filter: none; /* Originales Logo (blau) wenn scrolled */
}

.nav__logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); transition: color 0.35s; white-space: nowrap;
}
.nav__logo-text span { font-weight: 400; opacity: 0.75; font-size: 0.62rem; }
.header.scrolled .nav__logo-text { color: var(--indigo-dark); }
.header.scrolled .nav__logo-text span { opacity: 0.65; }

/* Desktop links */
.nav__links {
  display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center;
}
.nav__links a {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; white-space: nowrap; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: transform 0.25s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover, .nav__links a.active { color: var(--white); }

.header.scrolled .nav__links a { color: var(--muted); }
.header.scrolled .nav__links a:hover, .header.scrolled .nav__links a.active { color: var(--indigo); }
.header.scrolled .nav__links a::after { background: var(--indigo); }

/* CTA */
.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s ease;
}
.header.scrolled .nav__hamburger span { background: var(--indigo); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border-light);
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 24px rgba(45,58,176,0.1);
}
.nav__mobile.open { display: flex; max-height: 500px; }
.nav__mobile a {
  color: var(--text); padding: 15px 24px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500; font-size: 0.95rem; transition: color 0.2s, background 0.2s;
}
.nav__mobile a:hover { color: var(--indigo); background: var(--indigo-pale); }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.mobile-cta {
  color: var(--green-dark); font-weight: 700; background: var(--green-light);
}

/* ── 7. Hero ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/mu1.webp');
  background-size: cover; background-position: center top;
}

/* Indigo-Overlay mit Gradient – etwas stärker für helles Innenfoto */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,39,138, 0.93) 0%,
    rgba(45,58,176, 0.85) 40%,
    rgba(59,77,200, 0.72) 100%
  );
}

/* Diagonal decorative shape */
.hero__shape {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; z-index: 3;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 130px 24px 120px;
  display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: center;
  width: 100%;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106,176,76,0.2); color: #8ee06a;
  border: 1px solid rgba(106,176,76,0.35);
  border-radius: 999px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 20px;
}

.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title em { font-style: normal; color: #8ee06a; }

.hero__subtitle {
  color: rgba(255,255,255,0.72); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 36px; font-weight: 400; max-width: 520px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: flex; gap: 0; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat {
  flex: 1; padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero__stat:last-child { padding-right: 0; padding-left: 24px; border-right: none; }
.hero__stat:not(:first-child):not(:last-child) { padding: 0 24px; }

.hero__stat strong {
  display: block; color: var(--white);
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em;
}
.hero__stat span { color: rgba(255,255,255,0.52); font-size: 0.78rem; font-weight: 400; }

/* Hero glass card */
.hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 36px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.hero__card-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px;
}

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 400;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}

.hero__price {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: baseline; gap: 6px;
}
.hero__price .amount { font-size: 2.1rem; font-weight: 800; color: #8ee06a; letter-spacing: -0.03em; }
.hero__price .unit   { color: rgba(255,255,255,0.48); font-size: 0.82rem; font-weight: 400; }

/* Scroll cue */
.hero__scroll {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.35); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; cursor: pointer; text-decoration: none; transition: color 0.2s;
}
.hero__scroll:hover { color: rgba(255,255,255,0.65); }
.hero__scroll-dot {
  width: 28px; height: 44px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 14px; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.hero__scroll-dot::before {
  content: ''; width: 4px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ── 8. Stats Strip ── */
.stats-strip { background: var(--indigo); padding: 0; }
.stats-strip__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; color: var(--white); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.stat-item span   { color: rgba(255,255,255,0.5); font-size: 0.78rem; display: block; margin-top: 2px; }

/* ── 9. Feature Cards ── */
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px;
}

.feature-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 30px;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--border); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 54px; height: 54px;
  background: var(--indigo-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0; margin-bottom: 18px;
  transition: background 0.25s;
}
.feature-card__icon svg { width: 26px; height: 26px; stroke: var(--indigo); flex-shrink: 0; }
.feature-card:hover .feature-card__icon { background: var(--green-light); }
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p  { color: var(--muted); font-size: 0.87rem; font-weight: 400; line-height: 1.65; }

/* ── 10. Photo Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 48px;
}

.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
  background: var(--indigo-pale);
}

/* Span classes for featured items */
.gallery__item--wide  { grid-column: span 2; }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--large { grid-column: span 2; grid-row: span 2; }

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,39,138,0.6) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery__item:hover .gallery__item__overlay { opacity: 1; }

.gallery__item__label {
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.gallery__item__label::before {
  content: '⛶'; font-size: 1rem;
}

/* ── 11. Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,12,40,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.22); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
}

/* ── 11b. Gallery "Alle Fotos" Button ── */
.gallery__footer {
  text-align: center; margin-top: 36px;
}

/* ── 11c. Gallery Modal (Thumbnail Browser) ── */
.gallery-modal {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10,12,40,0.97);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-modal.open { opacity: 1; pointer-events: all; }

.gallery-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gallery-modal__title {
  color: var(--white); font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
}
.gallery-modal__close {
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.gallery-modal__close:hover { background: rgba(255,255,255,0.24); }

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; padding: 20px 28px;
  overflow-y: auto; flex: 1;
}

.gallery-modal__thumb {
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 8px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  outline: none;
}
.gallery-modal__thumb:hover,
.gallery-modal__thumb:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px var(--indigo-mid);
}
.gallery-modal__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}

/* ── 12. Rooms / Floor Plans ── */
.rooms__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}

.room-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow 0.28s, transform 0.28s;
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.room-card__plan {
  height: 210px; overflow: hidden;
  background: var(--indigo-pale);
  display: flex; align-items: center; justify-content: center;
}
.room-card__plan img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  filter: invert(0);
}

.room-card__body { padding: 24px; }
.room-card__num {
  display: inline-block;
  background: var(--indigo); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.room-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.room-card p  { color: var(--muted); font-size: 0.87rem; margin-bottom: 16px; font-weight: 400; }

.room-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.room-tag {
  background: var(--indigo-pale); color: var(--indigo);
  font-size: 0.73rem; font-weight: 500; padding: 4px 10px;
  border-radius: 999px; border: 1px solid var(--border);
}

.room-card__price {
  display: flex; align-items: baseline; gap: 4px;
  color: var(--indigo); font-weight: 700; font-size: 1.05rem;
}
.room-card__price span { color: var(--muted); font-size: 0.78rem; font-weight: 400; }

/* ── 13. About Section ── */
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about__image-wrap { position: relative; }
.about__img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
}
.about__badge-wrap {
  position: absolute; bottom: -20px; right: -20px;
}
.about__badge-wrap img {
  width: 110px; height: 110px; object-fit: contain;
  border-radius: 50%; box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about__content h2 { margin-bottom: 14px; }
.about__content > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; font-weight: 400; }

.about__quote {
  background: var(--indigo-pale); border-left: 4px solid var(--indigo);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.about__quote blockquote {
  font-style: italic; color: var(--text); font-size: 0.97rem; line-height: 1.7; font-weight: 400;
}
.about__quote cite {
  display: block; margin-top: 10px;
  color: var(--indigo); font-style: normal; font-weight: 600; font-size: 0.87rem;
}

.about__values { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 28px; }
.about__value {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about__value:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.about__value-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 0;
}
.about__value-icon svg { width: 18px; height: 18px; stroke: var(--green-dark); flex-shrink: 0; }
.about__value strong { font-size: 0.92rem; display: block; margin-bottom: 1px; }
.about__value span   { color: var(--muted); font-size: 0.82rem; font-weight: 400; }

/* ── 14. Testimonials ── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px;
}

.testimonial-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px 30px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial-card blockquote {
  color: var(--text); font-size: 0.95rem; line-height: 1.72;
  font-style: italic; margin-bottom: 20px; font-weight: 400;
  padding-left: 20px; position: relative;
}
.testimonial-card blockquote::before {
  content: '"'; position: absolute; left: -4px; top: -8px;
  font-size: 3.5rem; color: var(--indigo-pale); line-height: 1;
  font-style: normal; font-weight: 700;
}

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer span   { color: var(--muted); font-size: 0.78rem; font-weight: 400; }

/* ── 15. FAQ ── */
.faq__list { max-width: 760px; margin: 52px auto 0; }

.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius);
  background: var(--white); margin-bottom: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.faq-item:hover  { border-color: var(--border); }
.faq-item.open   { border-color: var(--indigo); box-shadow: var(--shadow-sm); }

.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.97rem;
  color: var(--text); text-align: left; gap: 16px; transition: background 0.2s;
}
.faq-item__question:hover { background: var(--off-white); }
.faq-item.open .faq-item__question { color: var(--indigo); }

.faq-item__icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--indigo-pale); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400; line-height: 1;
  transition: transform 0.3s ease, background 0.2s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--indigo); color: var(--white); }

.faq-item__answer {
  max-height: 0; overflow: hidden; padding: 0 24px;
  color: var(--muted); font-size: 0.92rem; line-height: 1.78; font-weight: 400;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; padding: 0 24px 22px; }
.faq-item__answer a { color: var(--indigo); font-weight: 600; }
.faq-item__answer strong { color: var(--text); font-weight: 600; }

/* ── 16. SEO Keyword Strip ── */
.seo-strip { background: var(--indigo-pale); padding: 44px 0; }
.seo-strip__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; }
.seo-strip h2 { font-size: 1.35rem; color: var(--indigo); margin-bottom: 12px; }
.seo-strip p  { color: var(--muted); font-size: 0.88rem; max-width: 720px; margin: 0 auto 24px; font-weight: 400; }
.keyword-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.keyword-pill {
  background: var(--white); border: 1px solid var(--border);
  color: var(--muted); padding: 6px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
  transition: all 0.2s;
}
.keyword-pill:hover { background: var(--indigo); color: var(--white); border-color: var(--indigo); }

/* ── 17. Location ── */
.location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.location__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }

.location__info h2 { margin-bottom: 12px; }
.location__info > p { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; font-weight: 400; }

.location__details { display: flex; flex-direction: column; gap: 12px; }
.location__detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--white);
  border-radius: 12px; border: 1px solid var(--border-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location__detail:hover { border-color: var(--indigo); box-shadow: var(--shadow-sm); }
.location__detail-icon svg { width: 18px; height: 18px; stroke: var(--white); flex-shrink: 0; }
.location__detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--indigo); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 0;
}
.location__detail strong { display: block; font-size: 0.84rem; margin-bottom: 2px; }
.location__detail span   { color: var(--muted); font-size: 0.83rem; font-weight: 400; }
.location__detail a { color: var(--indigo); font-weight: 600; transition: color 0.2s; }
.location__detail a:hover { color: var(--indigo-dark); }

/* ── 18. Contact ── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact__info h2 { margin-bottom: 12px; }
.contact__info > p { color: var(--muted); margin-bottom: 32px; font-size: 0.95rem; font-weight: 400; }

.contact__channels { display: flex; flex-direction: column; gap: 12px; }
.contact__channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 12px;
  border: 1px solid var(--border-light); background: var(--white);
  transition: all 0.22s; color: var(--text);
}
.contact__channel:hover { border-color: var(--indigo); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact__channel-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0;
}
.contact__channel-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__channel-icon--phone { background: #DCFCE7; }
.contact__channel-icon--mail  { background: #DBEAFE; }
.contact__channel-icon--addr  { background: var(--indigo-pale); }
.contact__channel strong { display: block; font-size: 0.77rem; font-weight: 500; color: var(--muted); margin-bottom: 2px; }
.contact__channel span   { font-weight: 600; font-size: 0.93rem; }

/* Form */
.contact__form-wrap {
  background: var(--indigo-pale); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border);
}
.contact__form-wrap h3 { margin-bottom: 24px; color: var(--indigo); }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
  -webkit-box-shadow: none; box-shadow: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235A6170'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(45,58,176,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── 19. Footer ── */
.footer { background: var(--indigo-dark); color: rgba(255,255,255,0.6); padding: 72px 0 0; }

.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px;
}

.footer__logo img {
  height: 40px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); margin-bottom: 18px;
}
.footer__brand p { font-size: 0.87rem; line-height: 1.72; max-width: 300px; font-weight: 400; }
.footer-ctas { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

.footer__col h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.87rem; transition: color 0.2s; font-weight: 400; }
.footer__links a:hover { color: var(--green); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 0.87rem; }
.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: var(--green); }

.footer__bottom {
  max-width: var(--container); margin: 48px auto 0; padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.79rem; flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { transition: color 0.2s; }
.footer__bottom a:hover { color: var(--green); }
.footer__legal { display: flex; gap: 20px; }

/* ── 20. FAB ── */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 0; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(106,176,76,0.48); cursor: pointer;
  transition: transform 0.2s; text-decoration: none;
  animation: fabPulse 2.8s ease-in-out infinite;
}
.fab svg { width: 22px; height: 22px; stroke: var(--white); flex-shrink: 0; }
.fab:hover { transform: scale(1.1); }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(106,176,76,0.48); }
  50%      { box-shadow: 0 8px 36px rgba(106,176,76,0.68); }
}

/* ── 21. Fade-in ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── 22. RESPONSIVE ── */

/* 1200px */
@media (max-width: 1200px) {
  .hero__inner { grid-template-columns: 1fr 360px; gap: 48px; }
}

/* 1024px – Tablets landscape */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero__inner { grid-template-columns: 1fr; padding: 110px 24px 100px; }
  .hero__card  { display: none; }
  .hero__subtitle { max-width: 100%; }
  .hero__shape { height: 50px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }

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

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .about__inner   { grid-template-columns: 1fr; gap: 48px; }
  .about__badge-wrap { right: 10px; bottom: -14px; }
  .about__badge-wrap img { width: 90px; height: 90px; }

  .location__inner { grid-template-columns: 1fr; gap: 40px; }
  .location__map   { order: -1; }

  .contact__inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand   { grid-column: 1 / -1; }
}

/* 768px – Tablets portrait */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav { padding: 16px 20px; }

  .hero__inner { padding: 100px 20px 90px; }
  .hero__stats { flex-wrap: wrap; gap: 0; }
  .hero__stat  { min-width: 50%; flex: none; border: none !important; padding: 10px 0 !important; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  /* Reset span on small screens */
  .gallery__item--wide,
  .gallery__item--tall,
  .gallery__item--large { grid-column: span 1; grid-row: span 1; }
  /* Give the first a wide slot */
  .gallery__item:first-child { grid-column: span 2; }

  .about__image-wrap { max-width: 480px; margin: 0 auto; }

  .features__grid { gap: 14px; }
  .feature-card   { padding: 24px; }

  .contact__form-wrap { padding: 28px 22px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; }

  .legal-card { padding: 24px; }
  .legal-hero h1 { font-size: 1.65rem; }
  .legal-card table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}

/* 640px – Smartphones */
@media (max-width: 640px) {
  :root { --section-pad: 52px; }

  .nav__logo img { height: 36px; }

  .hero__inner { padding: 88px 16px 80px; }
  .hero__tag   { font-size: 0.68rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stat strong  { font-size: 1.55rem; }
  .hero__scroll { bottom: 70px; }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 22px 16px; }
  .stat-item strong { font-size: 1.65rem; }

  .features__grid     { grid-template-columns: 1fr; gap: 12px; }
  .rooms__grid        { grid-template-columns: 1fr; gap: 14px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 14px; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px; gap: 8px;
  }
  .gallery__item:first-child { grid-column: span 2; }

  .feature-card { padding: 20px; }
  .feature-card__icon { width: 46px; height: 46px; font-size: 1.3rem; }

  .room-card__plan { height: 180px; }

  .about__badge-wrap { right: 8px; bottom: -10px; }
  .about__badge-wrap img { width: 72px; height: 72px; }

  .testimonial-card { padding: 22px; }
  .faq-item__question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item__answer   { padding: 0 18px; }
  .faq-item.open .faq-item__answer { padding: 0 18px 18px; }

  .contact__form-wrap { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact__channel { padding: 14px 16px; }

  .seo-strip h2 { font-size: 1.1rem; }
  .keyword-pill { font-size: 0.77rem; }

  .footer { padding-top: 52px; }
  .footer__inner { padding: 0 16px; gap: 28px; }
  .footer__bottom { padding: 18px 16px; margin-top: 28px; }

  .fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }

  .legal-card { padding: 18px 16px; }
  .legal-container { padding: 36px 16px; }
  .legal-hero { padding: 36px 16px; }
  .legal-hero h1 { font-size: 1.4rem; }
  .legal-back { font-size: 0.8rem; }
  .legal-logo-text { display: none; }
}

/* 480px – Kleine Phones */
@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav__logo img { height: 32px; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }

  .btn { padding: 13px 22px; font-size: 0.88rem; }

  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item:first-child { grid-column: span 1; }
  .gallery__item--wide, .gallery__item--large { grid-column: span 1; }

  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
}

/* 360px – Minimum */
@media (max-width: 360px) {
  :root { --section-pad: 44px; }
  .container { padding: 0 12px; }
  .hero__inner { padding: 80px 12px 70px; }
  .nav { padding: 12px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }
  .feature-card, .testimonial-card, .room-card__body { padding: 16px 14px; }
  .contact__form-wrap { padding: 18px 12px; }
}

/* ── 23. Legal Pages ── */
.legal-header {
  background: var(--indigo-dark); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); font-weight: 700; font-size: 0.93rem; text-decoration: none;
}
.legal-logo img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.legal-logo-text { line-height: 1.2; }
.legal-logo-text span { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.6; }
.legal-back {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.87rem;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.legal-back:hover { color: var(--green); }
.legal-hero {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  padding: 52px 24px; text-align: center; color: var(--white);
}
.legal-hero h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-hero p  { color: rgba(255,255,255,0.58); font-size: 0.93rem; }
.legal-container { max-width: 780px; margin: 0 auto; padding: 52px 24px; }
.legal-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border-light); margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.legal-card h2 {
  font-size: 1.05rem; color: var(--indigo); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--green);
  display: inline-block;
}
.legal-card h3 { font-size: 0.95rem; color: var(--text); margin: 16px 0 8px; }
.legal-card p, .legal-card address {
  font-size: 0.92rem; color: var(--muted); line-height: 1.8;
  font-style: normal; margin-bottom: 10px; font-weight: 400;
}
.legal-card ul {
  list-style: disc; padding-left: 20px; font-size: 0.92rem;
  color: var(--muted); line-height: 1.8; margin-bottom: 10px; font-weight: 400;
}
.legal-card a { color: var(--indigo); }
.legal-card a:hover { color: var(--indigo-dark); }
.legal-card table { width: 100%; border-collapse: collapse; font-size: 0.87rem; margin-top: 14px; }
.legal-card th { background: var(--indigo); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.legal-card td { padding: 10px 14px; border-bottom: 1px solid var(--border-light); color: var(--muted); }
.legal-card tr:last-child td { border-bottom: none; }
.legal-footer {
  background: var(--indigo-dark); color: rgba(255,255,255,0.45);
  text-align: center; padding: 24px; font-size: 0.8rem;
}
.legal-footer a { color: rgba(255,255,255,0.45); margin: 0 12px; transition: color 0.2s; }
.legal-footer a:hover { color: var(--green); }
