/* =========================
SECTION 1 – HERO (City Editorial)
Datei: style.css
========================= */

:root{
  --brand: #f89944;              /* Button */
  --ink: #0b1220;
  --muted: rgba(255,255,255,.78);
  --white: #ffffff;

  /* Header Gradient (wie von dir) */
  --hero-g1: rgba(40, 62, 85, 1);
  --hero-g2: rgba(40, 83, 117, 1);
  --hero-g3: rgba(33, 115, 180, 1);
}

/* HERO WRAPPER */
.hero-berlin{
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 44px 0 56px;
  background:
	 linear-gradient(42deg, var(--hero-g1) 27%, var(--hero-g2) 78%, var(--hero-g3) 100%);
}

/* Topbar */
.hero-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 0 22px;
}

.hero-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}

.hero-brand i{
  font-size: 20px;
  opacity:.95;
}

.hero-brand-text{
  font-size: 16px;
  opacity:.95;
}

.hero-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.hero-link{
  color: rgba(255,255,255,.86);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.hero-link:hover{
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Hero grid spacing */
.hero-grid{
  padding-top: 10px;
}

/* Kicker pills */
.hero-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 14px;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.hero-pill i{
  opacity:.95;
}

/* Title + text */
.hero-title{
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.6px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
}

.hero-subtitle{
  margin: 0 0 20px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Buttons */
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.hero-btn:active{
  transform: translateY(1px);
}

.hero-btn-primary{
  background: var(--brand);
  color: #132235;
  border-color: rgba(0,0,0,.06);
}

.hero-btn-primary:hover{
  filter: brightness(1.03);
}

.hero-btn-ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

.hero-btn-ghost:hover{
  background: rgba(255,255,255,.14);
}

/* Note */
.hero-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  max-width: 62ch;
  backdrop-filter: blur(10px);
  font-size: 14px;
  line-height: 1.45;
}

.hero-note i{
  margin-top: 1px;
  opacity: .95;
}

/* Right panel */
.hero-panel{
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  overflow:hidden;
}

.hero-panel-header{
  padding: 16px 16px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-panel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
  font-size: 13px;
}

.hero-panel-meta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

/* Mini cards */
.hero-panel-cards{
  padding: 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hero-mini-card{
  display:flex;
  gap:12px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(11,18,32,.20);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-mini-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(248,153,68,.16);
  border: 1px solid rgba(248,153,68,.22);
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
}

.hero-mini-title{
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 2px;
}

.hero-mini-text{
  font-size: 13px;
  color: rgba(255,255,255,.74);
  line-height: 1.35;
}

/* Panel actions */
.hero-panel-actions{
  padding: 0 16px 16px;
}

.hero-panel-actions .hero-btn{
  justify-content:center;
}

.hero-panel-footnote{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

/* Decorative */
.hero-glow{
  position:absolute;
  filter: blur(60px);
  opacity:.55;
  pointer-events:none;
}

.hero-glow-1{
  width: 520px;
  height: 520px;
  left: -120px;
  top: -160px;
  background: rgba(248,153,68,.28);
}

.hero-glow-2{
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
  background: rgba(255,255,255,.18);
}

.hero-dots{
  position:absolute;
  inset: 0;
  pointer-events:none;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.25));
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero-nav{ justify-content:flex-start; }
  .hero-topbar{ align-items:flex-start; flex-direction:column; }
}

/* =========================
SECTION 2 – INTRO EDITORIAL
========================= */

.intro-editorial{
  position: relative;
  padding: 96px 0 110px;
  background: #ffffff;
  color: #0b1220;
}

.intro-eyebrow{
  display:inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b7280;
}

.intro-title{
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.6vw, 42px);
}

.intro-lead{
  font-size: 17px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 18px;
}

.intro-text{
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 36px;
}

/* Info strip */
.intro-infostrip{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.intro-info{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #f6f7fb;
  border: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.intro-info i{
  color: var(--brand);
  font-size: 16px;
}

/* leichte optische Trennung nach unten */
.intro-editorial::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width: 120px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
	 to right,
	 transparent,
	 var(--brand),
	 transparent
  );
  opacity:.6;
}

/* Mobile */
@media (max-width: 767.98px){
  .intro-editorial{
	 padding: 72px 0 84px;
  }
}

/* =========================
SECTION 3 – CATEGORIES EDITORIAL
========================= */

.categories-editorial{
  padding: 110px 0 120px;
  background: #f9fafb;
}

.section-eyebrow{
  display:inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b7280;
}

.section-title{
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-lead{
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 60ch;
}

/* Grid */
.category-feature-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

/* Cards */
.category-feature{
  grid-column: span 6;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  display:flex;
  flex-direction: column;
}

.category-feature.large{
  grid-column: span 12;
}

.category-feature.small{
  grid-column: span 6;
}

/* Media */
.category-media img{
  width:100%;
  height: 260px;
  object-fit: cover;
}

/* Content */
.category-content{
  padding: 24px 26px 26px;
}

.category-content h3{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-content p{
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
}

/* Meta */
.category-meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.category-meta .price{
  font-weight: 700;
  color: #111827;
}

/* Buttons */
.btn-outline-primary{
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline-primary:hover{
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
}

/* Mobile */
@media (max-width: 991.98px){
  .category-feature-grid{
	 grid-template-columns: 1fr;
  }

  .category-feature,
  .category-feature.large,
  .category-feature.small{
	 grid-column: span 12;
  }

  .category-media img{
	 height: 220px;
  }
}
/* =========================
CATEGORY FEATURE – BOOTSTYP LISTE
========================= */

.category-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}

/* einzelnes Listenelement */
.category-feature-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.06);
  border-radius: 14px;
  transition: background 0.2s ease;
}

/* Hover nur leicht */
.category-feature-list-item:hover {
  background: rgba(0,0,0,0.09);
}

/* Icon links */
.category-feature-list-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(248,153,68,0.18); /* Miet-Boot Orange Soft */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-feature-list-icon i {
  font-size: 18px;
  color: #f89944;
}

/* Textbereich */
.category-feature-list-content {
  display: flex;
  flex-direction: column;
}

.category-feature-list-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #283e55;
  margin-top: 0.1rem !important;
	 margin-bottom: 0 !important;
}
.category-feature-list-title p {
  margin-top: 0.1rem !important;
  margin-bottom: 0 !important;
}
.category-feature-list-text {
  font-size: 0.85rem;
  color: #6c7a89;
  line-height: 1.4;
  margin-top: 0.1rem !important;
	margin-bottom: 0 !important;
}
.category-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.category-feature-list-item:hover {
  background: rgba(0,0,0,0.03);
}
/* Dark / Gradient Sections kompatibel */
.dark .category-feature-list-item,
.section-dark .category-feature-list-item {
  background: rgba(255,255,255,0.08);
}

