@charset "UTF-8";

:root {
    --purple: #73225C;
    --purple-soft: #B77A9B;

    --green: #AAC83B;
    --green-dark: #7F9A4A;

    --gold: #D4A437;

    --cream: #F6F4EF;
    --warm-grey: #CFC9C2;
    --line: rgba(46,46,44,.12);

    --text: #2E2E2C;
    --white: #FFFFFF;

    --max-width: 1180px;
    --radius: 24px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

body {

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(170, 200, 59, .16),
            transparent 27%
        ),

        radial-gradient(
            circle at 7% 82%,
            rgba(115, 34, 92, .08),
            transparent 23%
        ),

        radial-gradient(
            circle at 52% 105%,
            rgba(212, 164, 55, .10),
            transparent 25%
        ),

        #ffffff;

    background-attachment: fixed;
}


/* TYPOGRAFIE */

body {
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-family: "Nunito", Arial, sans-serif;
    line-height: 1.2;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.015em;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 700;
}

p {
    margin-top: 0;
}

.eyebrow {
    display: block;
    margin-bottom: 16px;

    color: var(--purple);

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: rgba(255,255,255,.75);
}


/* HEADER */

/* HEADER – sticky & halbtransparent */

/* ==========================================
   HEADER / HAUPTMENÜ – PFOTENTRAINER 2026
========================================== */

.site-header{

 width:min(93%, 1450px);

    margin:15px auto 0;

    border-radius:26px;


    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(246,244,239,.92);

    backdrop-filter:blur(14px);

    border-bottom:none;

    border-radius:0 0 36px 36px;

    box-shadow:
    0 18px 45px rgba(46,46,44,.05);

}
.header-inner {
    width: min(92%, var(--max-width));
    min-height: 105px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* LOGO */

.logo img {
    width: 340px;
    
    object-fit: contain;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a{
    color: var(--purple);
    text-decoration: none;
position:relative;
    font-size: .95rem;
    font-weight: 700;

    transition: .2s ease;
}

.main-nav a:hover {
    color: var(--purple-soft);
}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:3px;

    background:var(--green);

    transition:.25s;

}

.main-nav a:hover::after{

    width:100%;

}


/* TERMIN-KNOPF */

.main-nav .nav-highlight {
    padding: 12px 21px;

    color: #FFFFFF;
    background: var(--purple);

    border-radius: 999px;
}

.main-nav .nav-highlight:hover {
    color: #FFFFFF;
    background: var(--purple-soft);
    transform: translateY(-2px);
}


/* ==========================================
   TABLET / MOBIL
========================================== */

@media (max-width: 950px) {

    .site-header {
        position: static;
    }

    .header-inner {
        padding: 22px 0;

        flex-direction: column;
        gap: 18px;
    }

    .logo img {
        width: 240px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
}


@media (max-width: 650px) {

    .logo img {
        width: 210px;
    }

    .main-nav {
        gap: 10px 16px;
    }

    .main-nav a {
        font-size: .84rem;
    }

    .main-nav .nav-highlight {
        padding: 9px 16px;
    }
}


/* HERO */

.hero {
    padding: 90px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(circle at 90% 20%,
        rgba(170,200,59,.18),
        transparent 30%),
        var(--cream);
}

.hero-content {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}

.hero-intro {
    max-width: 650px;

    font-size: 1.28rem;
    line-height: 1.6;
}

.hero-location {
    margin: 28px 0;

    font-size: .95rem;
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    min-height: 500px;

    object-fit: cover;

    background: var(--white);

    border-radius: 180px 30px 180px 30px;
    box-shadow: 0 25px 70px rgba(46,46,44,.12);
}


/* BUTTONS */

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button-row-center {
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 15px 25px;

    border: 2px solid transparent;
    border-radius: 100px;

    text-decoration: none;
    font-weight: 700;

    transition: .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--purple);
}

.button-secondary {
    color: var(--purple);
    background: transparent;
    border-color: var(--purple);
}

.button-light {
    color: var(--purple);
    background: var(--white);
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255,255,255,.65);
}


/* ALLGEMEINE SEKTIONEN */

.section {
    width: min(92%, var(--max-width));
    margin: 0 auto;
    padding: 85px 0;
}

.section-soft {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;

    background: var(--cream);
}

.section-soft > * {
    width: min(92%, var(--max-width));
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 45px;

    text-align: center;
}

.section-heading-left {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.section-heading p {
    font-size: 1.12rem;
}

.center {
    margin-top: 50px;
    text-align: center;
}


/* DREI WEGE */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    position: relative;
    padding: 42px;

    background: var(--cream);
    border-radius: var(--radius);

    transition: transform .2s ease,
                box-shadow .2s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(46,46,44,.09);
}

