k/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: 'Inter', sans-serif;
  color: #1e2a32;
  background: #f8f7f4;
  line-height: 1.7;
}

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

/* =========================
   HEADER – HARTER FIX
========================= */
.header .header-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: left !important;
}
/* LOGO – kontrollierte Grösse */
.header .logo {
  height: 146px;        /* 👈 IDEAL für Desktop */
  width: auto;
  max-width: 100%;
  display: block;
}

/* LOGO LINKS HALTEN */
.header .logo {
  margin: 0 !important;
}

/* NAV RECHTS HALTEN */
.header .nav {
  margin-left: auto !important;
  display: flex !important;
  gap: 32px;
}

/* =========================
   HERO
========================= */
.hero {
  background: #1e2a32;
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 0;
}

.section-light {
  background: #ffffff;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* =========================
   TWO COLUMN
========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 6px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #1e2a32;
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.footer a {
  display: inline-block;
  margin: 10px 0;
  color: #b89b5e;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  font-size: 14px;
  margin-top: 10px;
}

/* =========================
   GLOBAL LINKS
========================= */
a {
  color: #1F3440;
  text-decoration: none;
}

a:hover {
  color: #B08A4A;
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .header-bar {
    padding: 20px 16px;
  }

  .logo {
    height: 70px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .header .header-inner {
    flex-direction: column !important;
    gap: 20px;
  }

  .header .nav {
    margin-left: 0 !important;
    flex-direction: column;
    gap: 12px;
  }
}
/* =========================
   MOBILE BODY FIX
========================= */
@media (max-width: 600px) {

  /* CONTAINER – mehr nutzbare Breite */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* SECTIONS */
  .section {
    padding: 48px 0;
  }

  /* HEADINGS */
  .section h2 {
    text-align: center;
    font-size: 26px;
  }

  /* TEXT */
  .section p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;        /* 👈 wichtig */
    max-width: 100%;
  }

  /* TWO COLUMN → EINE SPALTE */
  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* BILDER */
  .two-col img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
/* =========================
   MOBILE FOOTER – FORCE VISIBLE
========================= */
@media (max-width: 600px) {

  .footer {
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;

    padding: 40px 16px;
    text-align: center;
  }

  .footer * {
    overflow: visible !important;
  }

  .footer .container {
    max-width: 100%;
    padding: 0;
  }

  .footer h3,
  .footer p {
    display: block;
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
  }

  .footer p {
    margin-top: 10px;
    font-size: 14px;
  }
}
