/* ====================================
   RETREAT COACHING - UNIFIED STYLESHEET
   Alle Styles für ALLE Seiten
   ==================================== */

/* FONTS */
body, p, div, span, h1, h2, h3, h4, input, textarea, select, button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url(bilder/banner_original.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;     /* h1 über p, nicht nebeneinander */
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin: 10px;     /* angeglichen an Nav-margin (10px) */
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-radius 0.3s;
}
.hero:hover { border-radius: 20px; transform: translateY(-5px) translateX(3px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); color: #c8a97e; }
.hero p { font-size: 1.2rem; opacity: 0.9; }

/* CONTAINER */
.container { max-width: 900px; margin: 0 auto; padding: 1rem; }

/* INFO BOX */
.info-box {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #1a5f4a;
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-box:hover { transform: translateY(-5px) translateX(3px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }

/* FLYER DOWNLOAD BOX */
.flyer-download {
    background: #e8f5e9;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.flyer-download:hover { transform: translateY(-5px) translateX(3px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }

/* PROGRAM GRID */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

/* PROGRAM DAY CARD */
.program-day {
    background: #1a2f25;
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}
.program-day:hover { transform: translateY(-5px) translateX(3px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.program-day .day-label {
    background: #c8a97e;
    color: #1a2f25;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.8rem;
}
.program-day h3 { color: #c8a97e; margin: 0.5rem 0; font-size: 1.1rem; }
.program-day p { color: #ccc; font-size: 0.9rem; margin: 0; }

/* PRICING BOX */
.pricing {
    background: linear-gradient(135deg, #1a5f4a, #2e8b57);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    margin: 2rem 0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing:hover { transform: translateY(-5px) translateX(3px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.price { font-size: 2.5rem; font-weight: bold; margin-bottom: 0.5rem; }
.details { font-size: 1rem; opacity: 0.9; }

/* BUTTONS */
.btn, button, input[type="submit"] {
    background: #e07c24;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn:hover, button:hover, input[type="submit"]:hover {
    background: #c86a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* FORM ELEMENTS */
input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    background: white;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #1a5f4a;
    box-shadow: 0 0 0 2px rgba(26,95,74,0.2);
}
label { display: block; margin-bottom: 0.3rem; font-weight: 500; color: #333; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }

/* HEADINGS */
h1 { font-size: 2.5rem; color: #1a5f4a; margin-bottom: 1rem; }
h2 { color: #1a5f4a; margin: 2rem 0 1rem 0; font-size: 1.8rem; }
h3 { color: #1a5f4a; margin: 1rem 0; font-size: 1.3rem; }

/* CALENDAR WIDGET */
.calendar-widget {
    background: white;
    border: 2px solid #1a5f4a;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    margin: 2rem auto;
}
.calendar-month { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 1rem; }
.calendar-day {
    text-align: center;
    padding: 8px 4px;
    font-size: 12px;
    border-radius: 6px;
    background: #fff;
}
.calendar-day.selectable { cursor: pointer; background: #1a5f4a; color: white; }
.calendar-day.selectable:hover { background: #154538; }
.calendar-day.blocked { color: #ccc; text-decoration: line-through; background: #f5f5f5; cursor: not-allowed; }

/* ============================================================
   SITE-FOOTER — Christian-Wunsch 17.06.2026
   Volle Bildschirmbreite (kein max-width), aber Text zentriert.
   ============================================================ */
.site-footer {
    /*
     * WARUM: Christian-Wunsch (17.06.2026) — Runde 3
     * "Footer sieht richtig gut aus, bis auf die jetzt fehlenden Radien
     *  unten" — daher ALLE 4 Ecken radius (16px), nicht nur oben.
     * Footer schwebt jetzt als eigene Karte mit Schatten.
     */
    background: #1a2f25;
    color: #d4e4dc;
    padding: 40px 24px 32px;
    margin: 24px 16px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.10);
}
.site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 24px;
}
.site-footer .footer-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
}
.site-footer .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
.site-footer a { color: #8fd4b8; text-decoration: underline; }
.site-footer a:hover { color: white; }
.site-footer p { margin: 8px 0; }

/* ============================================================
   FORM-RADIEN — Konsistente Border-Radius für alle Formulare
   ============================================================ */
.form-section,
.section,
.info-box,
.program-day,
.program-grid,
.flyer-download {
    border-radius: 16px;
}
/*
 * WARUM: Christian-Wunsch 17.06.2026 (Runde 2)
 * - 5px mehr Abstand der Formularfelder zum Hintergrund
 * - Original: padding: 0.8rem (~13px), jetzt: 1.05rem (~17px) ≈ +5px
 * - Wirkt sich aus auf ALLE Inputs (text, email, tel, etc.) und textarea
 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
    border-radius: 10px;
    padding: 1.05rem 0.9rem;     /* +5px oben/unten, +5px links/rechts */
    border: 1px solid #ddd;
    font-size: 1rem;
    background: white;
}

/*
 * Form-Container: zusätzlich mehr Innenabstand (5px rundum)
 * Vorher: padding: 24px; jetzt: padding: 29px
 */
.form-section,
.section,
.flyer-download {
    padding: 29px;
    margin: 24px 0;
}

/* ============================================================
   ABOUT.PHP-SPEZIFISCHE KLASSEN (für Vision/Mission/Leitwerte etc.)
   Christian-Wunsch 17.06.2026 — Inhalt aus altem Material übernommen
   ============================================================ */

/* Vision/Mission/Haltung/Versprechen Sections */
.section {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    transition: transform 0.3s, box-shadow 0.3s, border-radius 0.3s, background 0.3s;
}
.section:hover {
    /* Christian-Wunsch (18.06. nachmittag): rahmenloser dezenter Hover */
    box-shadow: 0 4px 16px rgba(26, 95, 74, 0.15);
    transform: translateY(-1px);
    /* KEIN border — rahmenlos */
}
.section h2 {
    color: #1a5f4a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.section h3 {
    color: #1a5f4a;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}
.section p { margin-bottom: 1rem; }

/* Quote-Section (hervorgehobener Block) */
.quote {
    background: #1a5f4a;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    transition: transform 0.3s, box-shadow 0.3s;
}
.quote:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

/* Value-Grid (6 Leitwerte als Cards) */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.value-card {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid #1a5f4a;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    transform: translateY(-3px) translateX(2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.value-card h3 {
    color: #1a5f4a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Promise-Box (3 Versprechen) */
.promise-box {
    background: #e8f5e9;
    padding: 1.2rem;
    border-radius: 12px;
    margin: 0.8rem 0;
    border-left: 4px solid #2e8b57;
}
.promise-box h3 {
    color: #1a5f4a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}


/* ============================================================
   KALENDER WIDGET (aus Backup 16.06.2026 wieder integriert)
   ============================================================ */

body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;line-height:1.6;color:#333;margin:0;padding:0;background:white;}
h2,h3{color:#1a5f4a;}
.container{max-width:1100px;margin:0 auto;padding:1rem;}
.legend{display:flex;justify-content:center;gap:2rem;margin:1rem 0;flex-wrap:wrap;}
.legend-item{display:flex;align-items:center;gap:0.5rem;}
.legend-box{width:24px;height:24px;border-radius:4px;}
.legend-free{background:#e8f5e9;border:1px solid #1a5f4a;}
.legend-blocked{background:#f5f5f5;border:1px solid #ccc;text-decoration:line-through;color:#999;}
.legend-selected{background:#1a5f4a;}
.booking-cta{text-align:center;margin:2rem 0;padding:1.5rem;background:#f0f7f4;border-radius:12px;}
.booking-cta h3{color:#1a5f4a;margin-bottom:1rem;}
.cta-btn{display:inline-block;background:#1a5f4a;color:white;padding:0.8rem 2rem;border-radius:6px;text-decoration:none;font-size:1.1rem;}
.cta-btn:hover{background:#154538;}

.calendar-all-months {
    background: #f0f7f4;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}
.calendar-all-months h3 {
    color: #1a5f4a;
    margin-bottom: 1rem;
    text-align: center;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .calendar-grid { grid-template-columns: 1fr; }
}
.calendar-month-full {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.calendar-month-full h4 {
    text-align: center;
    color: #1a5f4a;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.calendar-days-full {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.calendar-day-full {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
}
.calendar-day-full.saturday {
    background: #e8f5e9;
    color: #1a5f4a;
    font-weight: 600;
    cursor: pointer;
}
.calendar-day-full.saturday:hover {
    background: #c8e6c9;
}
.calendar-day-full.saturday.selected {
    background: #1a5f4a;
    color: white;
}
.calendar-day-full.saturday.blocked {
    background: #f5f5f5;
    color: #999;
    text-decoration: line-through;
    cursor: not-allowed;
}
.calendar-day-full.empty {
    background: transparent;
}
