/* ═══════════════════════════════════════════════════════════
   Bootsvermietung Duisburg - Main Stylesheet
   Combined: Homepage + Product Page (Blueliner)
   ═══════════════════════════════════════════════════════════ */

/* Fonts werden lokal über fonts.css geladen (DSGVO-konform) */

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES & BASE RESET
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --sky:      #e8f4fd;
  --sky-mid:  #cce6f8;
  --ocean:    #1a6fad;
  --ocean-d:  #0f5289;
  --ocean-l:  #2d8fd4;
  --sun:      #f5a623;
  --sun-l:    #ffc04a;
  --white:    #ffffff;
  --text:     #1c3a52;
  --text-mid: #4a6a82;
  --text-lt:  #7a9ab2;
  --wave:     #e0f0fb;
  --green:    #16a34a;
  --tr: .35s cubic-bezier(.25,.8,.25,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--sky);
}

::-webkit-scrollbar-thumb {
  background: var(--ocean);
  border-radius: 3px;
}

/* ═══ ANNOUNCEMENT ═══ */
.announcement {
  background: var(--ocean);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.announcement strong { color: var(--sun-l); }

/* ═══ TOPBAR ═══ */
.bvd-topbar {
  background: #19304e;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  text-align: center;
}
.bvd-topbar a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: color var(--tr);
}
.bvd-topbar a:hover { color: var(--sun-l); }
.bvd-topbar span { color: rgba(255,255,255,.4); }

/* ═══ NAV ═══ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #e9feff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,111,173,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  box-shadow: 0 2px 20px rgba(26,111,173,.08);
}

.bvd-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #e9feff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,111,173,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  box-shadow: 0 2px 16px rgba(26,111,173,.08);
  max-width: 100%;
}

.nav-brand,
.bvd-nav .nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
  text-decoration: none;
}

.nav-brand span,
.bvd-nav .nav-brand span {
  color: var(--ocean);
  display: block;
  font-size: .7rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-logo,
.bvd-nav .nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img,
.bvd-nav .nav-logo img {
  height: 80px;
  width: auto;
  max-width: none;
}

.nav-burger,
.bvd-nav .nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--ocean);
  padding: 4px 8px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a,
.bvd-nav .nav-right a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--tr);
}

.nav-links a:hover,
.bvd-nav .nav-right a:hover {
  color: var(--ocean);
}

.nav-links a.btn-primary,
.bvd-nav .nav-right a.btn-primary {
  color: var(--white);
}

.bvd-nav .nav-right a.btn-sun {
  color: var(--white);
}

.bvd-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bvd-nav .btn-back {
  background: transparent;
  border: 1.5px solid rgba(26,111,173,.25);
  color: var(--text-mid);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .82rem;
  text-decoration: none;
  transition: all var(--tr);
}

.bvd-nav .btn-back:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.btn-primary,
.bvd-nav .btn-primary {
  background: var(--ocean);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-primary:hover,
.bvd-nav .btn-primary:hover {
  background: var(--ocean-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,173,.35);
}

.bvd-nav .btn-sun {
  background: linear-gradient(135deg, var(--sun), var(--sun-l));
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(245,166,35,.3);
  transition: transform var(--tr), box-shadow var(--tr);
}

.bvd-nav .btn-sun:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,166,35,.45);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all var(--tr);
}

.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
}

.btn-sun {
  background: linear-gradient(135deg, var(--sun), var(--sun-l));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
  transition: transform var(--tr), box-shadow var(--tr);
}

.btn-sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,.5);
}

/* ═══ GALLERY (Product Page) ═══ */
.bvd-gallery {
  padding: 0 60px;
  margin-top: 28px;
}

.bvd-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 200px 160px 160px;
  gap: 8px;
  border-radius: 22px;
  overflow: hidden;
}

.bvd-gallery .gallery-main {
  grid-row: 1 / 4;
  overflow: hidden;
}

.bvd-gallery .gallery-main img,
.bvd-gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  max-width: none;
}

.bvd-gallery .gallery-main:hover img {
  transform: scale(1.03);
}

.bvd-gallery .gallery-thumb {
  position: relative;
  overflow: hidden;
}

.bvd-gallery .gallery-thumb:hover img {
  transform: scale(1.05);
}

.bvd-gallery .gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(26,111,173,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  gap: 8px;
  cursor: pointer;
  transition: background var(--tr);
}

.bvd-gallery .gallery-more:hover {
  background: rgba(26,111,173,.7);
}

/* ═══ MAIN 2-COLUMN LAYOUT ═══ */
.bvd-main {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 44px;
  padding: 36px 60px 80px;
  align-items: start;
  max-width: 100%;
}