.offer-number {
    margin-bottom: 55px;

    color: var(--purple-soft);

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.text-link {
    color: var(--purple);

    text-decoration: none;
    font-weight: 700;
}


/* EVENTS */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.event-card {
    padding: 32px;

    display: flex;
    gap: 25px;

    background: var(--white);
    border-radius: 20px;
}

.event-date {
    min-width: 62px;

    color: var(--purple);

    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: center;
}

.event-date span {
    display: block;

    font-size: 1.7rem;
    letter-spacing: -.04em;
}

.event-category {
    display: block;
    margin-bottom: 9px;

    color: var(--green-dark);

    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* HOBBYS */

.hobby-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.hobby-intro {
    position: sticky;
    top: 40px;
}

.hobby-intro p {
    max-width: 480px;
}

.hobby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hobby-card {
    min-height: 230px;
    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: var(--white);
    background: var(--purple);

    border-radius: 24px;

    text-decoration: none;

    transition: transform .2s ease;
}

.hobby-card:nth-child(2) {
    background: var(--green-dark);
}

.hobby-card:nth-child(3) {
    color: var(--text);
    background: var(--gold);
}

.hobby-card:nth-child(4) {
    background: var(--purple-soft);
}

.hobby-card:hover {
    transform: translateY(-4px);
}

.hobby-card span {
    font-size: 1.5rem;
    font-weight: 700;
}

.hobby-card small {
    margin-top: 8px;
    opacity: .88;
}


/* PHILOSOPHIE */

.philosophy {
    border-top: 1px solid rgba(46,46,44,.10);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.philosophy-icon {
    display: block;
    margin-bottom: 24px;

    color: var(--purple);

    font-size: 2.4rem;
}


/* ÜBER UNS */

.about {
    padding: 90px 0;

    background: var(--cream);
}

.about-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image{

    overflow:hidden;

    border-radius:30px 160px 30px 160px;

    box-shadow:0 25px 70px rgba(46,46,44,.10);

}

.about-image img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

}

.about-text p {
    max-width: 560px;
}


/* CTA */

.cta {
    padding: 90px 5%;

    color: var(--white);
    background: var(--purple);

    text-align: center;
}

.cta h2 {
    margin-bottom: 25px;
}

.cta p {
    max-width: 650px;
    margin: 0 auto 35px;

    font-size: 1.15rem;
}


/* FOOTER */

/* ==========================================
   FOOTER – PFOTENTRAINER 2026
========================================== */

.site-footer {
    position: relative;

    margin-top: 120px;
    padding: 105px 0 30px;

    color: #FFFFFF;
    background: var(--green-dark);

    border-top: none;

    overflow: hidden;
}


/* ==========================================
   GESCHWUNGENER FOOTER-ABSCHLUSS
========================================== */

.site-footer::before {
    content: "";

    position: absolute;

    top: -55px;
    left: -5%;

    width: 110%;
    height: 95px;

    background: var(--white);

    border-radius: 0 0 50% 50%;

    z-index: 1;
}


/* Footer-Inhalt über der Kurve */

.site-footer > * {
    position: relative;
    z-index: 2;
}

.footer-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* Hauptbereich */

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1.1fr;
    gap: 70px;

    align-items: start;
}


/* Logo */

.footer-logo {
    width: 220px;
    max-width: 100%;
    margin-bottom: 25px;
}


/* Texte */

.footer-column h4 {
    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: 1.15rem;
    font-weight: 700;
}

.footer-copy {
    max-width: 380px;
    margin: 0;

    color: rgba(255,255,255,.88);

    line-height: 1.7;
}


/* Links */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}

.footer-links a {
    color: #FFFFFF;

    text-decoration: none;
    font-weight: 600;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.footer-links a:hover {
    opacity: .82;
    transform: translateX(4px);
}


/* Social */

.footer-social {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 10px 18px;

    color: #FFFFFF;
    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;

    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;

    transition:
        background .2s ease,
        transform .2s ease;
}

.footer-social a:hover {
    color: var(--green-dark);
    background: #FFFFFF;

    transform: translateY(-2px);
}


/* Untere Zeile */

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    border-top: 1px solid rgba(255,255,255,.22);

    color: rgba(255,255,255,.72);

    font-size: .82rem;
}

.footer-small-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-small-links a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

.footer-small-links a:hover {
    color: #FFFFFF;
}


/* ==========================================
   FOOTER MOBILE
========================================== */

@media (max-width: 850px) {

    .site-footer {
        padding-top: 60px;
    }

    .site-footer::before {
        top: -35px;
        left: -8%;

        width: 116%;
        height: 65px;

        border-radius: 0 0 50% 50%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;

        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 45px;

        flex-direction: column;
        justify-content: center;

        gap: 12px;

        text-align: center;
    }

}


/* TABLET */

@media (max-width: 950px) {

    .header-inner {
        padding: 25px 0;
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content,
    .about-inner,
    .hobby-section {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        min-height: 400px;
    }

    .offer-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .hobby-intro {
        position: static;
    }

}


/* SMARTPHONE */

@media (max-width: 650px) {

    body {
        font-size: 16px;
    }

    .site-header {
        position: static;
    }

    .logo img {
        width: 230px;
    }

    .main-nav {
        gap: 12px 18px;
    }

    .main-nav a {
        font-size: .86rem;
    }

    .hero {
        padding: 60px 0 75px;
    }

    .hero-content {
        gap: 45px;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .hero-image img {
        min-height: 300px;
        border-radius: 90px 20px 90px 20px;
    }

    .section,
    .about,
    .cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .offer-card {
        padding: 30px;
    }

    .hobby-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-inner {
        gap: 50px;
    }

    .image-placeholder {
        min-height: 350px;
    }

.about-image img{

    display:block;

    width:100%;
    height:auto;

}

}



/* ==========================================
   SOCIAL ICONS – FIX
========================================== */

.site-footer .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.site-footer .footer-social a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);
    border: none;
    border-radius: 50%;

    overflow: hidden;
    text-decoration: none;

    transition: .25s ease;
}

.site-footer .footer-social a img {
    width: 21px !important;
    height: 21px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 21px !important;
    max-height: 21px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block;
    object-fit: contain;
}

.site-footer .footer-social a:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
}


/* Smartphone */

@media (max-width: 850px) {

    .site-footer .footer-social {
        justify-content: center;
    }

}




/* ==========================================
   UNTERSEITEN – PFOTENTRAINER 2026
========================================== */


/* ------------------------------------------
   ACTIVE MAIN NAV
------------------------------------------ */

.main-nav > a.active {
    color: var(--purple);
}


/* ------------------------------------------
   SEITENKOPF
------------------------------------------ */

/* ==========================================
   SUBPAGE HERO
========================================== */

