/*========================================================
  1. Lokale Schriften (DSGVO-konform, kein Google Fonts CDN)
  Oswald = Überschriften, Roboto = Fließtext
=========================================================*/
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/oswald/Oswald-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/oswald/Oswald-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/oswald/Oswald-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/roboto/Roboto-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/roboto/Roboto-LightItalic.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto/Roboto-Regular.woff2') format('woff2');
}



/* Roboto 500 (Medium) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v32-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/roboto-v32-latin-500italic.woff2') format('woff2');
}

/* Roboto 600 (Semi-Bold) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-v32-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/roboto-v32-latin-600italic.woff2') format('woff2');
}




@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/roboto/Roboto-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/roboto/Roboto-BoldItalic.woff2') format('woff2');
}




/*========================================================
  2. Design-Grundlagen (Schrift, Farben)
  Farbpalette:
    Body-Text:   #6f6f6f
    Headings:    #3a3a3b
    Akzent/Link: #cab396
    Link-Hover:  #b89e7f (dunkles Gold)
    Grau:        #b7b7b7
=========================================================*/
body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #6f6f6f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: 89693f;
}

h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    h2 {
        font-size: 40px;
        line-height: 1.25;
    }
}

h6 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.55;
}

h3 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3.9px;
    line-height: 1.6;
    text-transform: uppercase;
}

.h3-accent {
    color: #cab396;
}

h4 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2.25px;
    color: #3a3a3b;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    h4 {
        font-size: 28px;
    }
}

.h4-orange {
    color: #cab396;
}

.font-accent {
    font-family: 'Oswald', sans-serif;
}

hr {
    border: none;
    opacity: 1;
}

hr.divider {
    width: 60px;
    height: 2px;
    background-color: #b7b7b7;
    border: none;
    margin-top: 20px;
    margin-bottom: 22px;
}

hr.divider-primary {
    background-color: #cab396;
    margin-top: 32px;
}

hr.divider-gray {
    width: 50px !important;
    height: 2px !important;
    background-color: #b7b7b7 !important;
    border: none !important;        /* Entfernt den Standard-Rahmen von BS5 */
    margin-top: 13px !important;    /* Erzwingt  13px */
    margin-bottom: 17px !important; /* Erzwingt deine 17px */
    opacity: 1 !important;          /* Sichtbarkeit der Linie */
    display: block !important;      /* Sicherheit der Margins  */
    margin-left: auto !important;   /* Zentriert die Linie  */
    margin-right: auto !important;
}

/* Section Spacing: 80px / 110px ab md) */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

/* Hintergrund cremfarben */
.bg-cream {
    background-color: #fcfaf6;
    background-image: url('../images/bg-schatten-01.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 60%;
}



@media (min-width: 768px) {
    .section-padding-small {
        padding-top: 50px !important;
    }
}





/* Beige als Hintergrund (ohne Blätter-Grafik) */
.bg-beige {
    background-color: #fcf7f3;
}

/* Angebot-Detail Wrapper (kein Padding, Bild bündig) */
.angebot-detail-wrap {
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fcf7f3;
    padding: 0;
    overflow: hidden;
}

/* Text-Spalte bei Angebot-Details */
.angebot-detail-text {
    padding: 25px 30px;
}

.angebot-detail-text ul {
    list-style: none;
    padding-left: 0;
}

.angebot-detail-text ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.angebot-detail-text ul li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: #cab396;
    font-size: 18px;
    line-height: 1.5;
}

/* Pagination (Angebot-Details) */
.pagination .page-link {
    border-radius: 0;
    border: 1px solid #cab396;
    color: #cab396;
    background-color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    padding: 0;
}

.pagination .page-link:hover {
    background-color: #fcf7f3;
    color: #cab396;
    border-color: #cab396;
}

.pagination .page-item.active .page-link {
    background-color: #cab396;
    border-color: #cab396;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    border-color: #b7b7b7;
    color: #b7b7b7;
    background-color: #fff;
}

.pagination .page-item + .page-item {
    margin-left: 8px;
}

.impressionen-title {
    font-size: 28px;
    font-weight: 400;
}

/* CTA unter Angebot-Detail (großer Abstand nach unten) */
.angebot-detail-cta {
    padding-top: 40px;
    padding-bottom: 120px;
}

