/* =====================================================
   faq.css – Reederei Böttcher
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── Header fix ─── */
.header, .header.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 24px rgba(11,47,107,.07) !important;
}

.faq-page {
  background: #f0f4fb;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0d1f3c;
}

/* ─── Hero ─── */
.faq-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #071e3d 0%, #0b2f6b 60%, #1a4f8a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,200,232,.15) 0%, transparent 60%);
}
.faq-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a8c8e8, transparent);
}
.faq-hero__inner {
  position: relative;
  max-width: 760px;
  animation: faq-fadeUp 0.7s ease both;
}
.faq-hero__breadcrumb {
  font-size: 0.7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a8c8e8;
  margin-bottom: 1.2rem;
}
.faq-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.faq-hero__breadcrumb a:hover { color: #a8c8e8; }
.faq-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.faq-hero__title em { font-style: italic; color: #c5ddf5; }
.faq-hero__divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #a8c8e8, #4a7fad);
  border-radius: 2px;
  margin: 1.4rem 0;
}
.faq-hero__sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
  font-weight: 300;
}
.faq-hero__sub a {
  color: #a8c8e8;
  text-decoration: underline;
}

/* ─── Section ─── */
.faq-section {
  padding: 5rem 0 6rem;
}
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* ─── FAQ Item ─── */
.faq-item {
  background: #ffffff;
  border: 1px solid #d0dcef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,47,107,.05);
  transition: box-shadow .3s, border-color .3s;
}
.faq-item--open {
  border-color: #a8c8e8;
  box-shadow: 0 8px 32px rgba(11,47,107,.1);
}

/* ─── Question Button ─── */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0d1f3c;
  line-height: 1.5;
  transition: color .2s;
}
.faq-item__question:hover { color: #0b2f6b; }
.faq-item--open .faq-item__question { color: #0b2f6b; }

/* ─── Chevron Icon ─── */
.faq-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f0f4fb;
  border: 1px solid #d0dcef;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .25s, border-color .25s, transform .35s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: #4a7fad;
  border-radius: 2px;
  transition: transform .35s, opacity .35s;
}
/* Plus-Icon: horizontal */
.faq-item__icon::before {
  width: 12px; height: 2px;
}
/* Plus-Icon: vertikal */
.faq-item__icon::after {
  width: 2px; height: 12px;
}
/* Geöffnet: Minus */
.faq-item--open .faq-item__icon {
  background: #0b2f6b;
  border-color: #0b2f6b;
  transform: rotate(45deg);
}
.faq-item--open .faq-item__icon::before,
.faq-item--open .faq-item__icon::after {
  background: #fff;
}

/* ─── Answer ─── */
.faq-item__answer {
  padding: 0 22px 20px;
  border-top: 1px solid #e8eef8;
  animation: faq-slideDown .25s ease both;
}
.faq-item__answer p {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.85;
  margin: 14px 0 0;
  font-weight: 300;
}

/* ─── CTA ─── */
.faq-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #d0dcef;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(11,47,107,.06);
}
.faq-cta p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #0d1f3c;
  margin-bottom: 1.2rem;
}
.faq-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s;
  margin: 0 6px;
  background: #0b2f6b;
  color: #fff;
  border: 2px solid #0b2f6b;
}
.faq-btn:hover {
  background: #1a4f8a;
  border-color: #1a4f8a;
  transform: translateY(-2px);
}
.faq-btn--outline {
  background: transparent;
  color: #0b2f6b;
}
.faq-btn--outline:hover {
  background: #0b2f6b;
  color: #fff;
}

/* ─── Animationen ─── */
@keyframes faq-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes faq-slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .faq-hero { padding: 5rem 1.5rem 3rem; }
  .faq-section { padding: 3rem 0 4rem; }
  .faq-item__question { font-size: 0.88rem; padding: 16px 18px; }
  .faq-item__answer { padding: 0 18px 16px; }
  .faq-cta { padding: 1.8rem; }
  .faq-btn { display: block; margin: 8px 0; text-align: center; }
}
/* Hero zentriert */
.faq-hero {
  align-items: center;
  text-align: center;
}
.faq-hero__inner {
  margin: 0 auto;
}
.faq-hero__divider {
  margin: 1.4rem auto;
}