/* ═══ BADGES ═══ */
.badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .3px;
}

.badge-top {
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  color: #c47d00;
}

.badge-skip {
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  color: var(--green);
}

.badge-verified {
  background: rgba(26,111,173,.1);
  border: 1px solid rgba(26,111,173,.2);
  color: var(--ocean);
}

.boat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.stars {
  color: var(--sun);
  font-size: 1.05rem;
}

.rating-val {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.rating-count {
  color: var(--text-lt);
  font-size: .85rem;
}

.rating-count a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 600;
}

/* ═══ HOST CARD ═══ */
.host-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.12);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.host-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ocean-l);
}

.host-info h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}

.host-info p {
  font-size: .78rem;
  color: var(--text-lt);
  margin-top: 2px;
}

.host-badge {
  margin-left: auto;
  background: var(--ocean);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-block;
  width: auto;
  max-width: fit-content;
}

/* ═══ QUICK SPECS ═══ */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26,111,173,.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.qs-item {
  background: var(--white);
  padding: 18px;
  text-align: center;
}

.qs-icon {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.qs-val {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ocean);
}

.qs-label {
  font-size: .7rem;
  color: var(--text-lt);
  margin-top: 2px;
  font-weight: 600;
}

/* ═══ TABS ═══ */
.tabs {
  border-bottom: 2px solid var(--sky-mid);
  margin-bottom: 28px;
  display: flex;
  gap: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-lt);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--tr), border-color var(--tr);
}

.tab-btn.active {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

.tab-btn:hover:not(.active) {
  color: var(--text-mid);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ═══ DESCRIPTION ═══ */
.desc-text {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.8;
}

.desc-text p {
  margin-bottom: 14px;
}

.desc-text strong {
  color: var(--text);
}

.desc-highlight {
  padding: 16px 20px;
  background: rgba(26,111,173,.06);
  border-left: 3px solid var(--ocean);
  border-radius: 8px;
  margin-top: 8px;
}

/* ═══ EQUIPMENT ═══ */
.ausstattung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ausstattung-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.1);
  border-radius: 11px;
  padding: 13px 15px;
  font-size: .83rem;
  color: var(--text-mid);
  transition: border-color var(--tr), background var(--tr);
}

.ausstattung-item:hover {
  border-color: var(--ocean-l);
  background: var(--white);
}

.ausstattung-item span {
  font-size: 1.05rem;
}

/* ═══ REVIEWS ═══ */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--sky);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(26,111,173,.1);
  margin-bottom: 28px;
}

.rbs {
  text-align: center;
}

.rbs-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ocean);
  line-height: 1;
}

.rbs-stars {
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 4px 0;
}

.rbs-count {
  font-size: .78rem;
  color: var(--text-lt);
}

.review-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.rc-top {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  margin-bottom: 4px;
}

.rc-name {
  color: var(--text-mid);
}

.rc-score {
  color: var(--ocean);
  font-weight: 700;
}

.rc-bar {
  height: 5px;
  background: var(--sky-mid);
  border-radius: 3px;
  overflow: hidden;
}

.rc-fill {
  height: 100%;
  background: linear-gradient(to right, var(--ocean), var(--ocean-l));
  border-radius: 3px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-item {
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.08);
  border-radius: 16px;
  padding: 22px;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.review-item:hover {
  border-color: rgba(26,111,173,.2);
  box-shadow: 0 4px 20px rgba(26,111,173,.08);
}

.ri-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ri-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  color: var(--white);
  flex-shrink: 0;
}

.av-ocean {
  background: linear-gradient(135deg, var(--ocean-l), var(--ocean-d));
}