.subpage-hero {
    padding: 75px 0 65px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(170, 200, 59, .18),
            transparent 30%
        ),
        var(--cream);
}


.subpage-hero-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}


/* TEXT */

.subpage-hero-text {
    min-width: 0;
}


.subpage-hero h1 {
    max-width: 800px;

    margin-bottom: 25px;

    font-size: clamp(2.5rem, 4vw, 4rem);
}


.subpage-hero p {
    max-width: 650px;

    margin-bottom: 30px;

    font-size: 1.18rem;
    line-height: 1.7;
}


/* BILD */

.subpage-hero-image {
    position: relative;
}


.subpage-hero-image img {
    width: 100%;
    height: 430px;

    display: block;
    object-fit: cover;

    background: var(--white);

    border-radius: 180px 30px 180px 30px;

    box-shadow:
        0 25px 70px rgba(46, 46, 44, .12);
}

/* ------------------------------------------
   GRUNDLAYOUT
------------------------------------------ */

.subpage-layout {
    width: min(92%, var(--max-width));

    margin: 0 auto;
    padding: 75px 0 90px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        280px;

    gap: 65px;

    align-items: start;
}


.subpage-content {
    min-width: 0;
}


/* ------------------------------------------
   CONTENT
------------------------------------------ */

.content-section {
    margin-bottom: 55px;
}

.content-section h2 {
    max-width: 700px;
}

.content-intro {
    max-width: 760px;
}

.lead {
    font-size: 1.22rem;
    line-height: 1.7;
}


/* ------------------------------------------
   TRAININGSWEGE
------------------------------------------ */

.training-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.training-path {
    padding: 32px 28px;

    background: var(--cream);

    border-radius: 22px;
}


.training-path-number {
    display: block;

    margin-bottom: 40px;

    color: var(--purple-soft);

    font-size: .76rem;
    font-weight: 700;

    letter-spacing: .15em;
}


.training-path h3 {
    min-height: 54px;
}


.training-path p {
    font-size: .94rem;
}


/* ------------------------------------------
   HILFE-KARTE
------------------------------------------ */

.help-card {
    margin: 10px 0 100px;

    padding: 55px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 50px;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(115,34,92,.08),
            rgba(170,200,59,.10)
        );

    border-radius: 28px;
}


.help-card h2 {
    margin-bottom: 20px;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
}


.help-card p {
    max-width: 620px;
}


.help-card p:last-child {
    margin-bottom: 0;
}


/* ------------------------------------------
   PREISE
------------------------------------------ */

.prices-section {
    margin-bottom: 55px;
}


.prices-intro {
    max-width: 650px;

    margin-bottom: 45px;
}


.price-list {
    border-top:
        1px solid rgba(46,46,44,.13);
}


.price-row {
    padding: 23px 5px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    border-bottom:
        1px solid rgba(46,46,44,.13);
}


.price-row > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.price-row strong {
    font-size: 1.04rem;
}


.price-row span {
    color: rgba(46,46,44,.65);

    font-size: .88rem;
}


.price {
    flex-shrink: 0;

    color: var(--purple);

    font-size: 1.2rem;
    font-weight: 700;
}


.price-row-highlight {
    margin: 8px -18px;

    padding-left: 23px;
    padding-right: 23px;

    background: rgba(170,200,59,.13);

    border: 0;
    border-radius: 14px;
}


/* ------------------------------------------
   INFO
------------------------------------------ */

.info-note {
    padding: 22px 25px;

    display: flex;
    align-items: flex-start;

    gap: 16px;

    background: var(--cream);

    border-radius: 16px;
}


.info-note-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: var(--purple);

    border-radius: 50%;

    font-size: .82rem;
    font-weight: 700;
}


.info-note p {
    margin: 0;

    font-size: .9rem;
}


/* ==========================================
   SIDEBAR
========================================== */

.section-sidebar {
    position: sticky;

    /*
       Header bleibt oben kleben.
       Deshalb lassen wir etwas Luft.
    */

    top: 140px;
}


/* ------------------------------------------
   MENÜ-KARTE
------------------------------------------ */

.section-menu {
    overflow: hidden;

    background: var(--cream);

    border:
        1px solid rgba(115,34,92,.08);

    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(46,46,44,.06);
}


/* Kopf */

.section-menu-top {
    padding: 28px 28px 25px;

    background: var(--purple);

    color: var(--white);
}


.section-menu-kicker {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.68);

    font-size: .67rem;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.section-menu-top strong {
    font-size: 1.18rem;
}


/* Gruppen */

.section-menu-group {
    padding: 22px 18px;

    border-bottom:
        1px solid rgba(46,46,44,.08);
}


