  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #b8922a; --gold-light: #d4aa50; --gold-pale: #f5ead0; --gold-faint: #fdf8ef;
    --sea-deep: #0e4d6e; --sea: #1a7fa0; --sea-mid: #2aa8cc; --sea-light: #7dd4ec;
    --sea-pale: #e0f4fb; --sea-faint: #f0fafd;
    --warm-dark: #2c2010; --warm-mid: #5a3e1b;
    --text: #1a2c35; --text-mid: #3d6070; --text-light: #7a9aaa;
    --border: rgba(26,127,160,0.18); --border-gold: rgba(184,146,42,0.2);
    --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--text); background: #f5fbfd; font-weight: 300; line-height: 1.7; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(14,77,110,0.9); border-bottom: 1px solid rgba(255,255,255,0.12); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  nav::before { content: ''; position: absolute; inset: 0; backdrop-filter: blur(14px); z-index: -1; }
  .nav-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: #e8f7ff; letter-spacing: 0.02em; }
  .nav-logo span { color: var(--sea-light); font-style: italic; }
  .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
  .nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 400; color: rgba(232,247,255,0.75); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta { background: var(--gold) !important; color: #fff8ec !important; padding: 8px 20px; border-radius: 30px; }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 5rem;
  overflow-x: hidden;
  overflow-y: visible;
}
  .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/strand.jpg');
  background-size: cover;
  background-position: center;
}
  .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 0;
}
  .hero > * { position: relative; z-index: 2; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; padding: 6px 18px; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
  .hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);width: 100%; }
  .hero h1 em { font-style: italic; color: #e0b84f; }
  .hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  color: #e0b84f;
  margin-bottom: 2rem;
}
  .hero-intro {
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
  .btn-primary { background: var(--gold); color: #fff8ec; padding: 14px 32px; border-radius: 40px; text-decoration: none; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; transition: transform 0.2s, background 0.2s; border: none; cursor: pointer; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-secondary { background: transparent; color: rgba(255,255,255,0.9); padding: 14px 32px; border-radius: 40px; text-decoration: none; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.35); transition: border-color 0.2s, background 0.2s; }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
 .hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  width: fit-content;
  margin: 0 auto;

  padding: 0.9rem 1.6rem;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  border-radius: 26px;

  box-shadow: 0 10px 35px rgba(0,0,0,0.16);

  border: 1px solid rgba(255,255,255,0.5);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 0 1.2rem;

  border-right: 1px solid rgba(0,0,0,0.12);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #1c3152;
  display: block;
  line-height: 1.05;
  margin-bottom: 3px;
}
.hero-stat-small {
  font-size: 0.72em;
  font-weight: 500;
  vertical-align: baseline;
}
.hero-stat-icon {
  color: #d4a62a;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hero-stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c3152;
  font-weight: 700;
  line-height: 1.1;
}
.hero-stat:last-child {
  border-right: none;
}
  
  @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

  /* PHOTO GRID */
  .photo-section { padding: 4rem 2rem; background: #dff2f9; }
  .photo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 200px; gap: 6px; max-width: 1100px; margin: 0 auto; border-radius: 16px; overflow: hidden; }
  .photo-grid .p1 { grid-row: 1 / 3; }
  .photo-thumb { overflow: hidden; position: relative; background: #aaddee; }
  .photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
  .photo-thumb:hover img { transform: scale(1.04); }
  .photo-placeholder-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; z-index: 0; }
  .p1 .photo-placeholder-bg { background: linear-gradient(135deg, #d4aa50, #8b6914); }
  .p2 .photo-placeholder-bg { background: linear-gradient(135deg, #1a7fa0, #0e4d6e); }
  .p3 .photo-placeholder-bg { background: linear-gradient(135deg, #2aa8cc, #1a7fa0); }
  .p4 .photo-placeholder-bg { background: linear-gradient(135deg, #6b7c3a, #3a5020); }
  .p5 .photo-placeholder-bg { background: linear-gradient(135deg, #8a6b2a, #604510); }

  /* SECTIONS */
  .section { padding: 6rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sea); font-weight: 400; margin-bottom: 0.75rem; }
  .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: 1.5rem; }
  .section-title em {
  font-style: italic;
  color: var(--sea-light);
}
  .section-body { font-size: 1rem; color: var(--text-mid); line-height: 1.85; max-width: 620px; }
  #anreise .section-body {
  font-size: 1.12rem;
  line-height: 2;
  max-width: 680px;
  color: #4d6580;
  font-weight: 400;
}
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .sea-divider { width: 60px; height: 2px; background: linear-gradient(to right, var(--sea), var(--sea-light)); margin: 1.5rem 0; }

  /* HIGHLIGHTS */
  .highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
  .highlight-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--sea-faint); border: 1px solid rgba(26,127,160,0.22); border-radius: 30px; padding: 7px 16px; font-size: 0.82rem; color: var(--sea-deep); }

  /* QUOTE */
  .quote-block { border-left: 3px solid var(--sea); padding: 1.25rem 1.75rem; background: var(--sea-pale); border-radius: 0 12px 12px 0; margin: 2rem 0; font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--sea-deep); line-height: 1.7; }

  /* INFO CARD */
  .info-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-top: 1rem; }
  .info-card-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem; }
  .info-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .info-row:last-child { border-bottom: none; }
  .info-row span:first-child { color: var(--text-light); }
  .info-row span:last-child { font-weight: 400; color: var(--sea-deep); }
  .info-row a {
  color: var(--sea-deep);
  font-weight: 500;
  text-decoration: none;
}

.info-row a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.rental-links {
  align-items: flex-start;
}

.rental-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.rental-list a {
  color: var(--sea-deep);
  text-decoration: none;
  font-weight: 500;
}

.rental-list a:hover {
  color: var(--gold);
  text-decoration: underline;
}
  /* FEATURES */
  .features-bg { background: var(--sea-deep); }
  .features-bg .section-eyebrow { color: var(--sea-light); }
  .features-bg .section-title { color: #e8f7ff; }
  .features-bg .section-body { color: rgba(232,247,255,0.65); }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; margin-top: 3rem; }
  .feature-card { background: rgba(255,255,255,0.04); padding: 1.75rem 1.5rem; transition: background 0.2s; }
  .feature-card:hover { background: rgba(255,255,255,0.09); }
  .feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
  .feature-name { font-weight: 400; font-size: 0.9rem; color: #e8f7ff; margin-bottom: 4px; }
  .feature-desc { font-size: 0.8rem; color: rgba(232,247,255,0.5); line-height: 1.5; }

  /* SPECIALS */
  .specials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .specials-grid {
    grid-template-columns: 1fr;
  }
}
  .special-card { background: var(--sea-faint); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
  .special-card.highlight-card { background: var(--sea-deep); border-color: transparent; }
  .special-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
  .special-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--sea-deep); margin-bottom: 0.6rem; }
  .special-card.highlight-card .special-title { color: #e8f7ff; }
  .special-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
  .special-card.highlight-card .special-body { color: rgba(232,247,255,0.7); }
  .special-badge { display: inline-block; background: var(--gold); color: #fff8ec; border-radius: 20px; padding: 4px 14px; font-size: 0.75rem; letter-spacing: 0.05em; margin-top: 1rem; text-decoration: none; }

  /* BOOKING */
  .booking-bg { background: #dff2f9; }
  .booking-layout {
  display: grid;
  grid-template-columns: 760px 420px;
  gap: 2.5rem;
  align-items: stretch;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}
.booking-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(26,127,160,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  min-height: 112%;
}
  .cal-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 40px rgba(26,127,160,0.1); }
  .cal-head { background: var(--sea-deep); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
  .cal-month-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: #e8f7ff; }
  .cal-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #e8f7ff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
  .cal-btn:hover { background: rgba(255,255,255,0.22); }
  .cal-days-row { display: grid; grid-template-columns: repeat(7, 1fr); padding: 12px 1.25rem 6px; background: var(--sea-pale); }
  .cal-day-hd { text-align: center; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); padding: 4px 0; }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 8px 1.25rem 1.25rem; gap: 2px; }
  .cal-cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.85rem; cursor: pointer; color: var(--text); transition: background 0.1s; font-weight: 300; }
  .cal-cell.empty, .cal-cell.past { cursor: default; }
  .cal-cell.past { color: #ccc; }
  .cal-cell.available:hover { background: var(--sea-pale); color: var(--sea-deep); }
  .cal-cell.booked { background: #fdecea; color: #c05050; cursor: not-allowed; opacity: 0.8; }
  .cal-cell.selected { background: var(--sea-deep); color: #e8f7ff; font-weight: 400; }
  .cal-cell.in-range { background: var(--sea-pale); color: var(--sea-deep); border-radius: 0; }
  .cal-cell.range-start { border-radius: 8px 0 0 8px; background: var(--sea-deep); color: #e8f7ff; }
  .cal-cell.range-end { border-radius: 0 8px 8px 0; background: var(--sea-deep); color: #e8f7ff; }
  .cal-legend { display: flex; gap: 1.25rem; flex-wrap: wrap; padding: 12px 1.25rem 1.25rem; border-top: 1px solid var(--border); }
  .legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; color: var(--text-light); }
  .legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
  .booking-panel { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: 0 4px 40px rgba(26,127,160,0.1); }
  .booking-panel h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--sea-deep); margin-bottom: 0.3rem; }
  .booking-panel p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
  .date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1rem; }
  .date-field { background: var(--sea-faint); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
  .date-label { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
  .date-val { font-size: 0.9rem; color: var(--sea-deep); font-weight: 400; }
  .nights-badge { text-align: center; padding: 10px; background: var(--sea-pale); border: 1px solid var(--border); border-radius: 10px; font-family: var(--serif); font-size: 1.1rem; color: var(--sea-deep); margin-bottom: 1rem; display: none; }
  .book-btn { width: 100%; background: var(--sea-deep); color: #e8f7ff; border: none; border-radius: 12px; padding: 15px; font-size: 0.9rem; font-family: var(--sans); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .book-btn:hover:not(:disabled) { background: var(--sea); transform: translateY(-1px); }
  .book-btn:disabled { background: #b0cdd8; cursor: not-allowed; }

  /* MODAL */
  .modal-backdrop { position: fixed; inset: 0; background: rgba(10,40,60,0.65); backdrop-filter: blur(6px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .modal-backdrop.active { opacity: 1; pointer-events: all; }
  .modal { background: #f0f9fd; border-radius: 20px; padding: 2.5rem; max-width: 480px; width: 100%; transform: translateY(20px); transition: transform 0.3s; max-height: 90vh; overflow-y: auto; }
  .modal-backdrop.active .modal { transform: translateY(0); }
  .modal h2 { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; color: var(--sea-deep); margin-bottom: 0.5rem; }
  .modal > p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
  .form-input, .form-textarea { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 0.9rem; font-family: var(--sans); font-weight: 300; color: var(--text); transition: border-color 0.2s; outline: none; }
  .form-input:focus, .form-textarea:focus { border-color: var(--sea); }
  .form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .modal-actions { display: flex; gap: 10px; margin-top: 1.5rem; }
  .modal-cancel { flex: 1; background: transparent; border: 1px solid var(--border); border-radius: 10px; padding: 13px; font-size: 0.85rem; font-family: var(--sans); cursor: pointer; color: var(--text-mid); transition: border-color 0.2s; }
  .modal-cancel:hover { border-color: var(--sea); color: var(--sea); }
  .modal-submit { flex: 2; background: var(--sea-deep); border: none; border-radius: 10px; padding: 13px; font-size: 0.85rem; font-family: var(--sans); font-weight: 400; letter-spacing: 0.05em; color: #e8f7ff; cursor: pointer; transition: background 0.2s; }
  .modal-submit:hover { background: var(--sea); }
  .success-state { text-align: center; padding: 2rem 0; }
  .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
  .success-state h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; color: var(--sea-deep); margin-bottom: 0.75rem; }
  .success-state p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

  /* CONTACT */
  .contact-bg { background: var(--sea-deep); padding: 6rem 2rem; text-align: center; }
  .contact-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .contact-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 13px 28px; font-size: 0.85rem; font-family: var(--sans); color: #e8f7ff; cursor: pointer; transition: background 0.2s; letter-spacing: 0.04em; }
  .contact-btn:hover { background: rgba(255,255,255,0.16); }

  footer { background: #061520; padding: 2rem; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.78); letter-spacing: 0.05em; }
  footer a { color: rgba(232,247,255,0.5); text-decoration: none; }

  @media (max-width: 800px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px 150px; }
  .photo-grid .p1 { grid-column: 1 / -1; grid-row: 1; }
  .form-row { grid-template-columns: 1fr; }
}
 .hero-tagline {
  color: #f0d27a !important;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.65),
    0 0 18px rgba(0,0,0,0.35);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.bright-word {
  color: #8fe3ff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero h1 em {
  color: #f0d27a !important;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.65),
    0 0 20px rgba(0,0,0,0.35);
}
  @media (max-width: 500px) {
    .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .photo-grid .p1 { grid-column: 1; height: 260px; }
    .photo-thumb { height: 180px; }
  }
  /* ===== GALERIE NEU ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 12px;
  object-fit: contain;
  background: #eee;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* ALBEN */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.album-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  background: #fff;
}

.album-card:hover {
  transform: translateY(-6px);
}

.album-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.album-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.15),
    transparent
  );
  color: white;
}

.album-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
}

.album-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
}

/* GALLERY LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.gallery-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
}

.gallery-caption {
  color: white;
  margin-top: 1rem;
  font-size: 1rem;
}

.gallery-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
}

.gallery-nav.prev {
  left: 30px;
}

.gallery-nav.next {
  right: 30px;
}
/* ===== POPUP FORMULARE ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.popup-box {
  background: white;
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  margin: 30px auto;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.popup-box h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  color: var(--sea-deep);
  font-size: 2rem;
  font-weight: 300;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--sans);
}

.popup-box textarea {
  min-height: 120px;
}

.popup-close {
  position: sticky;
  top: 0;
  float: right;
  border: none;
  background: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.form-success{
  display:none;
  margin-top:1.5rem;
  padding:18px;
  border-radius:16px;
  background:rgba(111,168,201,0.12);
  border:1px solid rgba(111,168,201,0.25);
  text-align:center;
  line-height:1.7;
  color:var(--text-color);
  font-size:15px;
}

@media (max-width: 600px) {
  .popup-overlay {
    padding: 10px;
  }

  .popup-box {
    padding: 22px;
    margin: 15px auto;
    max-height: calc(100vh - 30px);
  }
}
/* ===== MOBILE OPTIMIERUNG ===== */

@media (max-width: 800px) {

  nav {
    height: auto;
    padding: 1rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.2rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .hero-intro {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-intro br,
  .hero-tagline br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.2rem;
    gap: 0;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 0.8rem 0;
    justify-content: flex-start;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .section {
    padding: 4rem 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cal-card iframe {
    height: 520px !important;
  }

  .album-grid {
    grid-template-columns: 1fr;
  }

  .album-card img {
    height: 300px;
  }

  .info-row {
    flex-direction: column;
    gap: 4px;
  }

  .rental-list {
    text-align: left;
    margin-top: 0.5rem;
  }

  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
  }

  footer {
    padding: 2rem 1rem;
    line-height: 1.7;
  }
  footer p,
.footer-links a {
  color: rgba(255,255,255,0.72);
}
.footer-links a:hover {
  color: #ffffff;
}

}

@media (max-width: 800px) {
  
}

@media (max-width: 500px) {

  .hero {
    padding: 6rem 1rem 3rem;
    background-position: center center !important;
    background-size: cover !important;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 5px 12px;
  }

  .popup-box {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .popup-close {
    font-size: 30px;
  }
}
.hero,
.section,
.section-inner,
.booking-layout,
.two-col {
  max-width: 100%;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
}
.calendar-wrapper {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.calendar-wrapper iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
}

.calendar-blocker {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  background: transparent;
  pointer-events: auto;
}
.legal-section {
  background: #f7fbfd;
  padding: 4rem 2rem;
}

.legal-card {
  margin-top: 2rem;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(232,247,255,0.6);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.legal-popup {
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
}
/* ===== PREISE ===== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--sea-faint);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.price-card.highlight-price {
  background: var(--sea-deep);
  color: #fff;
  transform: translateY(-6px);
}

.price-season {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--sea-deep);
  margin-bottom: 0.5rem;
}

.highlight-price .price-season {
  color: #fff;
}

.price-months {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.highlight-price .price-months {
  color: rgba(255,255,255,0.7);
}

.price-value {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.highlight-price .price-note {
  color: rgba(255,255,255,0.7);
}

.price-info {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  color: var(--text-mid);
}

.price-info p {
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {

  .price-card.highlight-price {
    transform: none;
  }

  .price-value {
    font-size: 2rem;
  }

}
/* ===== FAQ ===== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  transition: 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.faq-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--sea-deep);
}

.faq-card p {
  color: var(--text-mid);
  line-height: 1.7;
}
/* ===== BOOKING HEADER ===== */

.booking-header {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.booking-header .sea-divider {
  margin-left: auto;
  margin-right: auto;
}

.booking-header .section-body {
  max-width: 820px;
  margin: 0 auto;
}

.booking-header .section-body {
  max-width: 700px;
}
.booking-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-steps {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.booking-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sea-pale);
  color: var(--sea-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
}

.booking-step strong {
  color: var(--sea-deep);
  font-size: 0.9rem;
}

.booking-step p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.booking-whatsapp {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  width:100%;
  margin-top:1rem;
  padding:14px 20px;

  background:#25D366;
  color:white !important;

  border:none;
  border-radius:999px;

  font-weight:600;
  text-decoration:none;

  transition:0.3s ease;

  font-family:inherit;
  font-size:0.95rem;
  font-weight:500;
  letter-spacing:0.5px;
  text-transform:uppercase;
}

.booking-whatsapp:hover {
  background:#1ebe5d;
  color:white !important;
}
.booking-header-split {
  max-width: 1240px;
  margin: 0 auto 3rem auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
}

.booking-header-split .section-body {
  max-width: 620px;
  margin: 0;
}

.booking-header-split .sea-divider {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 900px) {
  .booking-header-split {
    display: block;
    text-align: left;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }
}
.booking-panel h3 {
  font-size: 1.7rem;
}

.booking-panel > div:first-child p {
  font-size: 0.95rem;
}

.booking-step strong {
  font-size: 1rem;
}

.booking-step p {
  font-size: 0.88rem;
}
/* TEXT ÜBER DEM KALENDER */

.booking-header-split .section-body {
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 400;
}

/* BUCHUNGSBOX */

.booking-panel h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.booking-panel > div:first-child p {
  font-size: 1.02rem;
  line-height: 1.9;
}

.booking-step {
  gap: 1.2rem;
}

.booking-step span {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.booking-step strong {
  font-size: 1.08rem;
}

.booking-step p {
  font-size: 0.96rem;
  line-height: 1.8;
}
.booking-panel h3 {
  font-size: 2.1rem !important;
}

.booking-panel > div:first-child p {
  font-size: 1.08rem !important;
  line-height: 1.9;
}
.booking-title-big {
  font-size: 3rem !important;
  line-height: 1.2 !important;
}

.booking-text-big {
  font-size: 1.1rem !important;
  line-height: 1.9 !important;
}
/* ===== AUSSTATTUNG FEINTUNING ===== */

.features-header {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.features-header .section-body {
  margin: 0;
  max-width: 620px;
  font-size: 1.05rem;
}

/* Handy kompakter */
@media (max-width: 800px) {

  .features-header {
    display: block;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1rem;
    min-height: auto;
  }

  .feature-icon {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .feature-name {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .feature-desc {
    display: none;
  }
}
/* ===== PREISBEREICH FEINTUNING ===== */

.price-header-info {
  display: flex;
  justify-content: center;
  margin: 2rem auto 3rem;
  text-align: center;
}

.price-header-info .section-body {
  max-width: 850px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.price-notes {
  display: flex;
  justify-content: center;
  gap: 5rem;
  text-align: left;
  margin-top: 2.5rem;
  line-height: 2;
}

.price-notes div {
  max-width: 420px;
}
/* ===== PREISE FEINTUNING FINAL ===== */

.price-header-split {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 4rem;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto 3rem;
}

.price-header-split .section-body {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
}

.price-info-bar {
  margin: 2rem auto 0;
  max-width: 1220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.price-info-bar div {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 0.8rem;
}

.price-info-bar div:last-child {
  border-right: none;
}

.price-info-bar span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.price-info-bar strong {
  display: block;
  color: var(--sea-deep);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .price-header-split {
    display: block;
  }

  .price-info-bar {
    grid-template-columns: 1fr;
  }

  .price-info-bar div {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
  }

  .price-info-bar div:last-child {
    border-bottom: none;
  }
}
.booking-agb {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 1.2rem 0;
  padding: 0.9rem 1rem;
  background: var(--sea-faint);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.booking-agb input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.booking-agb label {
  margin: 0;
}

.booking-agb a {
  color: var(--sea-deep);
  font-weight: 500;
  text-decoration: underline;
}
/* ===== FOOTER MINI WERBUNG ===== */

.footer-ad-mini {
  padding: 0.5rem 0 0.3rem;
}

.footer-ad-mini a {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  text-decoration: none;

  opacity: 0.82;
  transition: 0.3s ease;
}

.footer-ad-mini a:hover {
  opacity: 1;
}

.footer-ad-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.footer-ad-mini img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.footer-ad-mini strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.footer-ad-mini small {
  color: var(--gold-light);
  font-size: 0.85rem;
}

@media (max-width:700px) {

  .footer-ad-mini a {
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 1rem;
  }

  .footer-ad-mini strong {
    font-size: 0.82rem;
  }

  .footer-ad-mini small {
    font-size: 0.76rem;
  }
}

/* INFO-KARTEN LESBARER */

.info-card {
  padding: 2rem;
  border: 2px solid rgba(26,127,160,0.28);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(26,127,160,0.06);
}

.info-card-label {
  color: var(--sea-deep);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.info-row {
  font-size: 0.98rem;
  padding: 13px 0;
}

.info-row span:first-child {
  color: var(--sea-deep);
  font-weight: 500;
}

.info-row span:last-child {
  color: #06364f;
  font-weight: 600;
}
/* ===== GÄSTE-STIMMEN / BEWERTUNGEN ===== */

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 3rem;
}

.review-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-style: italic;
  align-self: center;
  margin-top: 72px;
  white-space: normal;
}

@media (max-width: 900px) {
  .review-header {
    display: block;
  }

  .review-intro {
    max-width: 100%;
    margin-top: 1.5rem;
    padding-top: 0;
  }
}

.review-header .section-body {
  margin: 0;
  max-width: 620px;
}

.review-preview {
  background: #fff;
  border: 2px solid rgba(26,127,160,0.22);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 8px 30px rgba(26,127,160,0.06);
}

.review-preview span {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.review-preview strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--sea-deep);
  font-size: 1.1rem;
}

.review-preview p {
  margin-top: 0.4rem;
  color: var(--text-mid);
  max-width: 620px;
}
.review-more {
  display: none;
}

.review-toggle {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--gold);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.review-toggle:hover {
  opacity: 1;
}

@media (max-width: 800px) {

  .review-header {
    display: block;
  }

  .info-card {
    width: 100%;
    max-width: 100%;
  }

  .info-table {
    width: 100%;
    font-size: 0.92rem;
  }

  .review-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-preview .btn-primary {
    width: 100%;
    text-align: center;
  }

}

  .review-preview .btn-primary {
    width: 100%;
    text-align: center;
  }

/* ===== BEWERTUNGSKARTEN NEU ===== */

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem;
}

.review-mini-title {
  font-size: 1.2rem;
  color: var(--sea-deep);
  font-weight: 500;
}

.review-small-btn {
  padding: 10px 22px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 420px));
  gap: 1.4rem;
  margin-top: 1.8rem;
  align-items: start;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 8px 28px rgba(26,127,160,0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.review-name {
  color: var(--sea-deep);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.review-card h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.review-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
}

.review-more {
  display: none;
}

.review-toggle {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .review-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .review-small-btn {
    width: auto;
  }
}

/* ===== EXTRAS HEADER ===== */

.extras-header {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.extras-header .section-body {
  margin: 0;
  max-width: 620px;
}

#specials .specials-grid {
  margin-top: 2.5rem;
}

@media (max-width: 800px) {
  .extras-header {
    display: block;
  }

  .extras-header .section-body {
    margin-top: 1.5rem;
  }
}

/* ===== ANREISE / MAP ===== */

.arrival-map {
  margin-top: 3.2rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.arrival-map iframe {
  display: block;
  width: 100%;
}

#anreise .section-body {
  font-size: 1.12rem;
  line-height: 2;
  max-width: 680px;
  color: #4d6580;
  font-weight: 400;
}

#anreise .two-col {
  align-items: end;
}

#anreise .info-card {
  padding: 2.6rem;
  margin-top: 0;
}
.fleur-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.info-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-center-brand {
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(232,247,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}

.nav-center-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(212,170,55,0.35));
}
@media (max-width: 800px) {
  .nav-center-brand {
  position: static;
  transform: none;
  justify-content: center;
  margin-bottom: 12px;
  order: -1;
}

.nav-links {
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 64px;
}
nav {
  flex-direction: column;
  align-items: stretch;
  height: auto;
  padding: 0.8rem 1rem;
}

}
.review-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  margin-top: 0.8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.review-card h4 {
  margin-bottom: 14px;
  color: var(--blue);
}

.review-card p {
  line-height: 1.8;
  color: var(--text-color);
}

.review-more {
  display: none;
}

.review-toggle {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.92rem;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.review-toggle:hover {
  opacity: 1;
}
.mobile-nav-main {
  display: none;
}

@media (max-width: 800px) {

  nav > .nav-logo {
    display: none;
  }

  .mobile-nav-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .mobile-nav-logo {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: #e8f7ff;
    white-space: nowrap;
  }

  .mobile-nav-logo span {
    color: var(--sea-light);
    font-style: italic;
  }

  .mobile-book-btn {
  justify-self: center;
  background: var(--gold);
  color: #fff8ec;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-left: 18px;
}

  .mobile-lang {
    justify-self: end;
    position: relative;
  }

  .mobile-lang button {
    background: transparent;
    border: none;
    color: rgba(232,247,255,0.75);
    font-size: 0.72rem;
    cursor: pointer;
  }

  .mobile-lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 28px;
    background: rgba(14,77,110,0.98);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 130px;
    z-index: 999;
  }

  .mobile-lang:hover .mobile-lang-menu {
    display: block;
  }

  .mobile-lang-menu a {
    display: block;
    padding: 8px 14px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
  }
}
.review-btn-mobile {
  display: none;
}

@media (max-width: 800px) {
  .review-btn-desktop {
    display: none;
  }

  .review-btn-mobile {
    display: block;
    margin: 1.5rem auto 0;
  }
}
.review-invite-text {
  margin-top: 2.2rem;
  text-align: center;
}

.review-btn-mobile {
  display: block;
  margin: 0.9rem auto 0;
}
/* ===== BEWERTUNGEN FINAL FEINTUNING ===== */

#bewertungen .review-header {
  margin-bottom: 0.8rem;
}

#bewertungen .review-grid {
  margin-top: 0;
  margin-bottom: 2rem;
}

#bewertungen .review-invite-text {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

#bewertungen .review-btn-mobile {
  display: block;
  margin: 1.4rem auto 0;
}

@media (max-width: 800px) {
  #bewertungen .review-header {
    margin-bottom: 1.6rem;
  }

  #bewertungen .review-grid {
    margin-bottom: 1.6rem;
  }

  #bewertungen .review-card {
    padding: 1.7rem;
  }
}
@media (max-width: 800px) {
  #bewertungen .review-header {
    margin-bottom: 1.5rem;
  }

  #bewertungen .review-grid {
    margin-top: -1rem;
  }
}
@media (min-width: 801px) {

  #bewertungen .review-invite-text {
    max-width: 100%;
    text-align: center;
    margin-top: 2rem;
  }

  #bewertungen .review-btn-mobile {
    display: block;
    margin: 1.4rem auto 0;
  }

}
/* ===== DESKTOP SPRACHE ===== */

nav {
  overflow: visible;
}

.nav-links {
  align-items: center;
}

.desktop-lang {
  position: relative;
}

.desktop-lang button {
  background: transparent;
  border: none;
  color: rgba(232,247,255,0.75);
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
}

.desktop-lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(14,77,110,0.98);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 140px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Unsichtbare Brücke zwischen Button und Menü verhindert das Schließen */
.desktop-lang::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.desktop-lang.open .desktop-lang-menu {
  display: block;
}

.desktop-lang-menu a {
  display: block;
  padding: 8px 14px;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .desktop-lang {
    display: none;
  }
}
.review-country {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-left: 6px;
  font-weight: 400;
}
/* =========================
   MOBILE INFO-CARD FIX
   harmonischere Schrift
========================= */

@media (max-width: 768px) {

  .info-card .info-row {
    align-items: flex-start;
    gap: 10px;
  }

  .info-card .info-row span:first-child {
    color: #23435a;
    font-weight: 400;
    line-height: 1.45;
  }

  .info-card .info-row span:last-child {
    color: #18384d;
    font-weight: 500;
    font-size: 0.96rem;
    text-align: right;
    line-height: 1.45;
  }

  /* Mietwagenbereich harmonischer */
  .rental-links strong {
    color: #18384d;
    font-weight: 500;
  }

  .rental-links small {
    color: #5d7487;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .rental-list a {
    color: #23435a;
    font-weight: 400;
  }

}
/* =========================
   MOBILE OVERFLOW FIX
   verhindert Abschneiden rechts
========================= */

@media (max-width: 768px) {

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section,
  .section-inner,
  .two-col,
  .info-card,
  .quote-block,
  .price-header-split,
  .features-header,
  .extras-header,
  .review-header {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Insel-Bereich: Bild und Text auf Mobile sauber untereinander */
  #insel .section-inner.two-col > div:first-child > div:first-child {
    flex-direction: column;
    align-items: flex-start;
  }

  #insel .section-inner.two-col > div:first-child > div:first-child > div:last-child {
    flex: none !important;
    width: 100%;
  }

  #insel img {
    max-width: 100%;
    height: auto;
  }

  /* Highlight-Pills dürfen sauber umbrechen */
  .highlights {
    flex-wrap: wrap;
    overflow: hidden;
  }

  .highlight-pill {
    max-width: 100%;
    white-space: normal;
  }

  /* Info-Karten nicht nach rechts drücken */
  .info-row {
    flex-wrap: wrap;
  }

  .info-row span {
    max-width: 100%;
  }
}
/* =========================
   INFO-CARD VALUES CLEAN ALIGN
   lange Werte rechts sauber umbrechen
========================= */