.av-teal {
  background: linear-gradient(135deg, #00b4cc, #005566);
}

.av-rose {
  background: linear-gradient(135deg, #f43f5e, #be123c);
}

.av-green {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.av-purple {
  background: linear-gradient(135deg, #a855f7, #6b21a8);
}

.av-blue {
  background: linear-gradient(135deg, var(--ocean-l), var(--ocean-d));
}

.av-sky {
  background: linear-gradient(135deg, #38bdf8, #0369a1);
}

.ri-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
}

.ri-date {
  font-size: .74rem;
  color: var(--text-lt);
}

.ri-stars {
  margin-left: auto;
  color: var(--sun);
  font-size: .9rem;
}

.ri-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══ CONDITIONS ═══ */
.bed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bed-card {
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.1);
  border-radius: 14px;
  padding: 20px;
}

.bed-card h4 {
  font-size: .75rem;
  color: var(--ocean);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.bed-row {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26,111,173,.07);
}

.bed-row:last-child {
  border-bottom: none;
}

.bed-key {
  color: var(--text-lt);
}

.bed-val {
  font-weight: 700;
  color: var(--text);
}

/* ═══ BOOKING WIDGET ═══ */
.booking-widget {
  position: sticky;
  top: 80px;
  background: var(--white);
  border: 1.5px solid rgba(26,111,173,.2);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 48px rgba(26,111,173,.12);
}

.bw-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.bw-score {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.bw-stars {
  color: var(--sun);
}

.bw-count {
  color: var(--text-lt);
  font-size: .82rem;
}

.bw-price-section {
  background: var(--sky);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.bw-price-label {
  font-size: .72rem;
  color: var(--text-lt);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr td {
  padding: 7px 0;
  font-size: .87rem;
}

.price-table tr td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ocean);
}

.price-table tr td:first-child {
  color: var(--text-mid);
}

.price-sub {
  font-size: .75rem;
  color: var(--text-lt);
  margin-top: 10px;
  line-height: 1.5;
}

.bw-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sky-mid);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.bw-date-field {
  background: var(--sky);
  padding: 12px 14px;
  cursor: pointer;
  transition: background var(--tr);
}

.bw-date-field:hover {
  background: var(--sky-mid);
}

.bw-date-label {
  font-size: .68rem;
  color: var(--text-lt);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.bw-date-val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 3px;
}

.bw-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--sun), var(--sun-l));
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 18px rgba(245,166,35,.3);
  transition: transform var(--tr), box-shadow var(--tr);
  margin-bottom: 14px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.bw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.45);
}

.bw-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bw-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  color: var(--text-lt);
}

.bw-trust-item::before {
  content: '\2713';
  color: var(--green);
  font-weight: 800;
}

.bw-divider {
  height: 1px;
  background: var(--sky-mid);
  margin: 18px 0;
}

.bw-host {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bw-host-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ocean-l);
}

.bw-host-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
}

.bw-host-sub {
  font-size: .74rem;
  color: var(--text-lt);
}

.bw-call-btn {
  margin-left: auto;
  background: var(--ocean);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background var(--tr);
}

.bw-call-btn:hover {
  background: var(--ocean-d);
}

/* ═══ MAP ═══ */
.bvd-map {
  padding: 80px 60px;
  position: relative;
  background:
    linear-gradient(rgba(15,40,60,.7), rgba(15,40,60,.75)),
    url('../images/Innenhafen-gaby.png') center/cover no-repeat;
}

.bvd-map h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.map-box {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}

.map-box .map-ico {
  font-size: 2.2rem;
}

.map-box a {
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.4);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 4px;
  transition: all var(--tr);
}

.map-box a:hover {
  background: var(--sun);
  color: var(--white);
  border-color: var(--sun);
}

.map-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: rgba(255,255,255,.85);
}

.map-info-item .ico {
  color: var(--ocean);
}

/* ═══ FOOTER ═══ */
footer,
.bvd-footer {
  background: #19304e;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bvd-footer p {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}

.flinks {
  display: flex;
  gap: 18px;
}

.flinks a {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  text-decoration: none;
  transition: color var(--tr);
}

.flinks a:hover {
  color: var(--white);
}

footer p {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h5 {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun-l);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--tr);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
  text-decoration: none;
  transition: color var(--tr);
}

.footer-links a:hover {
  color: var(--white);
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bootsvermietung-duisburg-hero.jpg.png') center/cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.9) 0%, rgba(255,255,255,.75) 30%, rgba(255,255,255,0) 50%);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,173,.1);
  border: 1px solid rgba(26,111,173,.25);
  color: var(--ocean);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--ocean);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Mobile Hero-Bild — auf Desktop versteckt */
.hero-img-mobile {
  display: none;
}

/* CTA-Bereich — auf Desktop links positioniert wie vorher */
.hero-cta-below {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 80px;
  max-width: 680px;
}

.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  display: block;
}

.hero-stats {
  position: absolute;
  bottom: 90px;
  right: 80px;
  z-index: 2;
  display: flex;
  gap: 24px;
}

.hstat {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,111,173,.15);
  border: 1px solid rgba(26,111,173,.08);
}

.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ocean);
  line-height: 1;
}

.hstat-label {
  font-size: .72rem;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

/* ═══ SECTIONS ═══ */
section {
  padding: 90px 60px;
}

.section-tag {
  display: inline-block;
  color: var(--ocean);
  font-size: .73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--ocean);
  border-radius: 2px;
  margin: 16px 0 36px;
}

/* ═══ FLOTTE ═══ */
#flotte {
  background: var(--sky);
}

