@import url('fonts.css');

/* ─── Brand Variables ─────────────────────────────────────── */
:root {
    --brand-green:    #83b238;
    --brand-blue:     #005FA6;
    --brand-blue-lt:  #e8f1f9;
    --bg-warm:        #f5f0e7;
    --bg-section:     #ece7dc;
    --bg-oz:          #e9f4da;
    --text-dark:      #1a1f36;
    --text-mid:       #6b7280;
    --serif:          'Playfair Display', Georgia, serif;
    --sans:           'DM Sans', system-ui, sans-serif;
    --radius:         6px;

    /* Bootstrap overrides */
    --bs-body-bg:        var(--bg-warm);
    --bs-body-color:     var(--text-dark);
    --bs-body-font-family: var(--sans);
    --bs-link-color:     var(--brand-blue);
    --bs-link-hover-color: var(--brand-green);
    --bs-primary:        var(--brand-blue);
    --bs-primary-rgb:    0, 95, 166;
}

/* ─── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--sans);
    font-weight: 300;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    /* Platz für die fixed Navbar */
    padding-top: 54px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--sans); }

em { font-family: var(--serif); font-style: italic; }

a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--brand-green); }

img { max-width: 100%; height: auto; display: block; }

section, .section-block { padding: 80px 0; }

/* ─── Section Labels & Headings ───────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-title em { color: var(--brand-blue); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom,
.btn-ghost-custom {
    display: inline-block;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-custom {
    background: var(--brand-green);
    color: #fff;
    border: 2px solid var(--brand-green);
}

.btn-primary-custom:hover { opacity: 0.88; color: #fff; transform: translateY(-1px); }

.btn-ghost-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-ghost-custom:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── Scroll-Anker-Abstand (verhindert Überlappung durch fixed Navbar) ── */
section[id], div[id]:not(#navbar):not(#contact-bar):not(#praxis-features):not(#navMenu) {
    scroll-margin-top: 54px;
}

/* ─── Navbar ──────────────────────────────────────────────── */
#navbar {
    background: rgba(245, 240, 231, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 7px 0;
    border-bottom: 1px solid transparent;
}

#navbar.navbar--hidden { transform: translateY(-100%); }

#navbar.scrolled {
    box-shadow: 0 2px 16px rgba(26, 31, 54, 0.1);
    border-bottom-color: rgba(26, 31, 54, 0.06);
}

.navbar-brand {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 6px 14px;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover { color: var(--brand-blue); }

.navbar-nav .nav-link.nav-active {
    color: var(--brand-blue) !important;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link.nav-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand-green);
    border-radius: 2px;
}

.btn-nav-cta {
    background: var(--brand-blue) !important;
    color: #fff !important;
    border-radius: var(--radius);
    padding: 8px 20px !important;
    font-weight: 500 !important;
}

.btn-nav-cta:hover { opacity: 0.88; }

/* Wenn Kontakt-Abschnitt aktiv: Button bleibt sichtbar (grüner Akzent statt unsichtbar blau-auf-blau) */
.navbar-nav .nav-link.btn-nav-cta.nav-active {
    color: #fff !important;
    background: var(--brand-green) !important;
}
.navbar-nav .nav-link.btn-nav-cta.nav-active::after { display: none; }

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ─── Hamburger → X Animation ─────────────────────────────── */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity   0.2s  ease,
                width     0.25s ease;
}

/* Öffnen: Bootstrap setzt aria-expanded="true" automatisch */
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Contact Bar ─────────────────────────────────────────── */
#contact-bar {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 0;
    font-size: 0.8rem;
}

.contact-bar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-bar-item i { color: var(--brand-green); font-size: 0.9rem; }
.contact-bar-item strong { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-right: 4px; }
.contact-bar-item a { color: rgba(255,255,255,0.9); }
.contact-bar-item a:hover { color: var(--brand-green); }

/* ─── Hero Carousel ───────────────────────────────────────── */
#hero { padding: 0; margin-top: 0; }