.section-menu-group a {
    position: relative;

    display: block;

    padding: 8px 12px;

    color: var(--text);

    border-radius: 9px;

    text-decoration: none;

    font-size: .89rem;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.section-menu-group a:not(.section-menu-heading) {
    padding-left: 20px;
}


.section-menu-group a:hover {
    color: var(--purple);

    background: rgba(115,34,92,.06);

    transform: translateX(2px);
}


/* Gruppenüberschrift */

.section-menu-group
.section-menu-heading {

    margin-bottom: 5px;

    color: var(--purple);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;
}


/* Aktive Seite */

.section-menu-group a.active {
    color: var(--purple);

    background: rgba(115,34,92,.10);

    font-weight: 700;
}


.section-menu-group
a.active:not(.section-menu-heading)::before {

    content: "";

    position: absolute;

    left: 6px;
    top: 50%;

    width: 4px;
    height: 18px;

    background: var(--purple);

    border-radius: 20px;

    transform: translateY(-50%);
}


/* Footer des Menüs */

.section-menu-footer {
    padding: 20px 18px;
}


.section-menu-calendar {
    padding: 12px 14px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: var(--white);
    background: var(--green-dark);

    border-radius: 10px;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease;
}


.section-menu-calendar:hover {
    transform: translateY(-2px);
}


/* ==========================================
   MOBILE BEREICHSNAVIGATION
========================================== */

.mobile-section-nav {
    display: none;
}


/* ==========================================
   CTA UNTEN
========================================== */

.subpage-cta {
    width: 100%;
    max-width: none;

    padding: 70px 0;

    background: var(--purple);
    color: #ffffff;

    box-sizing: border-box;
}


.subpage-cta > div {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}


.subpage-cta h2 {
    margin-bottom: 20px;
}


.subpage-cta p {
    margin-bottom: 30px;

    font-size: 1.08rem;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

    .subpage-layout {
        grid-template-columns:
            minmax(0, 1fr)
            245px;

        gap: 50px;
    }


    .training-paths {
        grid-template-columns: 1fr;
    }


    .training-path h3 {
        min-height: 0;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {


    /* Sidebar weg */

    .section-sidebar {
        display: none;
    }


    /* Mobile Navigation erscheint */

    .mobile-section-nav {
        display: block;

        width: min(92%, var(--max-width));

        margin: 35px auto 0;
    }


    .mobile-section-nav details {
        overflow: hidden;

        background: var(--cream);

        border:
            1px solid rgba(115,34,92,.10);

        border-radius: 16px;
    }


    .mobile-section-nav summary {
        padding: 18px 20px;

        display: flex;

        justify-content: space-between;
        align-items: center;

        color: var(--purple);

        cursor: pointer;

        list-style: none;

        font-weight: 700;
    }


    .mobile-section-nav summary::-webkit-details-marker {
        display: none;
    }


    .mobile-section-nav summary span {
        font-size: 1.4rem;
        font-weight: 400;
    }


    .mobile-section-nav-content {
        padding: 0 12px 12px;
    }


    /*
       Innerhalb der mobilen Navigation
       brauchen wir keinen zweiten großen
       lila Kopf.
    */

    .mobile-section-nav
    .section-menu-top {

        display: none;
    }


    .mobile-section-nav
    .section-menu {

        border: 0;

        border-radius: 0;

        box-shadow: none;
    }


    /* Layout jetzt volle Breite */

    .subpage-layout {
        grid-template-columns: 1fr;

        padding-top: 65px;
        padding-bottom: 85px;
    }


    /* Hero */

    .subpage-hero {
        padding: 65px 0 60px;
    }


    .subpage-hero h1 {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }


    /* Hilfe */

    .help-card {
        padding: 35px 28px;

        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* Preise */

    .price-row {
        align-items: flex-start;
    }


    .price {
        padding-top: 1px;
    }

}


/* ==========================================
   KLEINE SMARTPHONES
========================================== */

@media (max-width: 500px) {

    .subpage-layout {
        width: 90%;
    }


    .price-row {
        padding-top: 19px;
        padding-bottom: 19px;

        gap: 15px;
    }


    .price-row strong {
        font-size: .96rem;
    }


    .price-row span {
        font-size: .80rem;
    }


    .price {
        font-size: 1.05rem;
    }


    .price-row-highlight {
        margin-left: -10px;
        margin-right: -10px;

        padding-left: 15px;
        padding-right: 15px;
    }

}


/* ==========================================
   KURSSEITEN – PFOTENTRAINER 2026
========================================== */


/* HERO */

.course-hero {
    padding: 75px 0 65px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(170, 200, 59, .18),
            transparent 27%
        ),

        radial-gradient(
            circle at 8% 85%,
            rgba(115, 34, 92, .09),
            transparent 24%
        ),

        radial-gradient(
            circle at 55% 105%,
            rgba(212, 164, 55, .11),
            transparent 25%
        ),

        var(--cream);
}


.course-hero-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr .85fr;

    gap: 60px;

    align-items: center;
}


.course-hero-text h1 {
    margin-bottom: 20px;

    font-size: clamp(2.8rem, 5vw, 4.6rem);
}


.course-hero-lead {
    max-width: 620px;

    margin-bottom: 15px;

    font-size: 1.3rem;
    font-weight: 600;

    line-height: 1.55;
}


.course-hero-text > p:not(.course-hero-lead) {
    max-width: 620px;
}


/* HERO BILD */

.course-hero-image img {
    width: 100%;

    max-height: 520px;

    object-fit: contain;

    border-radius: 30px 130px 30px 130px;
}


/* TAGS */

.course-tags {
    margin: 28px 0;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}


.course-tags span {
    padding: 7px 13px;

    color: var(--purple);

    background: rgba(115,34,92,.08);

    border-radius: 100px;

    font-size: .78rem;
    font-weight: 700;
}



/* ==========================================
   FÜR WEN?
========================================== */

.audience-list {
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.audience-list > div {
    padding: 23px;

    display: flex;
    gap: 15px;

    background: var(--cream);

    border-radius: 16px;
}


.audience-list > div > span {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: var(--green-dark);

    border-radius: 50%;

    font-size: .75rem;
    font-weight: 700;
}


.audience-list p {
    margin: 0;

    font-size: .9rem;
}


.audience-list strong {
    color: var(--purple);
}



/* ==========================================
   STORY / ZITAT
========================================== */

.course-story {
    max-width: 760px;
}


.course-quote {
    margin: 45px 0;

    padding: 35px 40px;

    background:
        linear-gradient(
            135deg,
            rgba(115,34,92,.08),
            rgba(170,200,59,.10)
        );

    border-left: 5px solid var(--purple);

    border-radius: 0 20px 20px 0;
}


.course-quote strong {
    display: block;

    margin-bottom: 6px;

    color: var(--purple);

    font-size: 1.35rem;
}


.course-quote span {
    font-size: 1rem;
}



/* ==========================================
   TRAININGSINHALTE
========================================== */

.course-topics {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 17px;
}


.course-topic {
    padding: 28px;

    background: var(--cream);

    border-radius: 18px;
}


.course-topic-number {
    display: block;

    margin-bottom: 28px;

    color: var(--purple-soft);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .14em;
}


.course-topic h3 {
    margin-bottom: 10px;

    font-size: 1.15rem;
}


.course-topic p {
    margin: 0;

    font-size: .9rem;
}



/* ==========================================
   KURSVARIANTEN
========================================== */

.course-options {
    margin-top: 50px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;

    align-items: stretch;
}


.course-option {
    position: relative;

    padding: 40px;

    display: flex;
    flex-direction: column;

    background: var(--cream);

    border:
        1px solid rgba(46,46,44,.08);

    border-radius: 25px;
}


.course-option-featured {
    background:
        linear-gradient(
            150deg,
            rgba(115,34,92,.08),
            rgba(170,200,59,.10)
        );

    border:
        2px solid rgba(115,34,92,.20);
}


.course-option-badge {
    position: absolute;

    top: -14px;
    right: 25px;

    padding: 7px 14px;

    color: var(--white);
    background: var(--purple);

    border-radius: 100px;

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .06em;
}


.course-option-label {
    color: var(--green-dark);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.course-option h3 {
    margin: 7px 0 10px;

    color: var(--purple);

    font-size: 1.8rem;
}


.course-option-head p {
    min-height: 55px;
}


.course-option ul {
    margin: 25px 0 30px;
    padding: 0;

    list-style: none;
}


.course-option li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 25px;

    font-size: .9rem;
}


.course-option li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--green-dark);

    font-weight: 800;
}


/* PREIS */

.course-option-price {
    margin-top: auto;
    margin-bottom: 25px;

    padding-top: 25px;

    border-top:
        1px solid rgba(46,46,44,.10);
}


.course-option-price small {
    display: block;

    margin-bottom: 3px;

    color: rgba(46,46,44,.65);
}


.course-option-price strong {
    color: var(--purple);

    font-size: 2rem;
}


.course-option .button {
    text-align: center;
}


.course-start-note {
    margin: 30px 0 0;

    padding: 18px 22px;

    color: var(--text);
    background: rgba(170,200,59,.12);

    border-radius: 14px;

    font-size: .92rem;
}



/* ==========================================
   VORAUSSETZUNGEN
========================================== */

.course-requirement {
    margin: 20px 0 100px;

    padding: 45px;

    display: flex;
    align-items: center;

    gap: 30px;

    background: var(--purple);

    color: var(--white);

    border-radius: 25px;
}


.course-requirement-icon {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.12);

    border-radius: 50%;

    font-size: 2rem;
}


