/* ====================================
   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;
}

/* NAVIGATION */
nav { background: #1a5f4a; padding: 12px; text-align: center; }
nav a { color: white; margin: 0 10px; text-decoration: none; display: inline-block; padding: 5px 15px; border-radius: 8px; }
nav a:hover { background: rgba(255,255,255,0.2); }

/* 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;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 20px;
    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); }
.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; }
