/* ============================================================
   HolidayRent Alveslohe – Sommerliches Single-Page Theme
   ============================================================ */
:root {
  --sun:        #ff9e2c;
  --sun-dark:   #f47b1f;
  --coral:      #ff6b5e;
  --sky:        #2bb3d6;
  --sky-dark:   #1789b0;
  --sea:        #0c7c8c;
  --sand:       #fff6e6;
  --sand-deep:  #ffe9c7;
  --ink:        #243746;
  --muted:      #5c7383;
  --white:      #ffffff;
  --shadow:     0 14px 40px rgba(20, 70, 90, 0.14);
  --shadow-sm:  0 6px 18px rgba(20, 70, 90, 0.10);
  --radius:     20px;
  --radius-sm:  12px;
  --container:  1140px;
  --gradient-warm: linear-gradient(135deg, #ffb347 0%, #ff7e5f 100%);
  --gradient-sea:  linear-gradient(135deg, #2bb3d6 0%, #0c7c8c 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Schriftart gegen Theme-Überschreibungen erzwingen (scoped auf das Landing-Wrapper). */
.hra-landing,
.hra-landing * {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif !important;
}

img { max-width: 100%; display: block; }

a { color: var(--sky-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 84px 0; }
.section-alt { background: var(--white); }
.text-center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 800;
}
.section-subtitle {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.badge {
  display: inline-block;
  background: var(--sand-deep);
  color: var(--sun-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--gradient-warm); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,0.18); color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.3); }
.btn-secondary { background: var(--white); color: var(--sea); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: #f3fbfd; color: var(--sea-dark, var(--sea)); }
.btn-outline { background: transparent; color: var(--sky-dark); border: 2px solid var(--sky); }
.btn-outline:hover { background: var(--sky); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--sea);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 10px 18px;
  flex-wrap: wrap;
}
.topbar-items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-item { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.topbar-item:hover { color: #ffe08a; text-decoration: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 70, 90, 0.08);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo:hover { text-decoration: none; }
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.1;
}
.logo-text span { color: var(--sun-dark); }
.logo-text small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; }
.nav-links a:hover { color: var(--sun-dark); text-decoration: none; }
.nav-links a.btn:hover { color: var(--white); }
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.7rem; color: var(--ink);
  line-height: 1;
}

/* ---------- Mobile-Menü ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 14px 22px 20px;
  background: var(--white);
  border-top: 1px solid rgba(20, 70, 90, 0.08);
  box-shadow: var(--shadow-sm);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu a {
  color: var(--ink); font-weight: 600; display: block;
  padding: 12px 4px; border-bottom: 1px solid rgba(20,70,90,0.06);
}
.mobile-menu a:hover { color: var(--sun-dark); text-decoration: none; }
.mobile-menu .btn { margin-top: 12px; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--gradient-sea);
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  max-width: 1120px;
}
.hero-text { min-width: 0; }

/* Hero Visual (rechts) – Kategorie-Kacheln */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
}
.hero-tile {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px;
  box-shadow: 0 16px 40px rgba(8,40,55,0.25);
}
.hero-tile:nth-child(1) { animation: hra-floaty 6s ease-in-out infinite; }
.hero-tile:nth-child(2) { animation: hra-floaty 6.6s ease-in-out infinite 0.3s; }
.hero-tile:nth-child(3) { animation: hra-floaty 7s ease-in-out infinite 0.15s; }
.hero-tile:nth-child(4) { animation: hra-floaty 6.3s ease-in-out infinite 0.45s; }
.ht-ico {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}
.ht-name { font-weight: 800; font-size: 0.96rem; color: var(--white); line-height: 1.25; }
.ht-price { font-size: 0.82rem; font-weight: 800; color: #ffe08a; }
.hero .badge {
  background: rgba(255,255,255,0.20);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.hra-landing .hero-title { color: var(--white); }
.hero-title {
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
  line-height: 1.07;
  font-weight: 800;
  margin: 18px 0;
}
.hero-title span { color: #ffe08a; }
.hra-landing .hero-desc,
.hra-landing .hero-stat-num,
.hra-landing .hero-stat-label { color: var(--white); }
.hero-desc { font-size: 1.2rem; opacity: 0.96; margin-bottom: 26px; max-width: 620px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 40px;
}
.hero-stat-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hero-stat-label { font-size: 0.9rem; opacity: 0.9; margin-top: 4px; }

/* Hero animierte Formen */
.hero-bg-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-sun {
  position: absolute;
  top: -90px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,80,0.95), rgba(255,158,44,0) 70%);
  animation: hra-float 7s ease-in-out infinite;
}
.hero-cloud-1, .hero-cloud-2 {
  position: absolute;
  background: rgba(255,255,255,0.14);
  border-radius: 100px;
  filter: blur(2px);
}
.hero-cloud-1 { width: 220px; height: 60px; top: 22%; left: -60px; animation: hra-drift 22s linear infinite; }
.hero-cloud-2 { width: 160px; height: 46px; top: 60%; right: -40px; animation: hra-drift 30s linear infinite reverse; }
@keyframes hra-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(18px); } }
@keyframes hra-drift { 0% { transform: translateX(0); } 100% { transform: translateX(120px); } }
@keyframes hra-floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* Hero Welle */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 80px; z-index: 2; display: block; }