.hero-mobile-caption {
    display: none;
    background: #1a1f36;
    padding: 12px 5% 14px;
    text-align: center;
}
.hero-mobile-title {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
.hero-mobile-title em {
    color: #c8e5a0;
    font-style: italic;
}

.carousel-img {
    width: 100%;
    aspect-ratio: 21 / 8;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #1a1f36;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,31,54,0.72) 0%, rgba(26,31,54,0.35) 60%, rgba(26,31,54,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.carousel-item { position: relative; }
#heroCarousel .carousel-item { background: #1a1f36; }

.hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: #fff;
    max-width: 680px;
    z-index: 2;
    pointer-events: none;
}

.hero-caption a,
.hero-caption button {
    pointer-events: auto;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 16px;
}

.hero-caption h1 { color: #fff; margin-bottom: 20px; }
.hero-caption h2 { color: #fff; margin-bottom: 20px; }
.hero-caption em { color: #c8e5a0; font-style: italic; }

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover { background: rgba(255,255,255,0.3); }

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
}

.carousel-indicators .active { background: var(--brand-green); }

/* ─── Features Bar ────────────────────────────────────────── */
#praxis-features {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid rgba(26,31,54,0.06);
}

.features-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.features-logo-col {
    flex-shrink: 0;
    padding-right: 40px;
    margin-right: 8px;
    border-right: 1px solid rgba(26,31,54,0.1);
}

.features-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 12px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.feature-card:hover { background: var(--brand-blue-lt); }

.feature-icon {
    font-size: 1.8rem;
    color: var(--brand-green);
    line-height: 1;
}

.feature-text {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
}

@media (max-width: 767px) {
    .features-logo-col { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Opening Hours ───────────────────────────────────────── */
#oeffnungszeiten {
    background: var(--bg-oz);
    padding: 40px 0;
    border-top: 1px solid rgba(131, 178, 56, 0.2);
    border-bottom: 1px solid rgba(131, 178, 56, 0.2);
}


.oz-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 16px;
}

.oz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.oz-day { min-width: 120px; }

.oz-day-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.oz-day-time {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.oz-day--today .oz-day-name {
    color: var(--brand-green);
    font-weight: 600;
}

.oz-day--today .oz-day-time {
    font-weight: 500;
    color: var(--text-dark);
}

.oz-day--today {
    position: relative;
    padding-left: 10px;
}

.oz-day--today::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--brand-green);
    border-radius: 2px;
}

.oz-note {
    font-size: 0.82rem;
    color: #8b6914;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    padding: 8px 14px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.oz-vacation-notice {
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.oz-vacation-upcoming {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

.oz-vacation-active {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ─── Gallery (Masonry) ───────────────────────────────────── */
#praxis { background: #fff; }

.masonry-grid {
    columns: 3;
    column-gap: 12px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.35s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 12px;
    background: linear-gradient(to top, rgba(26,31,54,0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.praxis-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.praxis-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.praxis-feature i { color: var(--brand-green); font-size: 1rem; }

/* ─── Team ────────────────────────────────────────────────── */
#team { background: var(--bg-warm); }

.team-card {
    text-align: center;
    padding: 8px;
}

.team-photo {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    display: block;
    margin: 0 auto 16px;
    border: 3px solid var(--brand-blue-lt);
}

.team-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--text-mid);
}

/* ─── Services ────────────────────────────────────────────── */
#leistungen { background: var(--bg-section); }

.services-col-header {
    background: var(--brand-blue);
    color: #fff;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 18px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
}

.service-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid rgba(26,31,54,0.06);
    transition: background 0.2s;
}

.service-item:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.service-item:hover { background: var(--brand-blue-lt); }

.service-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--bg-section);
}

.service-item h4 { font-size: 0.92rem; margin-bottom: 4px; color: var(--text-dark); }
.service-item p { font-size: 0.8rem; color: var(--text-mid); margin: 0; line-height: 1.5; }
.service-link { font-size: 0.78rem; color: var(--brand-blue); margin-top: 4px; display: inline-block; }

/* ─── Kids Teaser ─────────────────────────────────────────── */
.kids-teaser {
    background: var(--brand-blue);
}

.kids-teaser-label { color: rgba(255, 255, 255, 0.6); }

.kids-teaser-title {
    color: #fff;
    margin-bottom: 20px;
}

.kids-teaser-title em { color: #c8e5a0; }

.kids-teaser-lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.kids-teaser-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kids-teaser-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.kids-teaser-highlights li i {
    color: var(--brand-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.kids-teaser-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.kids-teaser-cta {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ─── Health Tips ─────────────────────────────────────────── */
#gesundheit { background: #fff; }

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,31,54,0.06);
    font-size: 0.92rem;
    color: var(--text-dark);
}

.tips-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    margin-top: 9px;
    flex-shrink: 0;
}

.tips-list li:last-child { border-bottom: none; }

.tips-photo-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
}

.tips-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tips-photo-grid img:first-child {
    grid-row: span 2;
}

/* ─── Reviews Carousel ────────────────────────────────────── */
#rezensionen { background: var(--bg-warm); }

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 40px;
}

.review-summary-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.review-summary-label { font-size: 0.88rem; color: var(--text-mid); }
.review-summary-link  { font-size: 0.82rem; color: var(--brand-blue); display: inline-flex; align-items: center; gap: 5px; }
.review-summary-link:hover { color: var(--brand-green); }

#reviewsCarousel { max-width: 720px; margin: 0 auto; }

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 48px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(26,31,54,0.06);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    font-family: var(--serif);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.review-google-link {
    font-size: 0.78rem;
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-google-link i { font-size: 0.85rem; }

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    background: var(--brand-blue-lt);
    top: 50%;
    margin: 0 -24px;
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(185deg);
}

#reviewsCarousel .carousel-indicators {
    position: static;
    margin-top: 24px;
}