.info-card .info-row {
  display: grid;
  grid-template-columns: 38% 1fr;
  column-gap: 18px;
  align-items: start;
}

.info-card .info-row span:first-child {
  text-align: left;
}

.info-card .info-row span:last-child {
  text-align: right;
  justify-self: end;
  max-width: 100%;
  line-height: 1.45;
}

/* Mobile etwas luftiger */
@media (max-width: 768px) {
  .info-card .info-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .info-card .info-row span:last-child {
    text-align: left;
    justify-self: start;
  }
}
/* Griechisch im Sprachmenü optisch harmonischer */
.desktop-lang-menu a[href="index-gr.html"],
.mobile-lang-menu a[href="index-gr.html"] {
  font-weight: 400 !important;
  letter-spacing: -0.2px;
  opacity: 0.92;
}
.adult-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 1.6rem;
  padding: 8px 18px;

  background: rgba(14,77,110,0.62);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;

  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.adult-note::before {
  content: "18+";
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .adult-note {
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 320px;
    margin: 1.4rem auto 0;
    padding: 9px 14px;
    border-radius: 18px;
  }
}
.review-translate{
  margin-top:14px;
}

.review-translate-btn{
  border:none;
  background:none;
  color:#6fa8c9;
  font-size:14px;
  cursor:pointer;
  padding:0;
  transition:opacity 0.2s ease;
}

.review-translate-btn:hover{
  opacity:0.7;
}
.review-text{
  line-height:1.7;
  margin-top:10px;
}

.short-text{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.read-more-btn{
  display:block;
  margin-top:14px;
  margin-bottom:8px;
  border:none;
  background:none;
  color:#6fa8c9;
  font-size:14px;
  cursor:pointer;
  padding:0;
}

.read-more-btn:hover{
  opacity:0.7;
}
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: -0.4rem;
  margin-bottom: 1rem;
}