.course-requirement .eyebrow {
    color: rgba(255,255,255,.65);
}


.course-requirement h2 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 1.8rem;
}


.course-requirement p {
    margin: 0;

    color: rgba(255,255,255,.88);
}



/* ==========================================
   BUCHUNGS-CTA
========================================== */

.course-booking-cta {
    padding: 85px 5%;

    color: var(--white);
    background: var(--purple);

    text-align: center;
}


.course-booking-inner {
    max-width: 700px;

    margin: 0 auto;
}


.course-booking-cta h2 {
    margin-bottom: 18px;

    color: var(--white);
}


.course-booking-cta p {
    max-width: 580px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.88);

    font-size: 1.08rem;
}



/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 900px) {

    .course-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .course-hero-image {
        max-width: 600px;
    }


    .course-options {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .course-hero {
        padding: 60px 0;
    }


    .course-hero-text h1 {
        font-size: 2.8rem;
    }


    .course-hero-lead {
        font-size: 1.12rem;
    }


    .audience-list,
    .course-topics {
        grid-template-columns: 1fr;
    }


    .course-option {
        padding: 32px 27px;
    }


    .course-option-head p {
        min-height: 0;
    }


    .course-requirement {
        padding: 35px 28px;

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


    .course-requirement-icon {
        width: 55px;
        height: 55px;
    }

}


.course-image-break {

    margin: 60px -20px 110px;

}

.course-image-break img {

    width: 100%;
    height: 380px;

    object-fit: cover;
    display: block;

    border-radius:
        24px
        90px
        24px
        90px;

}


/* Nur auf Handys */

@media (max-width:700px){

    .course-image-break{

        margin-top:40px;
        margin-bottom:80px;

    }

    .course-image-break img{

        height:280px;

        border-radius:
            20px
            60px
            20px
            60px;

    }

}



/* ==========================================================
   SERVICESEITEN
   (Termine, Kontakt usw.)
========================================================== */

/* HERO */

.service-hero{

    padding:70px 0 55px;

}

.service-hero-inner{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.service-hero-image img{

    width:100%;

    border-radius:32px;

    display:block;

    object-fit:cover;

}


/* INFOLEISTE */

.service-info-bar{

    margin:35px auto 65px;

}

.service-info-bar .section-inner{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.service-info{

    background:#ffffff;

    border-radius:24px;

    padding:28px;

    display:flex;

    gap:18px;

    align-items:flex-start;

    box-shadow:0 12px 35px rgba(46,46,44,.08);

}

.service-info span{

    font-size:2rem;

}

.service-info strong{

    display:block;

    margin-bottom:8px;

}

.service-info p{

    margin:0;

}


/* 3 SCHRITTE */

.steps-section{

    padding:20px 0 90px;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:45px;

}

.step-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:0 12px 40px rgba(46,46,44,.08);

}

.step-number{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#73225C;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin-bottom:25px;

}


/* ==========================================
   KALENDER
========================================== */

.calendar-section {
    padding: 55px 0 70px;
}

.calendar-section .section-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.calendar-card {
    margin-top: 0;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    padding: 18px;

    box-shadow:
        0 20px 60px rgba(46,46,44,.10);
}

.calendar-card iframe {
    display: block;

    width: 100%;
    height: 760px;

    border: 0;
}


/* ==========================================
   KONTAKT
========================================== */

.contact-callout {
    padding: 0 0 70px;
}

.contact-callout .section-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.callout-box {
    background: var(--cream);

    border-radius: 28px;

    padding: 45px 50px;

    display: flex;

    gap: 30px;

    align-items: flex-start;
}

.callout-icon {
    font-size: 2.4rem;

    line-height: 1;
}

.callout-content {
    flex: 1;
}

.callout-content h2 {
    margin-top: 8px;
    margin-bottom: 18px;
}

.callout-content p {
    max-width: 900px;
    margin-bottom: 24px;
}


/* MOBIL */

@media(max-width:900px){

/* SUBPAGE HERO */

.subpage-hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
}

.subpage-hero-image {
    width: 100%;
}

.subpage-hero-image img {
    width: 100%;
    height: 360px;
    border-radius: 100px 24px 100px 24px;
}

.subpage-hero-text {
    min-width: 0;
}

.service-info-bar .section-inner{

    grid-template-columns:1fr;

}

.steps-grid{

    grid-template-columns:1fr;

}

.callout-box{

    flex-direction:column;

    padding:40px;

}

.calendar-section {
    padding: 40px 0 55px;
}

.calendar-card iframe {
    height: 700px;
}

}


/* ==========================================
   ANMELDEHILFE
========================================== */

.booking-help {
    padding: 0 0 55px;
}

.booking-help .section-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.booking-details {
    background: #ffffff;

    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(46,46,44,.06);

    overflow: hidden;
}

.booking-details summary {
    list-style: none;

    cursor: pointer;

    padding: 18px 24px;

    font-size: .95rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--purple);
}

.booking-details summary::-webkit-details-marker {
    display: none;
}

.booking-details summary span {
    font-weight: 600;
    color: var(--purple);
}

.booking-content {
    padding: 0 24px 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.booking-step {
    padding: 20px;

    background: var(--cream);

    border-radius: 16px;

    font-size: .9rem;
    line-height: 1.6;
}

.booking-step strong {
    color: var(--purple);
    font-size: 1.1rem;
    margin-right: 6px;
}



/* ==========================================
   BESCHÄFTIGUNGSSEITEN
   Hoopers · Dummy · ZOS · Gymnastricks
========================================== */


/* ==========================================
   TRAININGSPRINZIPIEN
========================================== */

.activity-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 45px;
}


.activity-principle {
    padding: 32px;

    background: var(--white);

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(46, 46, 44, .07);
}


.activity-principle-icon {
    display: block;

    margin-bottom: 18px;

    color: var(--purple);

    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}


.activity-principle h3 {
    margin-bottom: 12px;
}


.activity-principle p {
    margin: 0;
}



/* ==========================================
   TRAINERIN
========================================== */

.activity-trainer {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;

    margin: 40px 0 90px;
    padding: 45px;

    background: var(--cream);

    border-radius: 32px;
}


.activity-trainer-image {
    width: 100%;
}


.activity-trainer-image img {
    width: 100%;
    height: 380px;

    display: block;

    object-fit: cover;

    border-radius: 120px 24px 120px 24px;

    box-shadow:
        0 18px 45px rgba(46, 46, 44, .10);
}


.activity-trainer-content h2 {
    margin-bottom: 12px;
}


.activity-trainer-content .lead {
    margin-bottom: 22px;

    color: var(--purple);

    font-weight: 700;
}


.activity-trainer-qualification {
    margin: 28px 0 22px;
    padding: 20px 24px;

    background: var(--white);

    border-radius: 18px;
}


.activity-trainer-qualification span,
.activity-trainer-qualification strong,
.activity-trainer-qualification small {
    display: block;
}


.activity-trainer-qualification span {
    margin-bottom: 5px;

    color: var(--purple);

    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}


.activity-trainer-qualification strong {
    margin-bottom: 3px;
}


.activity-trainer-qualification small {
    opacity: .75;
}



/* ==========================================
   VIDEO
========================================== */

.activity-video {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    margin-top: 35px;

    overflow: hidden;

    background: #000;

    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(46, 46, 44, .10);
}


.activity-video iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}