#reviewsCarousel .carousel-indicators [data-bs-target] {
    background: rgba(26,31,54,0.2);
}

#reviewsCarousel .carousel-indicators .active { background: var(--brand-blue); }

/* ─── Contact ─────────────────────────────────────────────── */
#kontakt { background: var(--bg-section); }

.kontakt-row {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,31,54,0.08);
    font-size: 0.92rem;
    align-items: flex-start;
}

.kontakt-row:last-child { border-bottom: none; }

.kontakt-row-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    min-width: 80px;
    padding-top: 2px;
}

.map-placeholder {
    background: #e5e9f0;
    border-radius: var(--radius);
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    color: var(--text-mid);
    font-size: 0.9rem;
    padding: 24px;
}

.map-placeholder > i { font-size: 2rem; color: var(--brand-blue); margin-bottom: 8px; }

.map-placeholder .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    width: fit-content;
}

/* ─── Footer ──────────────────────────────────────────────── */
footer {
    background: #e8e3d8;
    border-top: 1px solid rgba(26,31,54,0.1);
    padding: 48px 0 32px;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: var(--text-mid);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand-blue); }

.footer-section-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(26,31,54,0.1);
    margin-top: 32px;
    padding-top: 20px;
    font-size: 0.78rem;
    color: var(--text-mid);
}

/* ─── Fade-Up Animation ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Legal pages (Impressum, Datenschutz) ────────────────── */
.legal-page { padding: 100px 0 60px; }
.legal-page h1 { margin-bottom: 40px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 0.92rem; line-height: 1.75; color: var(--text-mid); }

.credits-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-section);
    border-left: 3px solid var(--brand-green);
    border-radius: var(--radius);
}