/* Angebot-Detail Bild (vollständig sichtbar, nicht abgeschnitten) */
.angebot-detail-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Angebot-Karten (thumbnail-variant-2) */
.angebot-card-img {
    position: relative;
    overflow: hidden;
}

.angebot-card-img img {
    width: 100%;
    display: block;
}

.angebot-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.angebot-card-img:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.angebot-card-img .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.angebot-card-img:hover .btn {
    opacity: 1;
}

.angebot-card-caption {
    background-color: #f7f7f8;
    margin-top: -39px;
    margin-left: 10%;
    margin-right: 10%;
    position: relative;
    z-index: 1;
}

.angebot-card-caption-inner {
    display: inline-block;
    margin: 9px;
    padding: 39px 8%;
    border: 0.5px solid #c6c6c6;
    width: calc(100% - 18px);
}

.angebot-card-caption h6 a {
    color: #3a3a3b;
    text-decoration: none;
}

.angebot-card-caption h6 a:hover {
    color: #cab396;
}

.angebot-card-caption p {
    margin-bottom: 0;
}

/* Button Varianten */
.btn-white {
    color: #fff;
    background-color: transparent;
    border: 0.5px solid #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    padding: 12px 38px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-white:hover {
    color: #3a3a3b;
    background-color: #fff;
    border-color: #fff;
}

.btn-accent {
    color: #fff;
    background-color: #cab396;
    border: 2px solid #cab396;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    padding: 12px 38px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-accent:hover {
    color: #fff;
    background-color: #b89e7f;
    border-color: #b89e7f;
}

.btn-default {
    color: #3a3a3b;
    background-color: transparent;
    border: 1px solid #3a3a3b;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    padding: 12px 38px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-default:hover {
    color: #fff;
    background-color: #3a3a3b;
    border-color: #3a3a3b;
}

/* Back to Top */
#toTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: #cab396;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#toTop:hover {
    background-color: #b89e7f;
}

/* Testimonials */
.testimonial-card {
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.testimonial-header h6 {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #cab396;
}

.testimonial-header small {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #b7b7b7;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-body {
    position: relative;
    border: 1px solid #e4e4e4;
    padding: 30px 25px;
    margin-top: 10px;
}

.testimonial-body::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    transform: rotate(45deg);
}

.testimonial-body p {
    font-size: 12px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .testimonial-body p {
        font-size: 16px;
    }
}

.testimonial-quote {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 70px;
    line-height: 1;
    color: #cab396;
    font-family: Georgia, serif;
}

#testimonialCarousel .carousel-item .row {
    min-height: 320px;
    align-items: flex-start;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    background-color: #cab396;
    color: #fff;
    border-radius: 0;
    font-size: 16px;
}

.testimonial-nav:hover {
    background-color: #b89e7f;
    color: #fff;
}

/* Text-Divider (goldener left-border) */
.divider-text {
    padding-left: 20px;
    border-left: 2px solid #e4e4e4;
}

.divider-text-primary {
    border-left-color: #cab396;
}

/* Container-Breite wie Original (1200px statt BS5-Standard 1140px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/*========================================================
  3. Header & Navbar
=========================================================*/

/* -- Header Top Bar -- */
.header-top {
    border-bottom: none;
}

.header-top .d-flex.gap-5 {
    gap: 4rem !important;
}

.header-contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #6f6f6f;
}

.header-contact-text a {
    color: #6f6f6f;
    text-decoration: none;
}

.header-contact-text a:hover {
    color: #cab396;
}

.header-top .bi {
    font-size: 20px;
    color: #b7b7b7;
}

/* -- Navbar -- */
.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.navbar {
    background-color: #fff !important;
}

.navbar > .container-fluid {
    max-width: 1600px;
    padding-left: 3rem;
    padding-right: 3rem;
}

.navbar.has-topbar > .container-fluid {
    border-top: none;
    position: relative;
}

.navbar.has-topbar > .container-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background-color: #b7b7b7;
}

.navbar.is-stuck > .container-fluid::before {
    display: none;
}

.navbar.is-stuck {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[id] {
    scroll-margin-top: 100px;
}

.navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3a3a3b;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 3px solid transparent;
}

.navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #cab396;
    border-bottom: 3px solid transparent;
}

