﻿/* ============================= */
/* GRUNDSTILE */
/* ============================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    background: #fff;
    padding-top: 130px; /* Höhe deines Headers */
}

h1, h2, h3 {
    font-family: Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

p {
    margin: 0 0 15px 0;
    line-height: 1.7;
}

.container {
    width: 88%;
    max-width: 980px;
    margin: auto;
}

/* ============================= */
/* HEADER */
/* ============================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: url('../images/regenbogen2.jpg') center/cover no-repeat; /* Hintergrundbild */
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
}

    .header::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: rgba(0,0,0,0.3);*/ /* leichtes Overlay */
        z-index: 1;
    }

.header-inner {
    display: flex;
    justify-content: space-between; /* Logo links, Menü rechts */
    align-items: center;
    padding: 14px 0;
    position: relative;
    z-index: 2; /* über Overlay */
}

/* Logo */
.logo img {
    height: 85px;
    width: auto;
    display: block;
}

/* Navigation Desktop */
.nav {
    display: flex;
    gap: 22px;
    font-size: 17px;
}

    .nav a {
        text-decoration: none;
        color: #fff; /* Links auf Header-Bild */
        transition: color 0.3s;
    }

        .nav a:hover {
            color: #bfa67a;
        }

/* Hamburger nur auf Mobil */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px;
}
 

/* Hero Text Position Desktop */
.hero-content {
    position: relative;
    max-width: 900px;
    top: 0px; /* Text rutscht nach oben */
    margin: 0 auto;
    text-align: center;
}

.hero p a {
    color: #D03A28;
    text-decoration: none;
    position: relative;
}

    .hero p a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #D03A28;
        transition: width 0.3s;
    }

    .hero p a:hover::after {
        width: 100%;
    }

.hero-content::after {
    content: "";
    display: block;
    width: 320px; /* Länge der Linie */
    height: 2px;
    background: #D03A28; /* deine Farbe */
    margin: 25px auto 20px; /* Abstand oben 25px, unten 20px, zentriert */
}

    .hero-content img {
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

        .hero-content img:hover {
            transform: scale(1.5);
        }

/* Hero Überschrift */


.hero h2 {
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 12px;
    color: #D03A28; /* orange/rot */
    line-height: 1.4;
}

/* Hero Paragraph */
.hero p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: black; /* Textfarbe auf hellem Overlay */
    margin-top: 15px;
}

@media (max-width: 768px) {
    .hero-content::after {
        width: 180px; /* kürzere Linie für Mobile */
        margin: 25px auto 20px; /* oben 25px, unten 20px, zentriert */
    }
}

/* Hero Button */
.btn {
    margin-top: 28px;
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid #bfa67a;
    color: #bfa67a;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

    .btn:hover {
        background: #bfa67a;
        color: white;
    }

/* ============================= */
/* SECTIONS */
/* ============================= */
.section {
    padding: 0px 0;
    text-align: center;
}

    .section.alt {
        background: #f8f6f3;
    }

/* Angebote */

.grid {
    display: flex;
    justify-content: center;
    gap: 40px;
  /*  margin-top: 0px;*/
    flex-wrap: wrap;
}

    .grid h3 {
        font-family: Arial, sans-serif;
        font-weight: 500;
        font-size: 28px;
        margin-bottom: 12px;
        color: #D03A28; /* orange/rot */
        line-height: 1.4;
    }

.card {
    max-width: 260px;
    text-align: center;
}

    .card h3 {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }
        .card p a {
            color: #D03A28;
            text-decoration: none;
            position: relative;
        }

            .card p a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 0;
                height: 2px;
                background: #D03A28;
                transition: width 0.3s;
            }

            .card p a:hover::after {
                width: 100%;
            }
    .card img {
        display: block;
        margin: 0 auto 15px auto; /* zentriert + Abstand */
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }
   /* .card img {
        position: absolute;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
        width: 200px;
        height: 200px;
            }*/

/* Hover nur Desktop sinnvoll */
@media (hover: hover) {
    .card img:hover {
        transform: scale(1.5);
    }
}


/* 📱 Mobile Optimierung */
@media (max-width: 768px) {
    .grid {
        gap: 25px; /* deutlich kleiner */
    }

    .card {
        max-width: 100%;
    }

        .card img {
            width: 200px;
            height: 200px;
        }
}
/* Über mich */
.text {
    max-width: 620px;
    margin: auto;
    line-height: 1.9;
    font-size: 15px;
    text-align: center;
}

/* Kontakt */
form {
    max-width: 360px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    border-radius: 5px;
    resize: vertical;
}

button {
    background: #bfa67a;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    button:hover {
        background: #a68c5b;
    }


