/* ================================================
   SCHWEDENHAUS SMÅLAND – Premium CSS
   Design: Refined Scandinavian Luxury
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Target keyword: Ferienhaus Schweden Smaland am See
   Domain: smalandhaus.de
   ================================================ */

/* ── SELF-HOSTED FONTS (von /fonts/ Verzeichnis) ── */

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

/* DM Sans */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
}

/* Playfair Display (nur Blog-Unterseiten) */
/* HINWEIS: Original-Regular (400) fehlt – nutzen 500 als optischen Ersatz. */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

:root {
  /* Colors */
  --clr-bg: #faf9f7;
  --clr-bg-2: #f3f1ec;
  --clr-surface: #ffffff;
  --clr-text: #1a1a18;
  --clr-text-muted: #6b6b63;
  --clr-accent: #c8503a;        /* Swedish red */
  --clr-accent-light: #f5e8e4;
  --clr-forest: #2d4a2d;       /* Forest green */
  --clr-water: #2a5f8a;        /* Lake blue */
  --clr-gold: #b8a06a;
  --clr-border: #e8e4de;

  /* Season colors */
  --clr-low: #4a90d9;
  --clr-mid: #7ab87a;
  --clr-high: #e07a3d;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

h2 em, h1 em {
  font-style: italic;
  color: var(--clr-accent);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-light);
  padding: 0.35em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section {
  padding: var(--sp-xl) 0;
}

.section-intro {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.logo-flag { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover {
  background: var(--clr-bg-2);
  color: var(--clr-accent);
}

.nav-cta {
  background: #25D366 !important;
  color: white !important;
  padding: 0.55rem 1.2rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #1ebe5d !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/schwedenhaus-mieten-smaland.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,10,0.55) 0%,
    rgba(10,20,10,0.35) 50%,
    rgba(10,20,10,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: clamp(1rem, 5vw, 3rem);
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  opacity: 0.88;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0.9;
}

.hero-badges span {
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover { background: #1ebe5d; color: white; }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-email {
  background: var(--clr-water);
  color: white;
}

.btn-email:hover { background: #1e4d72; color: white; }

.btn-full { width: 100%; justify-content: center; }

/* ================================================
   USP STRIP
   ================================================ */
.usp-strip {
  padding: var(--sp-lg) 0;
  background: var(--clr-forest);
  color: white;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.usp-item {
  text-align: center;
  padding: 1.5rem;
}

.usp-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.usp-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.usp-item p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section {
  background: var(--clr-bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.why-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.why-list li i { color: var(--clr-forest); }

.why-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-stat {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}

.why-stat:hover { transform: translateY(-4px); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-num small {
  font-size: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-top: 0.4rem;
}

/* ================================================
   PHOTO GRID (Flip Cards)
   ================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  cursor: pointer;
}

.photo-card-inner {
  position: relative;
  height: 240px;
  border-radius: var(--r-lg);
  /* NO overflow:hidden here — it breaks 3D preserve-3d in most browsers */
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}

.photo-card:hover .photo-card-inner {
  transform: rotateY(180deg);
}

.photo-front, .photo-back {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;               /* overflow on the face, not the wrapper */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.photo-front img, .photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.photo-front:hover img { transform: scale(1.04); }

.photo-back {
  transform: rotateY(180deg);
  background: var(--clr-forest);
}

.photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,20,0.95) 0%, rgba(20,40,20,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.photo-overlay.always {
  background: linear-gradient(to top, rgba(20,40,20,0.95) 0%, rgba(20,40,20,0.4) 100%);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.photo-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: white;
}

.photo-overlay p {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.5;
}

.photo-label {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}

/* ================================================
   ANGLER CTA
   ================================================ */
.angler-cta {
  margin-top: 3rem;
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--clr-water);
}

.angler-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.angler-icon { font-size: 2.5rem; }

.angler-cta h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.angler-cta p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.angler-cta .btn-outline {
  color: var(--clr-text);
  border-color: var(--clr-border);
  margin-left: auto;
  white-space: nowrap;
}

.angler-cta .btn-outline:hover {
  background: var(--clr-bg-2);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  background: var(--clr-bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.t-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 3px solid transparent;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--clr-accent);
}

.t-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.t-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  quotes: "\201E" "\201C";
}

.t-card blockquote::before { content: open-quote; }
.t-card blockquote::after { content: close-quote; }

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ================================================
   PRICES
   ================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--clr-accent);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 100px;
}

.price-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.price-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--clr-text-muted);
  font-family: var(--font-body);
}

.price-when {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-forest);
  font-weight: 700;
}

.price-cta {
  text-align: center;
}

.price-cta p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

/* ================================================
   CALENDAR
   ================================================ */
.avail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cal-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.cal-btn {
  background: var(--clr-bg-2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: var(--clr-text);
}

.cal-btn:hover {
  background: var(--clr-accent);
  color: white;
  transform: scale(1.1);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  padding: 0.4rem 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar div {
  text-align: center;
  padding: 0.6rem 0.3rem;
  border-radius: var(--r-sm);
  background: var(--clr-bg-2);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  cursor: default;
  transition: background 0.15s, transform 0.15s, color 0.15s, box-shadow 0.15s;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Leere Zellen (vor Monatsbeginn) ohne Hintergrund */
.calendar div.cal-empty {
  background: transparent;
  pointer-events: none;
}

/* Frei = klickbar (höchste Spezifität für Cursor) */
.calendar div.free {
  cursor: pointer !important;
  background: #ffffff;
  border: 1px solid var(--clr-border);
}
.calendar div.free:hover {
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(200, 80, 58, 0.18);
  z-index: 3;
}
.calendar div.free:active {
  transform: translateY(0);
}

/* Vergangene Tage */
.calendar div.past {
  color: var(--clr-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
  background: var(--clr-bg-2);
}
.calendar div.past::after { display: none !important; }

/* Belegt – nicht klickbar */
.calendar div.booked {
  background: var(--clr-accent);
  color: white;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.85;
}
.calendar div.booked::after { display: none !important; }
.calendar div.booked:hover { transform: none; box-shadow: none; }

/* Heute */
.calendar div.today {
  outline: 2px solid var(--clr-text);
  outline-offset: -2px;
  font-weight: 700;
}

/* ── AUSWAHL-MARKIERUNG ── */
.calendar div.selected {
  background: var(--clr-forest) !important;
  color: white !important;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(45, 74, 45, 0.25);
  border-color: var(--clr-forest) !important;
}
.calendar div.selected:hover {
  background: var(--clr-forest) !important;
  color: white !important;
  transform: translateY(-2px);
}
.calendar div.selected::after { border-color: rgba(255,255,255,0.5) !important; }

.calendar div.selected-start { border-radius: var(--r-sm) 4px 4px var(--r-sm); }
.calendar div.selected-end   { border-radius: 4px var(--r-sm) var(--r-sm) 4px; }

.calendar div.in-range {
  background: rgba(45, 74, 45, 0.18) !important;
  color: var(--clr-forest) !important;
  font-weight: 600;
  border-radius: 4px;
  border-color: transparent !important;
}
.calendar div.in-range:hover {
  background: rgba(45, 74, 45, 0.28) !important;
  color: var(--clr-forest) !important;
}
.calendar div.in-range::after { border-color: rgba(45, 74, 45, 0.35) !important; }

/* Saison-Indikatoren */
.low-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px solid rgba(74, 144, 217, 0.5);
  border-radius: 6px;
  pointer-events: none;
}

.high-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px solid rgba(224, 122, 61, 0.7);
  border-radius: 6px;
  pointer-events: none;
}

.mid-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px dashed rgba(122, 184, 122, 0.6);
  border-radius: 6px;
  pointer-events: none;
}

/* ── HINWEIS-TEXT ÜBER KALENDER ── */
.cal-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  background: var(--clr-bg-2);
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.cal-hint i { color: var(--clr-accent); flex-shrink: 0; }

/* ── STATUS-BANNER ── */
.cal-status {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  border-left: 3px solid var(--clr-text-muted);
  background: var(--clr-bg-2);
  color: var(--clr-text);
}
.cal-status.is-info    { border-left-color: var(--clr-water); background: rgba(74, 144, 217, 0.08); color: #1d4673; }
.cal-status.is-success { border-left-color: var(--clr-mid); background: rgba(122, 184, 122, 0.12); color: #2d5a2d; }
.cal-status.is-error   { border-left-color: var(--clr-accent); background: var(--clr-accent-light); color: var(--clr-accent); }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.leg-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.leg-dot.free     { background: var(--clr-bg-2); border: 1px solid var(--clr-border); }
.leg-dot.booked   { background: var(--clr-accent); }
.leg-dot.selected { background: var(--clr-forest); box-shadow: 0 1px 3px rgba(45,74,45,.3); }
.leg-dot.low      { background: rgba(74,144,217,0.15); border: 2px solid rgba(74,144,217,0.5); }
.leg-dot.mid      { background: rgba(122,184,122,0.15); border: 2px dashed rgba(122,184,122,0.6); }
.leg-dot.high     { background: rgba(224,122,61,0.15); border: 2px solid rgba(224,122,61,0.7); }

/* ════════════════════════════════════════════════════════════
   BUCHUNGS-ZUSAMMENFASSUNG
   ════════════════════════════════════════════════════════════ */
.booking-summary {
  background: linear-gradient(135deg, #fdfcfa 0%, #faf6f3 100%);
  border: 2px solid var(--clr-accent);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-width: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s, padding 0.3s, margin 0.3s, border-width 0.2s;
}
.booking-summary.is-active {
  max-height: 1200px;
  opacity: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-width: 2px;
}

.bs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bs-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
  color: var(--clr-text);
}
.bs-reset {
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
}
.bs-reset:hover {
  background: var(--clr-accent);
  color: white;
  border-color: var(--clr-accent);
}

.bs-dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  background: white;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--clr-border);
}
.bs-dates > div:not(.bs-arrow) {
  display: flex;
  flex-direction: column;
}
.bs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.bs-dates strong {
  font-size: 1rem;
  color: var(--clr-text);
  font-weight: 600;
}
.bs-arrow {
  color: var(--clr-accent);
  font-size: 1.3rem;
  font-weight: 700;
}

.bs-nights {
  text-align: center;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 1rem;
  font-weight: 500;
}
.bs-nights i { color: var(--clr-accent); margin-right: 0.35rem; }

.bs-warning {
  background: rgba(224, 122, 61, 0.12);
  color: #a04020;
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--clr-high);
  font-weight: 500;
}

.bs-breakdown {
  background: white;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.85rem;
  margin-bottom: 0.75rem;
}
.bs-breakdown:empty { display: none; }
.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 0.35rem 0;
  color: var(--clr-text);
  border-bottom: 1px dashed var(--clr-border);
}
.sum-row:last-child { border-bottom: none; }
.sum-row strong { color: var(--clr-text); font-weight: 600; }

.bs-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.bs-row strong { color: var(--clr-text); font-weight: 600; }
.bs-row small { font-size: 0.72rem; color: var(--clr-text-muted); }

.bs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0.5rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--clr-border);
  font-size: 1.05rem;
}
.bs-total span { font-weight: 600; color: var(--clr-text); }
.bs-total strong {
  font-size: 1.6rem;
  font-family: var(--font-display);
  color: var(--clr-accent);
  font-weight: 700;
}

