/* ==========================================================================
   Ultra-Minimalist Design (Dunkelblau & Weiß)
   ========================================================================== */

/* 1. Grundlegende Einstellungen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;  /* Reines, meeresfrisches Weiß */
    color: #2d3748;            /* Sehr gut lesbares, tiefes Dunkelgrau */
    margin: 0;
    padding: 0;
    font-size: 19px;            /* Perfekt lesbar auch für Senioren */
    line-height: 1.8;
}

/* 2. Typografie: Sehr dunkles Nachtblau für volle Eleganz */
h1, h2, h3 {
    color: #0a192f;            /* Extrem dunkles Midnight Navy */
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* 3. Header & Navigation (Rein weiß & zurückhaltend) */
header {
    background-color: #ffffff;
    padding: 60px 20px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
}

header h1 {
    font-size: 2.2em;
    margin: 0 0 8px 0;
}

header p {
    color: #4a5568;
    font-size: 1.05em;
    margin: 0;
}

nav {
    background-color: #ffffff;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #edf2f7;
}

nav a {
    color: #0a192f;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
    font-weight: 500;
}

nav a:hover {
    border-bottom: 2px solid #0a192f;
}

/* 4. Haupt-Container & Abschnitte */
main {
    max-width: 720px;          /* Etwas schmaler für maximale Übersichtlichkeit */
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 70px;
}

h2 {
    font-size: 1.6em;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

/* 5. Minimalistischer Button */
.btn-submit {
    background-color: #0a192f; /* Nachtblau */
    color: #ffffff !important;
    border: none;
    padding: 16px 32px;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.88;             /* Kein knalliges Umfärben, nur feines Abdunkeln */
}

/* 6. Info-Box für Angehörige (Klar & reduziert) */
.relatives-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0a192f; /* Feiner dunkelblauer Akzent */
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
}

.relatives-box h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.relatives-list {
    padding-left: 20px;
    margin-top: 15px;
}

.relatives-list li {
    margin-bottom: 8px;
}

/* 7. Angebote: Schlanke, dezente Karten */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.offer-card {
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 4px;
    background-color: #ffffff;
}

.offer-card h3 {
    margin-top: 0;
    font-size: 1.15em;
}

.price {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-card {
    border-color: #0a192f;    /* Betont das wichtigste Angebot ganz ohne bunte Farben */
}

/* 8. Formular & Telefon-Link */
.contact-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 0.95em;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a192f;
}

.phone-link {
    color: #0a192f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #0a192f;
}

.phone-link:hover {
    opacity: 0.7;
}

/* Profilbild */
.minimal-img {
    display: block;
    max-width: 100%;
    width: 280px;
    height: auto;
    margin: 30px auto;
    border-radius: 4px;
}

/* 9. Fußzeile */
footer {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.85em;
    margin-top: 80px;
}

footer a {
    color: #0a192f;
    text-decoration: none;
}

/* Markiert die aktuelle Seite im Menü mit einer feinen dunklen Linie */
nav a.active {
    border-bottom: 2px solid #0a192f;
    font-weight: 600;
}