/* =========================================================
   Grundsetup
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #1f2a30; /* dunkler Rahmen */
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: #1f2a30;
  color: #eee;
  min-height: 88px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   Logo
   ========================================================= */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  height: 64px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #eee;
}

/* =========================================================
   Navigation
   ========================================================= */
.main-nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: #fff;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: #1f2a30;
  color: #eee;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 60px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
}

/* =========================================================
   Heller Wrapper (Startseite & Unterseiten)
   ========================================================= */
.light-wrapper {
  background: #f7f7f7;
}

/* =========================================================
   Startseite – Sections
   ========================================================= */
.sections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 112px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.section-card h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.section-card p {
  color: #555;
  margin-bottom: 12px;
}

.section-card a {
  text-decoration: none;
  color: #1f2a30;
  font-size: 0.9rem;
}

/* =========================================================
   Unterseiten – Content
   ========================================================= */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 88px;
}

.page-head h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.page-head p {
  color: #666;
  margin-bottom: 64px;
}

/* =========================================================
   Bild-Platzhalter (Reisen)
   ========================================================= */
.image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #e2e2e2, #d6d6d6);
  border-radius: 6px;
}

.image-placeholder.medium {
  height: 240px;
}

.image-placeholder.large {
  height: 360px;
}

/* =========================================================
   Reisen – Liste
   ========================================================= */
.travel-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.travel-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.travel-item h2 {
  font-weight: 400;
  margin-bottom: 6px;
}

.travel-item p {
  color: #555;
}

/* =========================================================
   Familie / Mehrspaltige Textbereiche
   ========================================================= */
.text-block {
  max-width: 600px;
  margin-bottom: 80px;
  font-size: 1.1rem;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.text-columns h2 {
  font-weight: 400;
  margin-bottom: 8px;
}

.text-columns p {
  color: #555;
}

/* =========================================================
   Notizen
   ========================================================= */
.notes-list h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-weight: 400;
}

.notes-list ul {
  list-style: none;
  padding-left: 0;
}

.notes-list li {
  padding: 6px 0;
  color: #444;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #1f2a30;
  color: #aaa;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Footer-Signet */
.footer-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #5f8fa1 0%,
    #6fa3a1 45%,
    #d2b26f 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  filter: saturate(0.9);
  opacity: 0.9;
}
.footer-link {
  margin-left: auto;
  font-size: 0.85rem;
  color: #9fb3bf;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

/* =========================================================
   Notizen
   ========================================================= */

.note:not(:last-child) {
  margin-bottom: 84px;
}

.note h2 {
  margin-bottom: 10px;
}

.note p {
  margin-bottom: 12px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 700px) {

  .logo-image {
    height: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .main-nav {
    display: none;
  }

  .travel-item {
    grid-template-columns: 1fr;
  }
}
