:root {
  --sea-dark: #0c2430;
  --gold: #c9974f;
  --cream: #fbf8f3;
  --heading: #1c2b30;
  --body-text: #55625f;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body-text);
  line-height: 1.65;
  font-size: 1rem;
  background: var(--cream);
}

h1, h2, h3, .wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--heading);
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.text-center { text-align: center; }

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sea-dark);
  padding: 14px 0;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #dce8ea;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sea-dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links--open {
    max-height: 400px;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* Footer */
.site-footer {
  position: relative;
  background-image: url('assets/reference/wood_6.jpg');
  background-size: cover;
  background-position: center;
  padding: 32px 0;
  text-align: center;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,6,3,0.6);
}

.footer-inner {
  position: relative;
  color: #e8d9c0;
  font-size: 0.85rem;
}

.footer-inner a {
  color: #f2c879;
  text-decoration: underline;
}

.footer-links {
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/reference/schifffahrt-grieblinger.webp');
  background-size: cover;
  background-position: center 36%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,36,48,0.35), rgba(12,36,48,0.78));
}

.hero-inner {
  position: relative;
  text-align: center;
  color: var(--white);
}

.hero-divider {
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* Intentional one-off light tint for the hero subline, not a reusable token */
.hero-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  margin-top: 12px;
  color: #e6f0f2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-cta {
  display: inline-block;
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.15);
}

/* Über uns */
.section p { margin-bottom: 16px; }

.ueber-uns-photo {
  margin: 32px auto;
}

.ueber-uns-photo img {
  margin: 0 auto 8px;
  border-radius: 4px;
}

.photo-caption {
  font-size: 0.85rem;
  color: var(--body-text);
  font-style: italic;
}

/* Fakten-Band */
.fakten {
  position: relative;
  background-image: url('assets/reference/wood_6.jpg');
  background-size: cover;
  background-position: center;
  padding: 48px 0;
}

.fakten-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,6,0.6);
}

.fakten-inner {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}

/* #f7e6c4 is an intentional warm cream/gold tint for text over the wood photo, distinct from the --cream/--gold tokens */
.fakten-zahl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #f7e6c4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.fakten-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f7e6c4;
  opacity: 0.9;
  margin-top: 4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Boote */
.boote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.boot-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.boot-card-accent {
  height: 6px;
  background-image: url('assets/reference/wood_6.jpg');
  background-size: cover;
}

.boot-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.boot-card-body {
  padding: 16px;
}

.boot-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.boot-card-body p {
  font-size: 0.9rem;
}

.boot-card-body ul {
  font-size: 0.85rem;
  padding-left: 18px;
  list-style: disc;
}

.boot-card-body ul li {
  margin-bottom: 2px;
}

/* Preise */
#preise {
  background: var(--white);
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  text-align: left;
  align-items: start;
}

.preis-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 20px;
}

.preis-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.preis-card p {
  font-size: 0.9rem;
}

.preis-wert {
  margin-top: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--heading);
}

.preise-stand {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--body-text);
}

/* Boots-Service */
#boots-service {
  background: var(--cream);
  border-top: 1px solid rgba(201,151,79,0.3);
  border-bottom: 1px solid rgba(201,151,79,0.3);
}

/* Anfahrt */
.map-embed {
  margin-top: 24px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.map-embed iframe {
  border: 0;
}

/* Kontakt */
.kontakt-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.kontakt-social a {
  color: var(--heading);
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.9rem;
}

.kontakt-social a:hover {
  background: var(--gold);
  color: var(--white);
}

/* Weitere Links */
#links {
  padding: 40px 0;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 12px;
}

.links-list a {
  font-size: 0.85rem;
  color: var(--body-text);
}

.links-list a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

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

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

  .fakten-inner {
    gap: 28px;
  }

  .section {
    padding: 40px 0;
  }

  .map-embed iframe {
    height: 220px;
  }
}

/* Legal Pages */
.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  margin-bottom: 14px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-page ul li {
  margin-bottom: 8px;
}