/* ============================= */
/* MEDIA QUERIES */
/* ============================= */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 17px;
    }

    .grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px; /* kleinere Höhe auf Mobile */
    }

    body {
        padding-top: 0px; /* automatisch angepasst */
    }

    /* Header */
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        gap: 0;
    }

    .logo img {
        height: 45px;
    }

    .hamburger {
        display: block;
    }

    /* Mobile Menü */
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: #808080; /* NEUE Farbe */
        padding: 10px 0;
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        z-index: 999;
    }

        .nav a {
            padding: 10px 20px;
            display: block;
            font-size: 16px;
            color: #fff;
        }

            .nav a:hover {
                color: #bfa67a;
                
            }

        .nav.show {
            display: flex;
        }

    /* Hero */
    .hero-content {
        top: 0px; /* Text leicht nach oben */
        padding: 0 20px; /* links/rechts Abstand */
        text-align: left; /* optional linksbündig */
       
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Angebote */
    .grid {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    /* Über mich */
    .text {
        padding: 0 15px;
        font-size: 15px;
    }

    /* Kontakt */
    form {
        width: 100%;
        padding: 0 15px;
    }

    .dropdown-content {
       
        border-radius: 8px;
        overflow: hidden;
        background: #808080;
    }

        .dropdown-content a {
            display: block;
            padding: 12px 18px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid rgba(208,58,40,0.4);
            transition: background 0.3s ease;
        }

            .dropdown-content a:hover {
                background: rgba(255,255,255,0.1);
            }

            .dropdown-content a:last-child {
                border-bottom: none;
            }
}

@media (max-width: 480px) {
    .hero-content {
        top: 0px;
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 7px 14px;
        font-size: 13px;
    }
}


/*.img-right {
    float: right;
    width: 180px;
    margin: 0 0 10px 20px;
}*/

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Inhalt */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #808080;
    min-width: 220px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

    /* Links im Dropdown */
    .dropdown-content a {
        display: block;
        padding: 10px 15px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(208,58,40,0.4);
        font-size: 14px;
    }

        .dropdown-content a:hover {
            border-bottom: 1px solid rgba(208,58,40,0.4);
        }

/* Hover zeigt Menü */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Footer */

.footer {
    background: #f8f6f3;
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

/* Eine gemeinsame Zeile */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

    /* Normale Links */
    .footer-links a {
        color: #D03A28;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            text-decoration: underline;
            color: #a52c1f;
        }

    /* Social Icons */
    .footer-links .social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        color: #808080;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        /* Hover Desktop */
        .footer-links .social:hover {
            transform: translateY(-3px);
        }

    .footer-links .facebook:hover {
        background: #1877f2;
        color: #fff;
    }

    .footer-links .instagram:hover {
        background: #e4405f;
        color: #fff;
    }

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 768px) {

    .footer {
        padding: 25px 15px;
    }

    /* Icons direkt farbig */
    .footer-links .facebook {
        background: #1877f2;
        color: #fff;
    }

    .footer-links .instagram {
        background: #e4405f;
        color: #fff;
    }

    /* optional etwas größer */
    .footer-links .social {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

.datenschutz {
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.6;
    padding-top: 0px;
}

    .datenschutz h2 {
        margin-bottom: 20px;
    }

    .datenschutz h3 {
        margin-top: 30px;
        color: #444;
    }

    .datenschutz h4 {
        margin-top: 20px;
        color: #666;
    }

    .datenschutz ul {
        margin-left: 20px;
    }

.datenschutz a {
    color: #D03A28;
    text-decoration: none;
    transition: color 0.3s;
}

    .datenschutz a:hover {
        text-decoration: underline;
        color: #a52c1f;
    }

@media (max-width: 768px) {
    .datenschutz {
        padding: 0 15px;
        padding-top: 0px;
    }
}


.impressum {
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.6;
    text-align: center;
    padding-top: 0px;
}

    .impressum ol {
        display: inline-block;
        text-align: left;
        margin-top: 10px;
    }

    .impressum h3 {
        margin-top: 25px;
        color: #444;
    }

  

    .impressum li {
        margin-bottom: 10px;
    }

    .impressum a {
        color: #D03A28;
        text-decoration: none;
        transition: color 0.3s;
    }

        .impressum a:hover {
            text-decoration: underline;
            color: #a52c1f;
        }


@media (max-width: 768px) {
    .impressum {
        padding: 15px;
        padding-top: 0px;
    }
}

/* ============================= */
/* Coaching Hero Section */
/* ============================= */
.coaching .hero-content {
    text-align: center; /* zentriert auf Desktop */
    max-width: 900px;
    margin: 0 auto;
}
.coaching img {
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .coaching img:hover {
        transform: scale(1.5);
    }
.coaching a {
    color: #D03A28;
    text-decoration: none;
    transition: color 0.3s;
}

    .coaching a:hover {
        text-decoration: underline;
        color: #a52c1f;
    }

/* Überschrift */
.coaching h1 {
    font-size: 28px;
    color: #D03A28;
    font-weight: 500;
    margin-bottom: 20px;
}

.coaching h2 {
    font-size: 28px;
    color: #D03A28;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Textabsätze */
.coaching p {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 15px 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* Bild rechts auf Desktop */
.coaching .img-right {
    float: left;
    width: 300px;
    margin: 0px 20px 0px 20px;
    border-radius: 10px;
    height: auto;
}

/* Liste mittig, linksbündig */
.coaching-list {
    display: inline-block;
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
    padding-left: 20px;
}

    .coaching-list li {
        margin-bottom: 12px;
        padding-left: 10px;
        border-left: 3px solid #ccc;
    }

/* Clearfix */
.coaching .hero-content::after {
    content: "";
    display: block;
    clear: both;
}

/* ============================= */
/* MOBILE VERSION */
/* ============================= */
@media (max-width: 768px) {

    /* Header Abstand automatisch */
    body {
        padding-top: 70px; /* Header Höhe Mobile */
    }

    .coaching {
        padding: 25px 15px 15px 15px;
    }

        .coaching h2 {
            font-size: 22px;
            text-align: center;
            margin-bottom: 15px;
        }

        .coaching p {
            font-size: 16px;
            text-align: left;
        }

        /* Bild rechts */
        .coaching .img-right {
            float: none;
            display: block;
            margin: 0 auto 20px auto;
            max-width: 100%;
            height: auto;
        }

    .coaching-list {
        max-width: 100%;
    }
}

.radio-group {
    margin: 15px 0;
    text-align: left;
}

    .radio-group label {
        display: block;
        margin-bottom: 8px;
        cursor: pointer;
        font-size: 14px;
    }

    .radio-group input[type="radio"] {
        margin-right: 8px;
        accent-color: #D03A28; /* schöne Farbe passend zu deiner Seite */
    }