/* ==========================================
   TRAININGSMÖGLICHKEITEN
========================================== */

.activity-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 45px;
}


.activity-option {
    display: flex;
    flex-direction: column;

    padding: 32px;

    background: var(--white);

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(46, 46, 44, .07);
}


.activity-option-label {
    margin-bottom: 15px;

    color: var(--purple);

    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}


.activity-option h3 {
    margin-bottom: 14px;
}


.activity-option p {
    flex-grow: 1;
}


.activity-option .text-link {
    margin-top: 15px;
}



/* ==========================================
   MOBIL
========================================== */

@media (max-width: 900px) {

    .activity-principles {
        grid-template-columns: 1fr;
    }


    .activity-trainer {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 32px;
    }

.hero,
.subpage-hero,
.course-hero,
.service-hero {
    background: rgba(246, 244, 239, .88);
}


    .activity-trainer-image img {
        height: 360px;

        border-radius: 90px 22px 90px 22px;
    }


    .activity-options {
        grid-template-columns: 1fr;
    }

}

.hero,
.subpage-hero,
.course-hero,
.service-hero{

    margin-top:-30px;

    padding-top:120px;

}



.home-image-break{

    margin:70px 0 110px;

}

.home-image-break img{

    display:block;

    width:100%;
    height:auto;

    border-radius:28px 110px 28px 110px;

    box-shadow:0 20px 60px rgba(46,46,44,.10);

}


