/* ========================================================
   myKajak.at — Static Site Stylesheet
   ======================================================== */

/* 1. Google Fonts sind im <head> eingebunden */

/* 2. Variablen ------------------------------------------ */
:root {
  --navy:   #0d3b6e;
  --orange: #ff7043;
  --blue:   #1a7fc1;
  --bg:     #f4f8fb;
  --text:   #555555;
  --white:  #ffffff;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --radius: 5px;
}

/* 3. Reset & Base --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: 'Open Sans', sans-serif; color: var(--text); line-height: 1.6; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* 4. Typography ----------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

/* 5. Utilities ------------------------------------------ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  text-align: center;
  margin-bottom: 16px;
}

.section-lead {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  max-width: 780px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: 2px solid var(--orange);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover {
  background: #e64a19;
  border-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 112, 67, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-accent {
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-accent:hover {
  background: #e64a19;
  border-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 112, 67, 0.35);
}

/* 6. Navigation ----------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: var(--navy);
  padding: 14px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-logo span {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--orange);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. Hero (Homepage) ------------------------------------ */
.hero {
  min-height: 80vh;
  background-color: var(--navy);
  /* Hero-Bild: images/hero-home.jpg */
  background-image: linear-gradient(rgba(8, 24, 50, 0.65), rgba(8, 24, 50, 0.65)),
                    url('../images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}

.hero-content { max-width: 900px; }

.hero h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 60px);
  margin-bottom: 44px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* 8. Tour-Strip ----------------------------------------- */
.tour-strip {
  background: var(--bg);
  padding: 80px 32px;
}

.tour-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-strip-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}
.tour-strip-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--navy);
}
.tour-strip-card .card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-strip-card h5 {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.tour-strip-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* 9. Unsere Touren -------------------------------------- */
.section-touren { background: var(--bg); padding: 80px 32px; }

.touren-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.tour-item .tour-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: var(--navy);
}
.tour-item .tour-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-item h3 {
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tour-item p { font-size: 15px; line-height: 1.8; flex-grow: 1; }

/* 10. Unsere Boote -------------------------------------- */
.section-boote { background: #fff; padding: 80px 32px; }

.boote-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.boot-acc-item {
  border: 1px solid #dce8f3;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.boot-acc-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.boot-acc-header:hover { background: #f4f8fb; }

.boot-acc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.acc-chevron {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.boot-acc-item.is-open .acc-chevron { transform: rotate(180deg); }

.boot-acc-body {
  display: none;
  gap: 32px;
  padding: 0 24px 28px;
}
.boot-acc-item.is-open .boot-acc-body { display: flex; }

.boot-acc-img {
  width: 280px;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: #f4f8fb;
  border-radius: 6px;
  flex-shrink: 0;
}

.boot-acc-content { flex: 1; }
.boot-acc-content p { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 14px; }

.boot-specs { padding: 0; list-style: none; }
.boot-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid #f0f5f8;
}
.boot-specs li::before { content: '▸'; color: var(--orange); font-size: 11px; flex-shrink: 0; }

/* 11. Unser Team ---------------------------------------- */
.section-guides { background: #e6f2fb; padding: 80px 32px; }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.guide-card { text-align: center; }
.guide-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--blue);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(13,59,110,0.18);
  border: 4px solid #fff;
}
.guide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.guide-avatar .initials {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
}
.guide-card h4 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.guide-card p  { font-size: 14px; color: var(--text); }

/* 12. Unsere Preise ------------------------------------- */
.section-preise { background: #fff; padding: 80px 32px; }

.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.preis-card {
  border: 1px solid #dce8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.preis-card:hover {
  box-shadow: 0 8px 32px rgba(13, 59, 110, 0.14);
  transform: translateY(-3px);
}
.preis-card.featured { border-color: var(--navy); }

.preis-header {
  background: var(--bg);
  padding: 34px 24px;
  text-align: center;
}
.preis-card.featured .preis-header { background: var(--navy); }

.preis-header h4 { font-size: 16px; color: var(--navy); margin-bottom: 14px; }
.preis-card.featured .preis-header h4 { color: #fff; }

.preis-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.preis-amount.anfrage { font-size: 22px; margin-top: 6px; line-height: 1.3; }
.preis-sub { font-size: 13px; color: #999; margin-top: 8px; }
.preis-card.featured .preis-sub { color: rgba(255,255,255,0.6); }

.preis-body { padding: 28px 24px; }
.preis-body ul { margin-bottom: 28px; }
.preis-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f5f8;
}
.preis-body li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.preis-body .btn { width: 100%; text-align: center; display: block; }

/* 13. Kontakt ------------------------------------------- */
.section-kontakt { background: var(--navy); padding: 80px 32px; }
.section-kontakt .section-title { color: #fff; }
.section-kontakt .section-lead  { color: rgba(255,255,255,0.72); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt-info { padding: 0; }
.kontakt-info li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.kontakt-info li:last-child { border-bottom: none; }
.k-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.k-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 5px; }
.k-value { color: #fff; font-size: 15px; line-height: 1.55; }
.k-value a { color: #fff; transition: color 0.2s; }
.k-value a:hover { color: var(--orange); }
.k-value small { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 3px; }

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn {
  width: 100%;
  border: none;
  font-size: 15px;
  padding: 14px;
}
.form-feedback { display: none; margin-top: 12px; font-size: 14px; font-weight: 600; }
.form-feedback.success { color: #5dde7a; }
.form-feedback.error   { color: #ff6b6b; }

/* 14. Ausbildungs-Banner --------------------------------- */
.section-ausbildung {
  background: var(--navy);
  padding: 64px 32px;
}
.ausbildung-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.ausbildung-icon {
  font-size: 56px;
  flex-shrink: 0;
}
.ausbildung-text { flex: 1; }
.ausbildung-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.ausbildung-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-pdf:hover { background: #e5603a; transform: translateY(-2px); }
.btn-pdf svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* 15. Footer -------------------------------------------- */
.site-footer {
  background: #071f3e;
  color: rgba(255,255,255,0.4);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ── SUB-PAGES ─────────────────────────────────────────── */

/* 15. Page-Hero (Donaukanal / Spezialtouren) ------------ */
.page-hero {
  min-height: 52vh;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 45, 0.55);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 54px);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* 16. Donaukanal-Seite ---------------------------------- */
.dk-section { padding: 80px 32px; }
.dk-intro {
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  max-width: 880px;
  margin: 0 auto 72px;
}

.dk-preise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.dk-preis-block h3 { font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.dk-preis-block .route { font-size: 14px; color: #999; margin-bottom: 18px; }
.dk-preis-block .amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 30px;
}

.dk-info { background: var(--bg); padding: 80px 32px; }
.dk-info-inner { max-width: 960px; margin: 0 auto; }
.dk-block {
  display: flex;
  gap: 52px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.dk-block:last-child { margin-bottom: 0; }
.dk-block:nth-child(even) { flex-direction: row-reverse; }
.dk-block-img {
  width: 44%;
  flex-shrink: 0;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dk-block-content { flex: 1; }
.dk-block h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}
.dk-block p { font-size: 16px; line-height: 1.85; color: var(--text); }

/* 17. Spezialtouren-Seite ------------------------------- */
.spezial-section { padding: 80px 32px; background: var(--bg); }

.spezial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.spezial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.spezial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}
.spezial-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.spezial-body { padding: 28px 24px 36px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.spezial-card h4 { font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.spezial-card .dauer { font-size: 13px; color: #aaa; font-weight: 600; margin-bottom: 16px; }
.spezial-card p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 18px; flex-grow: 1; }
.spezial-card .gewasser {
  background: var(--bg);
  border-radius: 4px;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 28px;
}
.spezial-card .gewasser strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 4px;
}

/* 19. Gutschein-Seite ----------------------------------- */
.gutschein-section { padding: 80px 32px; background: #fff; }
.gutschein-inner {
  max-width: 680px;
  margin: 0 auto;
}
.gutschein-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}
.gutschein-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gutschein-form .full { grid-column: 1 / -1; }
.gutschein-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #888;
  margin-bottom: 6px;
}
.gutschein-form input,
.gutschein-form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid #dce4ef;
  border-radius: 4px;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.gutschein-form input:focus,
.gutschein-form select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.gutschein-form input::placeholder { color: #bbb; }
.gutschein-form .btn {
  width: 100%;
  border: none;
  font-size: 15px;
  padding: 15px;
}
.gutschein-hint {
  margin-top: 16px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

/* 18. Impressum (Split-Screen) -------------------------- */
.impressum-wrap {
  display: flex;
  min-height: 100vh;
}
.impressum-photo {
  flex: 1;
  background-color: #2a4a3a;
  /* Foto: images/impressum-bg.jpg */
  background-image: url('../images/impressum-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.impressum-panel {
  flex: 1;
  background: var(--blue);
  padding: 120px 60px 60px;
  overflow-y: auto;
}
.impressum-panel h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 40px;
}
.imp-contacts { margin-bottom: 36px; }
.imp-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.imp-contacts li:last-child { border-bottom: none; }
.imp-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.imp-contacts a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.imp-contacts a:hover { opacity: 0.75; }
.imp-contacts .addr {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}
.imp-text { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.85; }
.imp-text h2 { color: #fff; font-size: 17px; margin: 26px 0 10px; font-family: 'Montserrat', sans-serif; }
.imp-text ol { padding-left: 20px; margin: 8px 0 16px; }
.imp-text ol li { color: rgba(255,255,255,0.9); padding: 3px 0; font-size: 15px; list-style-type: decimal; }
.imp-text a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* 19. Responsive ---------------------------------------- */
@media (max-width: 960px) {
  .tour-strip-grid,
  .preise-grid,
  .guides-grid,
  .spezial-grid { grid-template-columns: 1fr; }

  .touren-grid,
  .dk-preise,
  .kontakt-grid { grid-template-columns: 1fr; }

  .boot-acc-item.is-open .boot-acc-body { flex-direction: column; }
  .boot-acc-img { width: 100%; }

  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: 1; }

  .impressum-wrap { flex-direction: column; }
  .impressum-photo { min-height: 40vh; flex: none; }
  .impressum-panel { padding: 80px 32px 60px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .site-nav.scrolled { padding: 12px 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    background: var(--navy);
    gap: 28px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 17px; }

  .hero h1 { font-size: 28px; }
  .hero-nav { gap: 8px; }
  .btn-ghost { font-size: 11px; padding: 9px 14px; }

  .tour-strip,
  .section-touren,
  .section-boote,
  .section-guides,
  .section-preise,
  .section-kontakt,
  .dk-section,
  .dk-info,
  .spezial-section { padding: 60px 20px; }

  .dk-block { flex-direction: column !important; gap: 24px; }
  .dk-block-img { width: 100%; height: 220px; }

  .ausbildung-inner { flex-direction: column; gap: 24px; text-align: center; }
}