.bs-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bs-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.bs-actions .btn {
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
}
.btn-secondary {
  background: var(--clr-text);
  color: white;
  border: none;
}
.btn-secondary:hover {
  background: var(--clr-accent);
  color: white;
}
.btn-secondary.is-copied {
  background: var(--clr-mid);
  color: white;
}

/* Responsive Buchungs-Box */
@media (max-width: 480px) {
  .booking-summary { padding: 1.1rem; }
  .bs-actions-row { grid-template-columns: 1fr; }
  .bs-dates { grid-template-columns: 1fr; gap: 0.4rem; padding: 0.75rem; }
  .bs-arrow { display: none; }
  .bs-total strong { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE TOUCH-OPTIMIERUNG (Smartphone/Tablet)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Kalender-Tage größer für Finger-Tap (Apple HIG: min 44x44px) */
  .calendar div {
    padding: 0.85rem 0.2rem;
    font-size: 0.95rem;
    min-height: 44px;
    /* iOS: tap-highlight für visuelles Feedback */
    -webkit-tap-highlight-color: rgba(200, 80, 58, 0.2);
    /* Fixt iOS-Bug: Click-Events brauchen touch-action */
    touch-action: manipulation;
  }

  /* Freie Tage müssen klar als klickbar erkennbar sein */
  .calendar div.free {
    -webkit-tap-highlight-color: rgba(200, 80, 58, 0.35);
  }

  /* Beim Antippen visuelles Feedback (statt Hover, das auf Touch nicht greift) */
  .calendar div.free:active {
    background: var(--clr-accent-light);
    color: var(--clr-accent);
    transform: scale(0.96);
  }

  .calendar div.selected:active,
  .calendar div.in-range:active {
    transform: scale(0.96);
  }

  /* Hover-Effekte auf Touch deaktivieren (verhindert "stuck hover") */
  @media (hover: none) {
    .calendar div.free:hover {
      background: #ffffff;
      color: var(--clr-text);
      border-color: var(--clr-border);
      transform: none;
      box-shadow: none;
    }
  }

  /* Größere Wochentag-Header passend dazu */
  .cal-weekdays span {
    font-size: 0.78rem;
    padding: 0.55rem 0;
  }

  /* Padding der cal-box auf Mobile reduzieren für mehr Platz */
  .cal-box {
    padding: 1.25rem 1rem;
  }

  /* Lücke zwischen Tagen kleiner (mehr Platz pro Tag) */
  .calendar,
  .cal-weekdays {
    gap: 3px;
  }

  /* Buttons in Buchungs-Box: größer & besser tap-bar */
  .bs-actions .btn {
    min-height: 48px;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    -webkit-tap-highlight-color: transparent;
  }

  /* Reset-Button auch Tap-freundlich */
  .bs-reset {
    min-height: 36px;
    padding: 0.45rem 0.95rem;
    -webkit-tap-highlight-color: rgba(200, 80, 58, 0.2);
  }

  /* Cal-buttons (Pfeile) größer */
  .cal-btn {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ════════════════════════════════════════════════════════════
   KLEINE SMARTPHONES (≤380px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .calendar div {
    padding: 0.75rem 0.15rem;
    font-size: 0.9rem;
  }
  .calendar,
  .cal-weekdays {
    gap: 2px;
  }
  .cal-weekdays span { font-size: 0.7rem; }
  .cal-legend { gap: 0.5rem 0.85rem; font-size: 0.75rem; }
  .leg-dot { width: 12px; height: 12px; }
  .cal-hint { font-size: 0.78rem; padding: 0.5rem 0.7rem; }
}

/* ================================================
   CONTACT BOX
   ================================================ */
.contact-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-host {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.host-img {
  width: 110px;
  height: 110px;
  border-radius: var(--r-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.host-info h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.host-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.host-info p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}

.contact-trust span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-trust i { color: var(--clr-forest); }

/* ================================================
   FAQ
   ================================================ */
.faq-section {
  background: var(--clr-bg-2);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--clr-accent); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 300px;
}

.footer-brand .logo-flag { font-size: 1.5rem; }
.footer-brand span { font-size: 1.1rem; font-weight: 600; color: white; }
.footer-brand p { font-size: 0.85rem; opacity: 0.6; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

.footer-legal a { transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 1; color: white; }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-up { animation: fadeUp 0.9s var(--ease) both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .avail-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    border-radius: 0;
  }

  .nav-cta {
    margin: 0.75rem 1.5rem 0;
    text-align: center;
    border-radius: 100px !important;
  }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .hero-actions { flex-direction: column; align-items: center; }

  .photo-grid { grid-template-columns: 1fr 1fr; }

  .usp-grid { grid-template-columns: 1fr 1fr; }

  .why-img-stack { grid-template-columns: 1fr 1fr; }

  .price-grid { grid-template-columns: 1fr 1fr; }

  .cal-box, .contact-box { padding: 1.5rem; }

  .float-wa { bottom: 1.5rem; right: 1.5rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 500px) {
  .photo-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .why-img-stack { grid-template-columns: 1fr 1fr; }
  .hero-badges { gap: 0.5rem; }
  .hero-badges span { font-size: 0.78rem; padding: 0.35rem 0.8rem; }
}

/* ================================================
   ACCESSIBILITY HELPERS
   ================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Sichtbarer Tastatur-Fokus (WCAG 2.4.7) ── */
:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 4px;
}

/* ── Reduced Motion (User Preference) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .float-wa {
    animation: none !important;
  }
}

/* ── Selection-Styling ── */
::selection {
  background: var(--clr-accent);
  color: white;
}

/* ── Print-Optimierung ── */
@media print {
  #navbar, .float-wa, .cc-banner, .cc-modal-overlay, .cc-fab,
  .hero-scroll-hint, .nav-toggle,
  .hero-actions, .photo-card-inner .photo-back,
  .price-cta, .angler-cta { display: none !important; }

  body { background: white; color: black; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-overlay { display: none; }
  .hero-content { color: black !important; }
  .hero-title em { color: var(--clr-accent) !important; }

  a { color: black; text-decoration: underline; }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="mailto"]::after,
  a[href^="tel"]::after { content: ""; }

  section { padding: 1rem 0; page-break-inside: avoid; }
  h2, h3 { page-break-after: avoid; }
  img { max-width: 60% !important; page-break-inside: avoid; }
}
