/* =========================================================
   1. 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;
}


/* =========================================================
   2. 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;
}


/* =========================================================
   3. 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;
}


/* =========================================================
   4. Navigation
   ========================================================= */

.main-nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: #fff;
}


/* =========================================================
   5. 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;
}


/* =========================================================
   6. Heller Wrapper
   ========================================================= */

.light-wrapper {
  background: #f7f7f7;
}


/* =========================================================
   7. 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;
}


/* =========================================================
   8. Unterseiten – Content
   ========================================================= */

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 88px;
}

.page-head h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.page-head p {
  color: #666;
  margin-bottom: 48px;
}


/* =========================================================
   9. 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;
}


/* =========================================================
   10. Reisen
   ========================================================= */

.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;
}


/* =========================================================
   11. 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;
}

.note:not(:last-child) {
  margin-bottom: 84px;
}

.note h2 {
  margin-bottom: 10px;
}

.note p {
  margin-bottom: 12px;
}


/* =========================================================
   12. 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-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #5f8fa1 0%,
    #6fa3a1 45%,
    #d2b26f 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.footer-link {
  margin-left: auto;
  font-size: 0.85rem;
  color: #9fb3bf;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}


/* =========================================================
   13. Mapalex – Textlinks (Contentbereich)
   ========================================================= */

main a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

main a:visited {
  color: inherit;
}

main a:hover {
  opacity: 0.6;
}

main a:active {
  color: inherit;
}


/* =========================================================
   14. Responsive
   ========================================================= */

@media (max-width: 700px) {

  .logo-image {
    height: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .main-nav {
    display: none;
  }

  .travel-item {
    grid-template-columns: 1fr;
  }

}