.navbar-nav .nav-item + .nav-item {
    margin-left: 45px;
}

.dropdown-item {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #cab396;
    color: #fff;
}

#heroCarousel .carousel-item {
    height: 70vh;
    min-height: 400px;
    max-height: 790px;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#heroCarousel .carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#heroCarousel .carousel-caption {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    text-align: center;
}

#heroCarousel .carousel-caption h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 5vw, 70px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

#heroCarousel .carousel-caption p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(14px, 2vw, 20px);
    color: #fff;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

#heroCarousel .carousel-caption .btn {
    border: 0.5px solid #fff;
    border-radius: 0;
    color: #fff;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-caption .btn:hover {
    background: #fff;
    color: #3a3a3b;
}

.text-spaced {
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.gold-symbol {
    max-width: 800px;
}

.intro-text {
    max-width: 100%;
}

.sign-img {
    max-width: 374px;
}

h3 em {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
    color: #3a3a3b;
}

.text-primary-accent {
    color: #cab396;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.team-role {
    color: #b7b7b7;
}

.angebot-meta {
    font-size: 14px;
    margin-top: auto;
}

.angebot-meta small {
    font-size: 14px;
    font-weight: 300;
    color: #b7b7b7 !important;
}

.angebot-meta small i {
    color: #cab396;
    font-size: 16px;
}

.angebot-col {
    display: flex;
    flex-direction: column;
}

.angebot-col h6 a {
    color: #3a3a3b;
    text-decoration: none;
}

.angebot-col h6 a:hover {
    color: #cab396;
}

.angebot-col .angebot-img-wrap {
    overflow: hidden;
}

.angebot-col .angebot-img-wrap img {
    transition: transform 0.4s ease;
}

.angebot-col:hover .angebot-img-wrap img {
    transform: scale(1.05);
}

.overlay-card {
    position: relative;
    overflow: hidden;
}

.overlay-card img {
    width: 100%;
    display: block;
}

.overlay-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.overlay-card-content h5,
.overlay-card-content hr,
.overlay-card-content p {
    transition: transform 0.3s ease;
}

.overlay-card:hover .overlay-card-content h5,
.overlay-card:hover .overlay-card-content hr,
.overlay-card:hover .overlay-card-content p {
    transform: translateY(-15px);
}

.overlay-card-content .btn {
    position: absolute;
    bottom: 30%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay-card:hover .overlay-card-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.overlay-card-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.overlay-card-content h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 15px;
}

.overlay-card-content hr {
    width: 40px;
    border: none;
    border-bottom: 2px solid #fff;
    opacity: 1;
    margin: 0 auto 15px;
}

.overlay-card-content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 20px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.video-play-btn:hover {
    opacity: 1;
    color: #fff;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container-wide {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Kontakt Formular */
.kontakt-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cab396;
    text-transform: none;
    letter-spacing: 0;
}

.kontakt-input {
    border: 1px solid #b7b7b7;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 16px;
    color: #6f6f6f;
}

.kontakt-input:focus {
    border-color: #cab396;
    box-shadow: none;
}

/* Kontakt Icon-Boxen */
.kontakt-icon-box {
    text-align: center;
    padding: 20px;
}

.kontakt-icon-box i {
    font-size: 55px;
    color: #cab396;
}

.kontakt-icon-box h6 {
    letter-spacing: 0.2em;
}

.kontakt-icon-box p {
    color: #6f6f6f;
}

/*========================================================
  4. Parallax / Stats
=========================================================*/
.parallax {
    height: 300px;
    background-image: url(../images/parallax50.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.stats-parallax {
    background-image: url('../images/home-2-04.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.stats-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.stats-parallax .container {
    position: relative;
    z-index: 1;
}

.counter {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}

.counter-title {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
    color: #fff;
}

/*========================================================
  5. Angebote & Leistungen Spalten
=========================================================*/
.index-number {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3.9px;
    color: #b7b7b7;
}

.img-border {
    border: 1px solid #3a3a3b;
}

/*========================================================
  5b. Gallery Hover-Effekt (Lightbox)
=========================================================*/
.gallery-hover {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.gallery-hover img {
    transition: transform 0.4s ease;
}

.gallery-hover:hover img {
    transform: scale(1.05);
}

.gallery-hover::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-hover:hover::before {
    opacity: 1;
}

.gallery-hover::after {
    content: '\f52a';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 59, 0.45);
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-hover:hover::after {
    opacity: 1;
}

/*========================================================
  5c. Links & Listen
=========================================================*/
main ul:not(.pagination) {
    list-style: none;
    padding-left: 0;
}

main ul:not(.pagination) li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

main ul:not(.pagination) li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: #cab396;
    font-size: 18px;
    line-height: 1.5;
}

a {
    color: #cab396;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn {
    border-radius: 0;
}

a:hover {
    color: #b89e7f;
}

main p a,
main li a {
    position: relative;
    display: inline-block;
}

main p a::after,
main li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #b89e7f;
    transition: width 0.3s ease;
}

main p a:hover::after,
main li a:hover::after {
    width: 100%;
}

/*========================================================
  5d. Buttons
=========================================================*/
.btn-accent {
    background-color: #cab396;
    color: #fff;
    border: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-accent:hover {
    background-color: #b89e7f;
    color: #fff;
}

.btn-outline-accent {
    border: 2px solid #cab396;
    color: #cab396;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-outline-accent:hover {
    background-color: #cab396;
    color: #fff;
}

/*========================================================
  6. Footer
=========================================================*/

/* Footer Hauptbereich */
.footer-main {
    background-color: #333335;
    color: #b7b7b7;
    padding: 80px 0;
}

@media (min-width: 992px) {
    .footer-main {
        padding: 110px 0;
    }
}

.footer-container {
    padding-left: 8%;
    padding-right: 8%;
}

.footer-main h6 {
    color: #fff;
    margin-bottom: 0;
}

.footer-main h6 a {
    color: #cab396;
    text-decoration: none;
}

.footer-main h6 a:hover {
    color: #fff;
}

.footer-main a {
    color: #cab396;
    text-decoration: none;
}

.footer-main a:hover {
    color: #fff;
}

/* Kontakt-Liste */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #b7b7b7;
}

.footer-contact-list li i {
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li a {
    color: #b7b7b7;
}

.footer-contact-list li a:hover {
    color: #cab396;
}

/* Footer Posts */
.footer-post-img {
    flex-shrink: 0;
    object-fit: cover;
}

.footer-post small {
    color: #b7b7b7 !important;
}

.footer-post p {
    font-size: 16px;
}

.footer-post p a {
    font-size: 16px;
}

.footer-post {
    max-width: 320px;
}

/* Social Liste */
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-list li {
    margin-bottom: 22px;
}

.footer-social-list li i {
    color: #fff;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Quick Links */
.footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links li {
    margin-bottom: 22px;
    padding-left: 15px;
    position: relative;
}

.footer-quick-links li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: #b7b7b7;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #29292a;
    padding: 18px 0;
    color: #6f6f6f;
    font-size: 16px;
}

.footer-bottom a {
    color: #6f6f6f;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #cab396;
}

/*========================================================
  6b. Definition-Listen (Datenschutz, Impressum)
=========================================================*/
dl {
    display: block !important;
}

dl dt {
    float: none !important;
    width: 100% !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

dl dd {
    margin-left: 0 !important;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.legal-content {
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .legal-content {
        padding-top: 5rem;
    }
}

/*========================================================
  7. Mobile Anpassungen
=========================================================*/
@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: none;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-image: none;
        border-bottom: none;
        color: #cab396;
    }
    .navbar-nav .nav-item + .nav-item {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    main .col-md-4 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    header img {
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    #heroCarousel .carousel-item {
        height: 50vh;
        min-height: 300px;
    }

    #heroCarousel .carousel-caption {
        left: 5%;
        right: 5%;
    }

    #heroCarousel .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .overlay-card-content .btn {
        opacity: 1;
        transform: translateY(0);
        position: static;
        margin-top: 15px;
    }

    .overlay-card img {
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .overlay-card-content p {
        display: none;
    }

    .navbar > .container-fluid {
        justify-content: space-between;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .footer-main h6 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-main p,
    .footer-main a,
    .footer-main span,
    .footer-main small {
        text-align: left;
    }

    .footer-main .col-sm-6,
    .footer-main .col-sm-3 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-main .row > div {
        margin-bottom: 4rem !important;
    }

    .footer-main .row > div:last-child {
        margin-bottom: 0 !important;
    }

    /* Mehr Abstand zwischen Bild und Text - mobil */
    .order-1.mb-4 {
        margin-bottom: 2.5rem !important;
    }

    h6 {
        margin-bottom: 1rem;
    }

    h1, h2, h3, h4, h5, h6, p, hr {
        text-align: center;
    }

    .divider-text {
        padding-left: 0;
        border-left: none;
    }

    .btn-default,
    .btn-accent {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    hr {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    section.py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    h3 {
        margin-bottom: 0.5rem;
    }

    .col-md-3 {
        margin-bottom: 2rem;
    }
}





/* Tabellen */
.master-liste .col-md-3 {
  padding-bottom: 15px; /* Abstand zur Zeile darunter */
  min-height: 50px;     /* Sorgt dafür, dass alles bündig bleibt, auch bei 2 Zeilen */
}

/* regelt den Punkt für ALLE Begriffe gleichzeitig */
.fetter-punkt {
  font-size: 3rem;
  color: #d4a373;       /* Farbe */
  margin-right: 12px;
  line-height: 0;
  display: inline-block;
  
  /* HIER JUSTIEREN: Schiebt den Punkt neben die 1. Zeile */
  transform: translateY(14px); 
}

/* Das regelt den Text */
.master-liste p {
  margin: 0;
  line-height: 1.2;
  font-size: 1.0rem; /* Probiere 0.95rem oder 0.9rem aus */
  text-align: left;
}




h1, h2, h3, h4, h5, h6 {
    color: #89693f !important;
}

strong {
    display: inline !important;
}




hr {
    display: block !important;
    unicode-bidi: isolate !important;
    margin: 2em auto !important;
    overflow: visible !important; /* Wichtig, falls es versteckt wird */
    border-style: solid !important;
    border-width: 1px 0 0 0 !important;
    border-color: #89693f !important;
    width: 100% !important;
    height: 0 !important;
	margin-top: 50px !important;    /* Abstand nach oben */
    margin-bottom: 80px !important;
}



.section-padding-small {
    padding-top: 40px !important;
}


.section-padding-small-white {
	
	 padding-top: 40px !important;
}



	
	/* Spezielle Anpassung nur für die Sektion Vorbereitung - Seite Ablauf und Honorare*/
	

	

/*  Abstände innerhalb der Text-Spalte */

section[id^="healing-"] .angebot-detail-text h2 {
    margin-bottom: 25px !important;
}

section[id^="healing-"] .angebot-detail-text hr {
    margin-top: 5px !important;
    margin-bottom: 25px !important;
}

section[id^="healing-"] .angebot-detail-text p {
    margin-top: 0px !important;
    margin-bottom: 25px !important;
}

section[id^="healing-"] {
    padding-top: 50px !important; /* Abstand zur Sektion darüber */
    padding-bottom: 50px !important;/* Abstand zur Sektion darunter */
}






/* --- LOGO  --- */

.main-logo {
    height: 65px !important;
    width: auto !important;
    display: block;
    /* Schärfe-Optimierung */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    /* Verhindert "Matsch" auf Retina-Displays */
    transform: translateZ(0);
}

/* Logo in der mobilen Navigation */
.main-logo-mobile {
    height: 40px !important;
    width: auto !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
}

/* Den Container-Bereich (navbar-brand) säubern */
.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}






/* Überschrift im Slider  Weiß */

div#heroCarousel.carousel .carousel-inner .carousel-item .carousel-caption h2 {
    color: #ffffff !important;
}


/* Text im Slider Bold setzen */

div#heroCarousel.carousel .carousel-inner .carousel-item .carousel-caption p {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important; /* Wenn zu dünn, hier Stärke erhöhen */
    font-style: normal !important; /* Auf 'italic' ändern, falls gewünscht */
    line-height: 1.7 !important; 
    color: #ffffff !important;
    font-size: 20px !important;
}



/* Schiebt den Textblock im Slider nach oben  */
	
#heroCarousel .carousel-caption {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Inhalt wird oben gehalten... */
    top: 0 !important;
    height: 100% !important;                /* ...innerhalb der vollen 790px Höhe */
    bottom: auto !important;
    padding-top: 40px !important;         /* Hier Text ggf. weiter nach unten schieben! */
}
	
  
  
  /* 2. Der neue Button-Block  */
#heroCarousel .carousel-caption .btn {
    display: inline-block !important;
    width: auto !important;
    align-self: center !important;
    margin-top: 25px !important;      /* Abstand zum Text */
    font-size: 18px !important;       /* Schriftgröße */
    font-weight: 500 !important;      /* Schrift  kräftiger */
    padding: 10px 30px !important;    /* Button insgesamt größer */
    text-transform: uppercase;        /* Text Großbuchstaben  */
}
  
  
 

/* 1. ÄNDERN DER SLIDER- HÖHE */
#heroCarousel .carousel-item {
    height: 790px !important;
}

#heroCarousel .carousel-item img {
    height: 790px !important;
    object-fit: cover;
}