.flotte-header {
  text-align: center;
  margin-bottom: 60px;
}

.flotte-header .section-sub {
  margin: 0 auto;
}

.flotte-header .divider {
  margin: 16px auto 0;
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.boat-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,111,173,.08);
  border: 1px solid rgba(26,111,173,.08);
  transition: transform var(--tr), box-shadow var(--tr);
}

.boat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,111,173,.18);
}

.boat-img-wrap {
  overflow: hidden;
  position: relative;
  height: 230px;
}

.boat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.boat-card:hover .boat-img {
  transform: scale(1.05);
}

.boat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ocean);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.rating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-badge .star {
  color: var(--sun);
}

.boat-body {
  padding: 24px;
}

.boat-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 6px;
}

.boat-tagline {
  color: var(--text-lt);
  font-size: .85rem;
  margin-bottom: 18px;
}

.boat-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--text-mid);
}

.spec-icon {
  font-size: .9rem;
}

.boat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(26,111,173,.08);
}

.boat-price-label {
  font-size: .72rem;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.boat-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ocean);
  font-weight: 700;
}

.boat-price-val span {
  font-size: .78rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-lt);
  font-weight: 400;
}

/* ═══ SPECIAL OFFER BANNER ═══ */
.boat-special-offer {
  background: linear-gradient(135deg, #e8f9ee 0%, #d4f1df 100%);
  border: 1.5px solid var(--green);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.offer-text {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.3;
}

.offer-text strong {
  color: #0d7a2e;
}

.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d7a2e;
  white-space: nowrap;
  margin-left: 12px;
}

.offer-price span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-mid);
  text-align: right;
}

/* ═══ EXPERIENCES ═══ */
#erlebnisse {
  background: var(--white);
}

.erlebnisse-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.erlebnisse-img-wrap {
  position: relative;
}

.erlebnisse-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(26,111,173,.15);
}

.erl-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ocean);
  color: var(--white);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 12px 36px rgba(26,111,173,.3);
}

.erl-float-label {
  font-size: .72rem;
  opacity: .75;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.erl-float-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.routes-list {
  list-style: none;
  margin-top: 28px;
}

.routes-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sky-mid);
  align-items: flex-start;
}

.routes-list li:last-child {
  border-bottom: none;
}

.route-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(26,111,173,.1);
}

.route-info h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.route-info p {
  font-size: .82rem;
  color: var(--text-lt);
  line-height: 1.55;
}

/* ═══ USPs ═══ */
#usps {
  background: var(--ocean);
  padding: 60px;
}

.usps-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.usp-item {
  padding: 30px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.usp-item:last-child {
  border-right: none;
}

.usp-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.usp-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 8px;
}

.usp-text {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ═══ REVIEWS ═══ */
#bewertungen {
  background: var(--sky);
}

.bew-header {
  text-align: center;
  margin-bottom: 50px;
}

.bew-header .section-sub {
  margin: 0 auto;
}

.bew-header .divider {
  margin: 16px auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(26,111,173,.07);
  border: 1px solid rgba(26,111,173,.06);
  transition: transform var(--tr), box-shadow var(--tr);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,111,173,.14);
}

.review-stars {
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
}

.reviewer-meta {
  font-size: .76rem;
  color: var(--text-lt);
}

/* ═══ CONTACT ═══ */
#kontakt {
  background: var(--white);
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.kontakt-cards {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.12);
  border-radius: 14px;
  padding: 16px 20px;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.kontakt-card:hover {
  border-color: var(--ocean-l);
  box-shadow: 0 4px 16px rgba(26,111,173,.1);
}

.kc-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--ocean);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.kc-label {
  font-size: .72rem;
  color: var(--text-lt);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.kc-val {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
}

.kontakt-form {
  background: var(--sky);
  border: 1px solid rgba(26,111,173,.12);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(26,111,173,.07);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  color: var(--text-lt);
  font-size: .88rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(26,111,173,.18);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,111,173,.12);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ═══ FAQ ═══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(26,111,173,.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.faq-item:has(.faq-a.open) {
  border-color: var(--ocean);
  box-shadow: 0 4px 20px rgba(26,111,173,.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--tr);
}

.faq-q:hover {
  color: var(--ocean);
}

.faq-arrow {
  color: var(--ocean);
  font-size: .75rem;
  transition: transform var(--tr);
  flex-shrink: 0;
}

.faq-q.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--tr);
}