.credits-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.credits-icon {
    font-size: 1.4rem;
    color: var(--brand-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.credits-role {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 2px;
}

.credits-name {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-dark);
}

.credits-contact {
    font-size: 0.85rem;
    color: var(--brand-blue);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .carousel-img { aspect-ratio: 16 / 9; }
    .hero-caption { padding: 0 6%; max-width: 100%; }
    .hero-caption h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .masonry-grid { columns: 2; }
    .review-card { padding: 32px 24px; }

    /* Kontakt-Button im Mobile-Menü: nur so breit wie der Inhalt */
    .btn-nav-cta {
        display: inline-block !important;
        margin-top: 4px;
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) {
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next { display: none; }
    .hero-eyebrow,
    .hero-subtitle,
    .hero-actions { display: none; }
    .hero-caption {
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding: 0 5% 52px;
    }
    .hero-caption h1,
    .hero-caption h2 { margin-bottom: 0; }
}

@media (max-width: 575px) {
    .carousel-img { aspect-ratio: 4 / 3; }
    .hero-caption { display: none; }
    .hero-mobile-caption { display: none; }
    #heroCarousel .carousel-indicators { display: none; }
    .hero-overlay { display: none; }
    section, .section-block { padding: 60px 0; }
    .masonry-grid { columns: 1; }
    .oz-grid { flex-direction: column; gap: 16px; }
    .contact-bar-inner { gap: 12px; }
    #reviewsCarousel .carousel-control-prev,
    #reviewsCarousel .carousel-control-next { display: none; }
}

/* ─── Urlaubsnotiz & geänderte Öffnungszeiten ─────────────── */
.oz-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.oz-notice i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.oz-notice--closed {
    background: #fff5f5;
    color: #9b2c2c;
    border: 1px solid #fed7d7;
}
.oz-notice--upcoming {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}
.oz-notice a { color: inherit; font-weight: 500; }
.oz-modified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.oz-day-time--modified { color: var(--brand-blue); }
.oz-modified-hint {
    font-size: 0.68rem;
    color: var(--brand-blue);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ─── Leistungs-Unterseiten ───────────────────────────────── */

/* Service-Link in der Leistungsübersicht */
.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-green);
    margin-top: 4px;
    transition: gap 0.2s;
}
.service-more-link:hover { color: var(--brand-blue); gap: 8px; }

/* Hero */
.leistung-hero {
    background: var(--bg-section);
    padding: 48px 0 56px;
}
.leistung-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-mid);
    margin-bottom: 28px;
}
.leistung-breadcrumb a { color: var(--text-mid); }
.leistung-breadcrumb a:hover { color: var(--brand-green); }
.leistung-breadcrumb i { font-size: 0.7rem; }
.leistung-breadcrumb span { color: var(--text-dark); font-weight: 500; }

.leistung-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-top: 8px;
}

.leistung-hero-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dce8d0;
}
.leistung-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hauptinhalt */
.leistung-content {
    padding: 64px 0 80px;
}
.leistung-section {
    margin-bottom: 56px;
}
.leistung-section:last-child { margin-bottom: 0; }

.leistung-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: 36px;
}
.leistung-subsection-title {
    font-size: 1.1rem;
    font-family: var(--sans);
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 20px;
}
.leistung-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Tipp-Liste */
.leistung-tips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.leistung-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius);
    border-left: 3px solid var(--brand-green);
    font-size: 0.93rem;
    line-height: 1.6;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.leistung-tip i {
    font-size: 1.15rem;
    color: var(--brand-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bild-Wrapper */
.leistung-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    background: #dce8d0;
}
.leistung-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.leistung-img-wrap--4-3 { aspect-ratio: 4 / 3; }
.leistung-img-wrap--sq  { aspect-ratio: 1 / 1; }

/* CTA */
.leistung-cta {
    background: var(--brand-blue);
    color: #fff;
    text-align: center;
    padding: 64px 0;
}
.leistung-cta .section-label { color: rgba(255,255,255,.65); }
.leistung-cta h2 { color: #fff; margin-bottom: 28px; }
.leistung-cta .btn-primary-custom {
    background: #fff;
    color: var(--brand-blue);
    border-color: #fff;
}
.leistung-cta .btn-primary-custom:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}