/* ==========================================
   PFOTENTRAINER 2026 – KOMPAKTERES LAYOUT
   ========================================== */


/* HERO */

.hero {
    padding: 65px 0 75px;
}

.hero-content {
    gap: 60px;
}

.hero-image img {
    min-height: 420px;
}


/* ALLGEMEINE SECTIONS */

.section {
    padding: 75px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.center {
    margin-top: 30px;
}


/* ANGEBOTE */

.offer-card {
    padding: 32px;
}


/* AKTUELLES */

.event-card {
    padding: 26px;
    gap: 20px;
}


/* FOTO-TRENNER */

.home-image-break {
    margin: 45px 0 75px;
}


/* HOBBYS */

.hobby-section {
    gap: 60px;
}

.hobby-card {
    min-height: 200px;
    padding: 28px;
}


/* PHILOSOPHIE */

.philosophy-grid {
    gap: 45px;
}


/* ÜBER UNS */

.about {
    padding: 75px 0;
}

.about-inner {
    gap: 60px;
}


/* ABSCHLUSS */

.cta {
    padding: 75px 5%;
}


/* FOOTER */

.site-footer {
    margin-top: 70px;
    padding: 60px 0 30px;
}

/* ==========================================
   HOBBY-FOTOKARTEN
========================================== */

.hobby-section {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 55px;
}


.hobby-intro {

    position: sticky;

    top: 120px;

}


.hobby-cards {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}


.hobby-photo-card {

    display: block;

    overflow: hidden;

    background: var(--white);

    border-radius: 24px;

    text-decoration: none;

    box-shadow: 0 12px 35px rgba(46,46,44,.08);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.hobby-photo-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 45px rgba(46,46,44,.12);

}


.hobby-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}


.hobby-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.hobby-card-content {

    padding: 24px 26px 28px;

}


.hobby-card-content h3 {

    margin: 0 0 7px;

}


.hobby-card-content p {

    margin: 0 0 18px;

    font-size: .9rem;

}


.hobby-link {

    color: var(--purple);

    font-weight: 700;

    font-size: .85rem;

}



/* ==========================================
   HOBBY – MOBIL
========================================== */