.dark .category-feature-list-title,
.section-dark .category-feature-list-title {
  color: #ffffff;
}

.dark .category-feature-list-text,
.section-dark .category-feature-list-text {
  color: rgba(255,255,255,0.7);
}
/* =========================
SECTION 4 – BERLIN & EVENTS
========================= */

.berlin-editorial{
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  color: #0b1220;
}

.berlin-title{
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.berlin-lead{
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 18px;
  max-width: 62ch;
}

.berlin-text{
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 16px;
  max-width: 65ch;
}

/* Facts Box */
.berlin-facts{
  background: #f9fafb;
  border-radius: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.berlin-fact{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.berlin-fact i{
  font-size: 20px;
  color: var(--brand);
  margin-top: 2px;
}

.berlin-fact strong{
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.berlin-fact span{
  font-size: 14px;
  color: #6b7280;
}

/* Subtle divider */
.berlin-editorial::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(
	 to right,
	 transparent,
	 var(--brand),
	 transparent
  );
  opacity:.5;
}

/* Mobile */
@media (max-width: 991.98px){
  .berlin-editorial{
	 padding: 90px 0;
  }

  .berlin-facts{
	 margin-top: 40px;
  }
}

/* =========================
SECTION 5 – PREMIUM PARTNER
========================= */

.premium-partner{
  padding: 140px 0 160px;
  background: linear-gradient(
	 42deg,
	 rgba(40, 62, 85, 1) 27%,
	 rgba(40, 83, 117, 1) 78%,
	 rgba(33, 115, 180, 1) 100%
  );
  color: #ffffff;
}

.premium-title{
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.premium-lead{
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 70ch;
  margin: 0 auto;
}

/* Cards */
.premium-card{
  height: 100%;

  border-radius: 22px;
  padding: 34px 28px;
  border-radius: 36px;
	 background: rgba(255,255,255,.05);
	 backdrop-filter: blur(10px);
	 border: 1px solid rgba(255,255,255,.12);
}




.premium-card i{
  font-size: 28px;
 color: #ffffff;
  display: inline-block;
  margin-bottom: 14px;
}

.premium-card h3{
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
 color: #ffffff;
}

.premium-card p{
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.premium-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* Network box */
.premium-network{
  border-radius: 22px;

  border-radius: 36px;
	 padding: 34px 28px;
	 background: rgba(255,255,255,.05);
	 backdrop-filter: blur(10px);
	 border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 991.98px){
  .premium-partner{
	 padding: 90px 0;
  }
}
/* =========================
FAQ BERLIN – CARDS
========================= */

.faq-berlin {
  padding: 80px 0;
  background: #f7f9fc;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f89944;
  margin-bottom: 12px;
}

.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #283e55;
  margin-bottom: 12px;
}

.faq-lead {
  font-size: 1.05rem;
  color: #5f6f82;
}

.faq-card {
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(40,62,85,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.faq-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #283e55;
  margin-bottom: 12px;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f6f82;
  margin: 0;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(40,62,85,0.12);
}

/* Highlight Card */
.faq-card-highlight {
  background: linear-gradient(
	 135deg,
	 rgba(248,153,68,0.12),
	 rgba(248,153,68,0.05)
  );
  border: 1px solid rgba(248,153,68,0.35);
}
/* =========================
SECTION 7 – FINAL CTA
========================= */

.final-cta{
  padding: 140px 0 160px;
  background: linear-gradient(
	 42deg,
	 rgba(40, 62, 85, 1) 27%,
	 rgba(40, 83, 117, 1) 78%,
	 rgba(33, 115, 180, 1) 100%
  );
  color: #ffffff;
}

.final-cta-box{
  position: relative;
  border-radius: 36px;
  padding: 34px 28px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
}

/* Content */
.final-cta-title{
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.final-cta-text{
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
  margin-bottom: 34px;
}

/* Buttons */
.final-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary{
  background: #f89944;
  border: none;
  color: #1c2938;
  font-weight: 700;
}

.btn-primary:hover{
  background: #ffad5c;
  color: #1c2938;
}

.final-cta .btn-outline-light{
  border-color: rgba(255,255,255,.45);
}

/* Info Row */
.final-cta-info{
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.final-info-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.9);
}

.final-info-item i{
  font-size: 18px;
  color: #f89944;
}

/* Mobile */
@media (max-width: 991.98px){
  .final-cta{
	 padding: 100px 0 120px;
  }

  .final-cta-box{
	 padding: 46px 28px;
  }

  .final-cta-info{
	 margin-top: 34px;
  }
}

/* =========================
FOOTER
========================= */

.site-footer{
  background: #0b1220;
  color: #d1d5db;
  padding: 70px 0 40px;
}

.footer-brand{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-text{
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 36ch;
}

.footer-title{
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover{
  color: #f89944;
  text-decoration: underline;
}

/* Bottom */
.footer-bottom{
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #9ca3af;
}

.footer-network{
  color: #6b7280;
}

/* Mobile */
@media (max-width: 991.98px){
  .site-footer{
	 padding: 50px 0 30px;
  }
}
/* =========================
SECTION – MOTORBOOTE LISTE
========================= */
.categories-motorboot{
  padding: 110px 0 120px;
  background: #f9fafb;
}


.motorboot-card-link{
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Card */
.motorboot-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}

/* Bild */
.motorboot-card-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Body */
.motorboot-card-body{
  padding: 22px 24px 18px;
  flex-grow: 1;
}

/* Titel */
.motorboot-card-title{
  font-size: 20px;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 8px;
}

/* Text */
.motorboot-card-text{
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

/* Meta Liste */
.motorboot-card-meta{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.motorboot-card-meta li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
}

.motorboot-card-meta i{
  color: var(--brand);
  font-size: 15px;
}

/* Footer */
.motorboot-card-footer{
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Button (nutzt dein bestehendes Primary Styling) */
.motorboot-card-footer .btn{
  font-weight: 700;
  border-radius: 14px;
}

/* Leichter Hover – NUR Hintergrund & Schatten */
.motorboot-card-link:hover .motorboot-card{
  box-shadow: 0 26px 60px rgba(0,0,0,.08);
}

/* Fokus (Accessibility) */
.motorboot-card-link:focus-visible{
  outline: none;
}

.motorboot-card-link:focus-visible .motorboot-card{
  box-shadow: 0 0 0 3px rgba(248,153,68,.35);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991.98px){
  .motorboot-card-image img{
    height: 200px;
  }
}

@media (max-width: 575.98px){
  .motorboot-card-body{
    padding: 20px 20px 16px;
  }

  .motorboot-card-title{
    font-size: 18px;
  }
}