.faq-a.open {
  max-height: 300px;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-a strong {
  color: var(--text);
}

/* ═══ BLOG ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,111,173,.07);
  border: 1px solid rgba(26,111,173,.07);
  transition: transform var(--tr), box-shadow var(--tr);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26,111,173,.14);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ocean);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  font-size: .75rem;
  color: var(--text-lt);
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-body p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--ocean);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap var(--tr);
}

.blog-link:hover {
  text-decoration: underline;
}

/* ═══ LIGHTBOX ═══ */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lb-overlay.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  line-height: 1;
}

.lb-close:hover {
  color: var(--sun);
}

.lb-img-wrap {
  max-width: 85vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lb-nav:hover {
  background: rgba(255,255,255,.3);
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-counter {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
}

.lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 85vw;
}

.lb-thumbs img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: .5;
  transition: opacity .2s;
  border: 2px solid transparent;
}

.lb-thumbs img.active {
  opacity: 1;
  border-color: var(--sun);
}

.lb-thumbs img:hover {
  opacity: .8;
}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.wa-label {
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 24px 0 0 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
  transform: translateX(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  nav,
  .bvd-topbar,
  .bvd-nav,
  .bvd-gallery,
  .bvd-map,
  .bvd-footer,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding: 60px 20px;
  }

  #usps {
    padding: 50px 20px;
  }

  .bvd-main {
    grid-template-columns: 1fr;
    padding: 20px 16px 60px;
  }

  .booking-widget {
    position: static;
  }

  .hero-wrap {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .bvd-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 140px;
  }

  .bvd-gallery .gallery-main {
    grid-row: auto;
  }

  .quick-specs {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .review-summary {
    grid-template-columns: 1fr;
  }

  /* Bewertungs-Kategorien einspaltig auf Mobile */
  .review-cats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Tabs horizontal scrollbar statt Overflow */
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    padding: 10px 14px;
    font-size: .78rem;
    flex-shrink: 0;
  }

  /* Beschreibung Text nicht überlaufen */
  .desc-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Generelles Overflow verhindern */
  .bvd-main,
  .detail-left,
  .booking-widget {
    overflow-x: hidden;
    max-width: 100%;
  }

  #hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-bg {
    background: #fff;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: .7rem;
    padding: 6px 14px;
    letter-spacing: 1px;
  }

  .hero-cta-below {
    justify-content: center;
    padding: 0 24px;
    margin-top: 20px;
    max-width: 100%;
  }

  /* Mobile Hero-Bild einblenden */
  .hero-img-mobile {
    display: block;
    width: 100%;
    margin: 0;
    line-height: 0;
  }

  .hero-img-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 50vh;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 0;
    padding: 0 24px;
  }

  .hstat {
    padding: 14px 18px;
    border-radius: 12px;
  }

  .hstat-num {
    font-size: 1.5rem;
  }

  .erlebnisse-inner,
  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .usps-inner {
    grid-template-columns: 1fr 1fr;
  }

  .usp-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .erl-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    border-radius: 14px;
  }

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

@media (max-width: 960px) {
  nav,
  .bvd-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 8px 16px;
    position: sticky;
    top: 0;
  }

  .nav-logo,
  .bvd-nav .nav-logo {
    position: static;
    transform: none;
    order: 1;
    flex-shrink: 0;
  }

  .nav-logo img,
  .bvd-nav .nav-logo img {
    height: 44px;
  }

  .nav-brand,
  .bvd-nav .nav-brand {
    width: auto;
    text-align: left;
    order: 2;
    font-size: .95rem;
    line-height: 1.15;
  }

  .nav-brand span,
  .bvd-nav .nav-brand span {
    font-size: .6rem;
    letter-spacing: 2px;
  }

  .nav-burger,
  .bvd-nav .nav-burger {
    display: block;
    order: 3;
    width: auto;
    text-align: center;
    flex-shrink: 0;
  }

  .nav-links,
  .bvd-nav .nav-right {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    order: 4;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(26,111,173,.15);
  }

  .nav-links.open,
  .bvd-nav .nav-right.open {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero-wrap {
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: .9rem;
    margin-bottom: 12px;
  }

  .hero-cta-below {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-img-mobile img {
    max-height: 45vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hstat {
    padding: 12px 16px;
    flex: 1;
    min-width: 90px;
  }

  .hstat-num {
    font-size: 1.3rem;
  }

  section {
    padding: 60px 20px;
  }

  .boats-grid {
    gap: 20px;
  }

  .usps-inner {
    grid-template-columns: 1fr;
  }

  .wa-float {
    bottom: 18px;
    right: 18px;
  }

  .wa-btn {
    width: 52px;
    height: 52px;
  }

  .wa-btn svg {
    width: 26px;
    height: 26px;
  }

  .wa-label {
    display: none;
  }

}
