@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&display=swap');

:root {
  --text: #111;
  --muted: #444;
  --bg-color: #f7f7f7;
  --bg-opacity: 0.80;
  --accent: #ff4081;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  opacity: var(--bg-opacity);
  z-index: -1;
}

/* --- STARTSEITE --- */
.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertikal zentriert */
  align-items: center;       /* horizontal zentriert */
  padding: 60px 20px;
  text-align: center;
}

.logo-large {
  width: 400px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.tagline {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  position: relative;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.tagline::before {
  content: "„";
  font-size: 2rem;
  position: absolute;
  left: -20px;
  top: -10px;
  color: var(--accent);
}

.tagline::after {
  content: "“";
  font-size: 2rem;
  position: absolute;
  right: -20px;
  bottom: -10px;
  color: var(--accent);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin: 0 0 30px 0;
  background: #03aee5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background: #c1def0;
  transform: translateY(-2px);
}

/* Buttons nebeneinander */
.button-group {
  display: flex;
  justify-content: center;
  gap: 12px; /* Abstand zwischen den Buttons */
  margin: 15px 0;
}

.btn-facebook {
  background: #03aee5; /* Facebook-Blau */
}

.btn-facebook:hover {
  background: #c1def0;
  transform: translateY(-2px);
}


/* INFO BOXEN - STARTSEITE */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
  justify-items: center; /* Boxen selbst zentrieren */
  width: 100%;
  max-width: 800px;
}

.info-box {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  text-align: left; /* Inhalt linksbündig */
  width: 100%;
  max-width: 350px; /* Boxen max. Breite */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-box h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.info-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- FOOTER --- */
footer {
  padding: 30px 20px;
  border-top: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-nav {
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 4px;
}

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

.copy {
  font-size: 0.95rem;
  color: var(--muted);
}

.heart {
  color: var(--accent);
  font-size: 1.5em;
  display: inline-block;
}

/* --- IMPRESSUM / DATENSCHUTZ --- */
.content-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left; /* alles linksbündig */
}

.content-page h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

.content-page h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--text);
}

.content-page h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

.content-page p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--muted);
}

.content-page a {
  color: var(--accent);
  text-decoration: none;
}

.content-page a:hover {
  text-decoration: underline;
}

.content-page .impressum > p,
.content-page .impressum > div {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.content-page .impressum h2 {
  text-align: left;
}

/* --- RESPONSIVE --- */
@media (max-width: 700px) {
  h1 {
    font-size: 2.4rem;
  }

  .logo-large {
    width: 140px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .sub {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
}