/* 2. Position des gesamten Textblocks im Slider */
#heroCarousel .carousel-caption {
    bottom: auto !important;
    top: 35% !important; /* Hier Feinjustierung der Höhe */
    transform: translateY(-20%) !important;
}

/* 3. Die h2 Überschrift im Slider auf Weiß */
#heroCarousel .carousel-caption h2 {
    color: #ffffff !important;
}

/* 4. Der Text (p) im Slider mit der neuen 500er/600er Stärke */
div#heroCarousel.carousel .carousel-inner .carousel-item .carousel-caption p {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important; /* oder 600 */
    font-style: normal !important;
    line-height: 1.7 !important; 
    color: #ffffff !important;
    font-size: 18px !important;
}



/* 4. LOGO SCHÄRFEN */

.navbar-brand img {
    height: 60px !important;
    width: auto !important;
    /* Verhindert das "Vermatschen" durch den Browser-Algorithmus */
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;
    /* Hardware-Beschleunigung für das Rendering */
    transform: translateZ(0); 
}



/* Footer-Überschriften auf Weiß setzen */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.footer-area h1, .footer-area h2, .footer-area h3, .footer-area h4, .footer-area h5, .footer-area h6,
.footer-widget .widget-title {
    color: #ffffff !important;
}





/* Google-Maps ausgrauen */
iframe[src*="google.com/maps"] {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

/* Farbig, wenn man mit der Maus drüberfährt */
iframe[src*="google.com/maps"]:hover {
    filter: grayscale(0%);
}

}