@media (max-width: 900px) {

    .hobby-section {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .hobby-intro {

        position: static;

    }

}


@media (max-width: 600px) {

    .hobby-cards {

        grid-template-columns: 1fr;

    }

}


/* ==========================================
   ÜBER UNS – TEAM
========================================== */

.team-grid {

    width: min(100%, var(--max-width));

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 55px;
}


.team-person {

    min-width: 0;

    background: #ffffff;

    border-radius: 28px;

    padding: 28px;

    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}


.team-person-image {

    width: 100%;

    margin-bottom: 30px;

    overflow: hidden;

    border-radius: 24px;
}


.team-person-image img {

    display: block;

    width: 100%;

    height: 280px;

    object-fit: cover;
}


.team-person-content h2 {

    margin-top: 8px;

    margin-bottom: 18px;

}


.team-person-content h3 {

    margin-top: 30px;

    margin-bottom: 15px;

}


.team-focus-list {

    margin: 0 0 25px;

    padding-left: 20px;

}


.team-focus-list li {

    margin-bottom: 8px;

}


/* ==========================================
   FORTBILDUNGEN
========================================== */

.team-person .training-details {

    margin-top: 28px;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}


.team-person .training-details summary {

    padding: 18px 0;

    cursor: pointer;

    font-weight: 700;

    color: var(--purple);

    list-style: none;

}


.team-person .training-details summary::-webkit-details-marker {

    display: none;

}


.team-person .training-details summary::after {

    content: "+";

    float: right;

    font-size: 1.2rem;

}


.team-person .training-details[open] summary::after {

    content: "−";

}


.team-person .training-details-content {

    padding: 0 0 20px;

}


.team-person .training-details-content ul {

    margin: 0;

    padding-left: 20px;

}


.team-person .training-details-content li {

    margin-bottom: 8px;

}


/* ==========================================
   WAS UNS VERBINDET
========================================== */

.philosophy-grid {

    width: min(100%, var(--max-width));

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;
}


.philosophy-card {

    padding: 25px;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid var(--line);
}


.philosophy-icon {

    display: block;

    margin-bottom: 18px;

    font-size: 1.4rem;
}


.philosophy-card h3 {

    margin-bottom: 12px;

}


.philosophy-card p {

    margin: 0;

}


/* ==========================================
   GEMEINSAMES FOTO
========================================== */

.about-photo-section {

    padding: 20px 0 100px;

}


.about-photo-break {

    width: min(850px, 90%);

    margin: 0 auto;

    overflow: hidden;

    border-radius: 30px 80px 30px 80px;
}


.about-photo-break img {

    display: block;

    width: 100%;

    height: auto;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 850px) {

    .team-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .team-person-image img {

        height: 260px;

    }


    .philosophy-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 550px) {

    .team-person {

        padding: 20px;

        border-radius: 22px;

    }


    .team-person-image {

        border-radius: 20px;

    }


    .team-person-image img {

        height: 230px;

    }


    .philosophy-grid {

        grid-template-columns: 1fr;

    }

}


/* ==========================================
   KONTAKT
========================================== */

.contact-grid {

    width: min(100%, var(--max-width));

    margin: 45px auto 0;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.contact-card {

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(0,0,0,.04);
 transition: transform .2s ease, box-shadow .2s ease;
}


.contact-card-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #f3e6ef;

    font-size: 1.3rem;
}


.contact-card h3 {

    margin-bottom: 18px;

}


.contact-card p {

    margin: 8px 0;

}


.contact-card a {

    color: var(--purple);

    font-weight: 600;

    text-decoration: none;

}


.contact-card a:hover {

    text-decoration: underline;

}


.text-link {

    display: inline-block;

    margin-top: 10px;

}


/* ==========================================
   PERSÖNLICHER KONTAKT
========================================== */

.contact-personal {
    width: min(100%, 900px);
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 45px;

    align-items: center;
}




/* ==========================================
   ANSCHRIFT
========================================== */

.address-card {

    width: min(100%, var(--max-width));

    margin: 35px auto 0;

    padding: 30px 35px;

    display: flex;

    justify-content: space-between;

    gap: 40px;

    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 22px;
}


.address-card h3 {

    margin-bottom: 12px;

}


.address-card p {

    margin: 0;

}


/* ==========================================
   KONTAKT – MOBILE
========================================== */

@media (max-width: 850px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .contact-personal {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .contact-personal-image {

        order: -1;

    }


    .address-card {

        flex-direction: column;

        gap: 25px;

    }

}

.contact-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.contact-card-link:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.contact-card-link .text-link {
    color: var(--purple);
    font-weight: 700;
}



/* ==========================================
   CTA – ABSCHLUSS
   Einheitliche Version für Kontakt / Abschluss
========================================== */

.cta-section {
    width: 100%;
    max-width: none;
    padding: 70px 0;
    background: var(--purple);
    color: var(--white);
    box-sizing: border-box;
}

/* Gemeinsamer Inhaltsbereich */
.cta-section .section-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

/* Variante mit .cta-split-content */
.cta-section .cta-split-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.cta-section .cta-split-text {
    max-width: 600px;
}

/* Variante mit .contact-personal direkt im CTA */
.cta-section .contact-personal {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.cta-section .contact-personal-text {
    max-width: 600px;
}

/* Überschrift / Text */
.cta-section h2 {
    color: var(--white);
}

.cta-section .lead {
    max-width: 650px;
    margin: 18px 0 30px;
}

/* Bild – beide möglichen Klassen */
.cta-section .cta-split-image,
.cta-section .contact-personal-image {
    width: 100%;
    overflow: hidden;
    border-radius: 30px 80px 30px 80px;
}

.cta-section .cta-split-image img,
.cta-section .contact-personal-image img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
}

/* Buttons */
.cta-section .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ==========================================
   CTA – MOBILE
========================================== */

@media (max-width: 850px) {

    .cta-section {
        padding: 55px 0;
    }

    .cta-section .section-inner {
        width: min(92%, var(--max-width));
    }

    .cta-section .cta-split-content,
    .cta-section .contact-personal {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section .cta-split-text,
    .cta-section .contact-personal-text {
        max-width: none;
    }

    .cta-section .cta-split-image,
    .cta-section .contact-personal-image {
        order: 2;
    }

    .cta-section .cta-split-image img,
    .cta-section .contact-personal-image img {
        height: 280px;
    }
}




/* ==========================================
   ANFAHRT & KARTE
========================================== */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.split-section-text {
    min-width: 0;
}

.split-section-text h2 {
    margin-bottom: 22px;
}

.split-section-text > p {
    max-width: 650px;
}

.info-box {
    margin-top: 30px;
    padding: 28px 30px;
    background: var(--cream);
    border-radius: 24px;
}

.info-box p {
    margin: 20px 0 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.split-section-map {
    min-width: 0;
}

.map-card {
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(46, 46, 44, .10);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}


/* ==========================================
   ANFAHRT – MOBIL
========================================== */

@media (max-width: 900px) {

    .split-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .map-card iframe {
        height: 400px;
    }

}

/* ==========================================================
   SERVICESEITEN – FEINJUSTAGE
   Gemeinsames Layout für Kontakt, Anfahrt usw.
   ========================================================== */

/* SERVICE-HERO – DESKTOP */

.service-hero-inner {
    width: min(92%, var(--max-width));
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.service-hero-text {
    min-width: 0;
}

.service-hero-image {
    min-width: 0;
    width: 100%;
}

.service-hero-image img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    border-radius: 100px 24px 100px 24px;
}


/* ANFAHRT – DESKTOP */

.split-section {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.split-section-text,
.split-section-map {
    min-width: 0;
}

.map-card {
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(46, 46, 44, .10);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}


/* SERVICESEITEN – MOBILE */

@media (max-width: 900px) {

    .service-hero-inner {
        width: min(92%, var(--max-width));
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-hero-text {
        width: 100%;
    }

    .service-hero-image {
        width: 100%;
    }

    .service-hero-image img {
        height: 280px;
        border-radius: 70px 22px 70px 22px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .map-card iframe {
        height: 400px;
    }
}


```css
/* ==========================================================
   EMPFEHLUNGEN
   ========================================================== */

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:18px;
margin-top:35px;
}

.category-card{
background:var(--cream);
padding:22px;
border-radius:22px;
text-align:center;
font-weight:700;
color:var(--text);
transition:.25s;
text-decoration:none;
}

.category-card:hover{
background:var(--light-green);
transform:translateY(-4px);
}

.recommendation-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:35px;
}

.recommendation-card{
background:#fff;
border-radius:28px;
overflow:hidden;
box-shadow:0 15px 40px rgba(46,46,44,.08);
display:flex;
flex-direction:column;
transition:.25s;
}

.recommendation-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(46,46,44,.12);
}

.recommendation-card img{
width:100%;
height:220px;
object-fit:cover;
}

.recommendation-content{
padding:24px;
display:flex;
flex-direction:column;
gap:18px;
flex:1;
}

.recommendation-content h3{
margin:0;
}

.recommendation-content p{
margin:0;
flex:1;
}

.recommendation-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.recommendation-tags span{
background:#EEF5DF;
color:var(--green);
padding:8px 14px;
border-radius:999px;
font-size:.85rem;
font-weight:600;
}

.recommendation-card .button{
margin-top:auto;
width:100%;
justify-content:center;
}
```