/* ---------- USPs ---------- */
.usps { background: var(--sand); padding: 56px 0; }
.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(20,70,90,0.06);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.usp-icon { font-size: 1.9rem; line-height: 1; flex-shrink: 0; }
.usp-title { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.usp-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* ---------- ADAC ---------- */
.adac-section { padding: 56px 0; }
.adac-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff3d6 0%, #ffe2b3 100%);
  border: 1px solid rgba(244,123,31,0.25);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.adac-badge {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 22px rgba(244,123,31,0.35);
}
.adac-text { flex: 1 1 320px; }
.adac-text h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.adac-text p { color: #6b4a1f; }
.adac-text strong { color: var(--sun-dark); }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 48px;
}
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,70,90,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pc-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; min-height: 70px; }
.pc-headings { min-width: 0; }
.price-card h3 { font-size: 1.2rem; margin-bottom: 2px; line-height: 1.2; }
.price-card .pc-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--sand-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.price-card.featured {
  border: 1px solid rgba(20,70,90,0.06);
  box-shadow: var(--shadow-sm);
}
.price-card .pc-sub { color: var(--muted); font-size: 0.88rem; }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #eef9fc 0%, #e3f4f8 100%);
  border-radius: var(--radius-sm);
}
.pc-price-from { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.pc-price-value { font-size: 1.7rem; font-weight: 800; color: var(--sea); line-height: 1; }
.pc-price-per { font-size: 0.82rem; color: var(--muted); }
.price-list { list-style: none; margin: 0 0 18px; }
.price-list li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(20,70,90,0.12);
  font-size: 0.97rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:last-child { font-weight: 800; color: var(--sea); white-space: nowrap; }
.price-card .pc-foot { margin-top: auto; }
.price-card .pc-foot .btn { width: 100%; justify-content: center; }
.price-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.info-pill {
  background: var(--sand-deep);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.95rem;
}
.info-pill strong { display: block; color: var(--sun-dark); margin-bottom: 3px; }

/* ---------- Booqable booking ---------- */
.booking-section { background: var(--gradient-sea); color: var(--white); }
.booking-section .section-title,
.booking-section .section-subtitle { color: var(--white); }
.booking-section .section-subtitle { opacity: 0.95; }
.booqable-wrapper {
  margin-top: 44px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.booqable-wrapper > div + div { margin-top: 30px; }
.booqable-step-label {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.15rem;
  margin-bottom: 14px;
}
.booqable-step-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.booqable-step-hint { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* Consent placeholder shown when Booqable is blocked */
.booqable-consent-gate {
  text-align: center;
  padding: 40px 20px;
  background: var(--sand);
  border: 2px dashed var(--sand-deep);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.booqable-consent-gate h4 { font-size: 1.2rem; margin-bottom: 8px; }
.booqable-consent-gate p { color: var(--muted); max-width: 460px; margin: 0 auto 18px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 44px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(20,70,90,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-chevron { transition: transform 0.25s ease; color: var(--sun-dark); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer { padding: 0 22px 20px; max-height: 600px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,70,90,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .cc-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-sea);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(12,124,140,0.28);
}
.contact-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.contact-card .cc-value { color: var(--ink); font-weight: 600; }
.contact-card .cc-value a { color: var(--ink); }
.contact-card .cc-action {
  margin-top: 16px;
  font-weight: 700;
  color: var(--sea);
}
.contact-card .cc-action:hover { color: var(--sun-dark); text-decoration: none; }
.pay-title {
  text-align: center;
  margin-top: 44px;
  font-weight: 700;
  color: var(--muted);
}
.pay-methods {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 16px;
}
.pay-methods span {
  background: var(--white);
  border: 1px solid rgba(20,70,90,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}
.site-footer h4 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--sun); text-decoration: none; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 34px; padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(160%);
  width: min(960px, calc(100% - 32px));
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  padding: 26px 28px;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.cookie-banner h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cookie-banner p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.cookie-options { display: grid; gap: 10px; margin-bottom: 18px; }
.cookie-option {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.cookie-option input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--sun-dark); }
.cookie-option label { font-weight: 700; cursor: pointer; }
.cookie-option .co-desc { display: block; font-weight: 400; color: var(--muted); font-size: 0.88rem; }
.cookie-option input:disabled { opacity: 0.6; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: 0.95rem; }
.cookie-link { background: none; border: none; color: var(--sky-dark); cursor: pointer; font-weight: 600; text-decoration: underline; }

/* small floating button to re-open settings */
.cookie-reopen {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 900;
  background: var(--white);
  border: 1px solid rgba(20,70,90,0.12);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; color: var(--ink);
  display: none;
}
.cookie-reopen.show { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--gradient-sea);
  color: var(--white);
  padding: 70px 0 56px;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { margin: 30px 0 10px; font-size: 1.3rem; }
.legal-body h3 { margin: 22px 0 8px; font-size: 1.08rem; }
.legal-body p { margin-bottom: 14px; color: #3c4f5d; }
.legal-body address { font-style: normal; margin-bottom: 14px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { justify-content: center; margin-top: 8px; }
  .hero-showcase { max-width: 360px; }
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 0.8rem; }
  .topbar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .topbar-items { justify-content: center; gap: 6px 16px; }
  .topbar-item { word-break: break-word; }
  .navbar .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-stats { gap: 22px; }
  .adac-inner { flex-direction: column; text-align: center; }
  .adac-text { flex-basis: auto; }
}
@media (max-width: 560px) {
  .hero-visual { display: none; }
}