/* Verhindert das Springen der Pfeile auf dem Handy */
@media (max-width: 767px) {
    /* 1. gesamter Slider-Container  feste Höhe  */
    #testimonial-carousel, 
    .carousel-inner {
        height: 550px !important; /* Wert  längste Karte  */
    }

    /* 2. Die Karten innerhalb dieser Höhe ausrichten */
    .testimonial-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* 3. Die Pfeile absolut zum fixen Container positionieren */
    .carousel-control-prev, 
    .carousel-control-next {
        position: absolute !important;
        top: 250px !important; /* Fester Abstand von oben in Pixeln statt Prozent */
        height: 50px !important;
        transform: none !important; /* Schaltet die Berechnung aus */
        z-index: 99 !important;
    }
}


@media (max-width: 767px) {
    header img.w-100 {
        width: auto !important;      /* Erlaubt dem Bild, breiter als das Handy zu sein */
        min-width: 150% !important;  /* Vergrößert das Bild */
        height: 350px !important;    /*  Slider-Höhe mobil */
        object-fit: cover !important;
        object-position: left center !important; /* Fokus links */
        margin-left: 0 !important;
    }
}


/* Zentriert jedes Bild, das in einem "text-center" Bereich steht */
img.gold-symbol {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    /* Hier die Bremse lösen: */
    max-width: 100% !important; 
    width: auto !important; 
}



/* 1. HANDY RETTER LETTER SPACING */

@media (max-width: 767px) {
    h1 {
        font-size: 1.2rem !important; /* Sehr klein, damit die Lücken Platz haben */
        white-space: nowrap !important; /* Zwingt alles in eine Zeile */
        display: block !important;
    }
}




/* Schärfe für das Logo */
.navbar-brand img, 
.header-top img {
    height: 65px !important;
    width: auto !important;
    display: block;
    /* Nur eine ganz sanfte Optimierung für Retina-Displays */
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}