/* Google Font: Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    --bg: #f5f7fa;
    --bg-alt: #ffffff;
    --primary: #1f4f7b;
    --accent: #ffb347;
    --text: #222222;
    --muted: #666666;
    --border: #dde3ec;
    --quote-bg: #e9f1fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* HEADER */
header {
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
}

header h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin: 0 0 0.5rem;
    color: var(--primary);
}

header h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    margin: 0 0 1.5rem;
    color: var(--muted);
    font-weight: 400;
}

.tagline {
    max-width: 720px;
    margin: 0 auto;
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
}

.badge span {
    background: rgba(255,255,255,0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

/* SECTIONS */
section {
    margin-top: 2.4rem;
    background: var(--bg-alt);
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

section h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--primary);
}

section h4 {
    margin-top: 1.4rem;
    font-size: 1.05rem;
    color: var(--primary);
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 1.5rem;
}

.hero-highlight {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    color: var(--muted);
}

/* IMAGE PLACEHOLDER + RESPONSIVE IMAGES */
.image-placeholder {
    border-radius: 14px;
    border: 2px dashed var(--border);
    background: #f9fbff;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.image-placeholder strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--primary);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* PILL LIST */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f8fafc;
    font-size: 0.85rem;
    cursor: pointer;

}




/* QUOTE */
.quote {
    margin: 1rem 0;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: var(--quote-bg);
    border-left: 4px solid var(--primary);
}

.quote-footer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* CTA BOX */
.cta-box {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 1rem;
    background: #fff7ea;
}

.cta-button {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #163a5a;
}


/* -------------------------
   LINK
------------------------- */


footer a {
	color: #1f4f8a;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

footer a:hover {
	color: #4c68ae;
	text-decoration: underline;
}



/* -------------------------
 TABELLE 
 ------------------------- */

  /* Desktop: Tabelle ohne Linien, Text zentriert */
  table.responsive-table {
    width: 95%;
    border-collapse: collapse;
  }

  table.responsive-table td {
    padding: 10px 12px;
    text-align: center;
    border: none; /* keine Linien */
  }

  /* Mobile: untereinander, ebenfalls ohne Linien */
  @media (max-width: 768px) {
    table.responsive-table,
    table.responsive-table tbody,
    table.responsive-table tr,
    table.responsive-table td {
      display: block;
      width: 100%;
    }

    table.responsive-table tr {
      margin-bottom: 16px;
      padding: 10px 0;
    }

    table.responsive-table td {
      padding: 8px 0;
      border: none;
      text-align: center;
    }

    /* Keine Labels */
    table.responsive-table td::before {
      content: "";
      display: none;
    }
  }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page {
        padding: 1.1rem;
    }
    section {
        padding: 1.4rem 1.2rem;
    }
}
