/* ===============================
   basion interactive – modernes Redesign
   =============================== */

:root {
  --brand: #9E3F3F;
  --brand-dark: #822E2E;
  --text: #1a1a1a;
  --bg: #ffffff;
  --gray: #f7f7f7;
  --transition: 0.25s ease;
  font-family: "Interstate", "Helvetica", "Archivo";
  font-size: 17px; /* allgemein größer */
}


body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 35vh;       /* vorher 75vh – kompakter */
  min-height: 340px;  /* etwas kleiner, aber immer noch gut für Text */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8); /* heller als zuvor */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.25) 50%,
    rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1rem;
  animation: fadeIn 1.2s ease forwards;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: .6rem;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 8px rgba(0,0,0,.35);
}

.hero p {
  font-size: 1.15rem;
  opacity: .95;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .9rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 2; /* Wichtig: bleibt über Overlay oder anderen Effekten */
}

.btn-primary {
  background: var(--brand);
  color: #fff;                 /* Schriftfarbe fest auf Weiß */
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  border: none;                /* falls ein Browser-Defaultrahmen */
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;                 /* explizit fixiert, damit sie nicht verschwindet */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}

}

.hero-sub {
  margin-top: 1rem;
}

.hero-sub a {
  color: #fff;
  opacity: .85;
  text-decoration: underline;
}
.hero-sub a:hover {
  opacity: 1;
}

/* ===== CONTENT ===== */
.content {
  max-width: 1000px;
  margin: 1.8rem auto 3rem;   /* oben reduziert von 3rem auf 1.8rem */
  padding: 2.2rem 1.5rem;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}


h2 {
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: .8rem;
}

p {
  margin-bottom: 1.2rem;
}

/* ===== LINKS ===== */
a {
  color: var(--brand);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* ===== FOOTER (zweispaltig, ausgerichtet an Adresse) ===== */
.footer {
  background: #f2f2f2;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid #ddd;
  color: var(--text);
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  min-width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

/* 💡 Hier ist der Trick */
.footer-address {
  display: block;            /* explizit blockfähig */
  padding-left: 2.7rem;      /* sichtbarer Einzug */
}

.footer-address p {
  margin: 0;
  line-height: 0.5;
}


/* Rechte Spalte */
.footer-right {
  flex: 0 0 200px;
  text-align: left;
  margin-top: 50px;         /* auf gleiche Höhe wie Adresse gebracht */
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;            /* sehr eng; bei Bedarf 0.2–0.3rem */
}

.footer-nav a {
  color: var(--brand);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--brand-dark); text-decoration: underline; }



/* Copyright */
.footer-copy {
  max-width: 1000px;
  margin: 2rem auto 0;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
    margin-top: 0;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }

  .footer-address {
    margin-left: 0;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #f2f2f2;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid #ddd;
  color: var(--text);
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;                /* mehr Abstand zwischen den Spalten */
  flex-wrap: wrap;
}

/* Linke Spalte: Logo über Adresse */
.footer-left {
  flex: 1;
  min-width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;   /* sorgt für vertikale Anordnung */
  align-items: flex-start;
}

.footer-logo {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
  margin-bottom: 1rem;      /* Abstand zum Beginn der Adresse */
  object-fit: contain;
}

.footer-address {
  margin-left: 1.2rem;      /* leicht eingerückt unter dem Logo */
}

.footer-address p {
  margin: 0;
  line-height: 1.5;
}

.footer-address a {
  color: var(--brand);
  text-decoration: none;
  transition: var(--transition);
}
.footer-address a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Rechte Spalte: Links bündig mit Adresse */
.footer-right {
  flex: 0 0 200px;
  text-align: left;
  margin-top: 48px;         /* gleiche vertikale Startlinie wie Adresse */
}

.footer-nav a {
  display: block;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}
.footer-nav a:last-child {
  margin-bottom: 0;
}
.footer-nav a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Copyright */
.footer-copy {
  max-width: 1000px;
  margin: 2rem auto 0;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
    margin-top: 0;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }

  .footer-address {
    margin-left: 0;
  }
}



/* ===== Registered Trademark Styling (dezenter) ===== */
sup {
  font-family: "Interstate", sans-serif;
  font-size: 0.35em;          /* vorher 0.55em → kleiner */
  vertical-align: super;
  margin-left: 0.12em;
  position: relative;
  top: -0.15em;               /* leicht höher positioniert */
  letter-spacing: 0;
  opacity: 0.8;               /* etwas zurückgenommen */
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
