/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 11.10.2025, 19:03:19
    Author     : R.R
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: currentColor;
}

html {
  font-family: 'Prompt', sans-serif;
  color: #999;
  background-color: #FFF;
  font-size: 16px;
  /* Sicherstellen, dass das Grundgerüst die volle Höhe kennt */
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  background-color: #FFFFFF;
}

.grey { 
    background-image: linear-gradient(to bottom, #FFFFFF, #F2EDE4);
    min-height: 65vh;
}

/* NUR für Mobilgeräte (Smartphone & kleine Tablets) */
@media (max-width: 767px) {
    .grey {
        /* Das Weiss endet hart bei 15% der Höhe und geht dann sofort ins Beige über */
        background-image: linear-gradient(to bottom, #FFFFFF 0%, #F2EDE4 10%);
        
        /* Alternativ mit festen Pixeln, falls Prozentwerte auf langen Seiten zu stark strecken: */
        /* background-image: linear-gradient(to bottom, #FFFFFF 100px, #F2EDE4 400px); */
        
        /* Falls nötig, kannst du hier mobil auch die Mindesthöhe reduzieren */
        min-height: 40vh; 
    }
}

header {
    margin-bottom: 1.5rem;
}

img {
  width: 100%;
}  

nav {
    border-top: solid 1px #DDD;
    border-bottom: solid 1px #DDD;
    margin: auto;
}

.logo {
  height: 70px; /* Oder width: 120px; */
  width: auto;
  transition: height 0.3s ease; /* Macht den Übergang geschmeidig */
}

.nav-item {
    font-size: 1.4rem;
}

.me-auto {
    margin-top:1em;
}

@media (min-width: 576px) {
    .dropdown:hover .dropdown-menu {
        display:block;
        margin-top: 0
    }
    .logo {
        height: 100%; /* Oder width: 120px; */
        width: auto;
        transition: height 0.3s ease; /* Macht den Übergang geschmeidig */
    } 
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 75% !important;
    }
    .offcanvas { 
        min-width: 25%; 
    }
}

@media screen and (min-width: 1350px) {
    .container {
        max-width: 70% !important;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 55% !important;
    }
}

.container-full-width {
    max-width: 100% !important;
    transition: 600ms all;
}

.container-full-width nav .container-fluid {
    margin-left: 2em;
}

.menu {
    line-height: 20px;
    letter-spacing: 1px;
    width: 100%;
    transition: 400ms all;
}

.sticky {
    position: fixed;
    top: 0;
}

/* Bio List Portrait*/
.bio-list ul {
    padding-left: 0.9rem; /* Standard ist oft 2rem oder mehr */
    margin-left: 0;
}

.bio-list li {
    margin-bottom: 0.5rem;
}

#gallery-nav {
    position: relative;
    top: 50px;
    background-color: #bbb;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%; /* optional für responsive */
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 1em;
    width: 99%;
    color: white;
    font-weight: bold;
    padding: 5px;
    /* Gradient-Hintergrund */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,  /* Weiß mit 0.3 Opazität unten */
        rgba(255, 255, 255, 0) 100%   /* komplett transparent oben */
    );
}

.vbox-inline {
    width: auto !important;
    max-width: 95% !important;
    background: transparent !important;
}

/* Sicherstellen, dass die Inline-Box nicht zu schmal wird */
/*
.vbox-inline {
    background: transparent !important;
    box-shadow: none !important;
}

.vbox-inline img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
*/
.vbox-inline .vbox-content {
    max-width: 95% !important;
    width: auto !important;
    background: transparent !important;
}

/* Optional: Abstand zwischen den Bildern auf Mobile optimieren */
@media (max-width: 767px) {
    .gallery-popup-content .d-flex {
        gap: 20px !important;
    }
}

/* Style für die Bildunterschriften in der Lightbox */
figcaption {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    /* Optional: Hintergrund, falls das Bild sehr hell ist */
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
}

.uniform__potty {
    position: absolute;
    left: -9999px;
}

/* Der Link-Container */
/* 1. DER LINK-CONTAINER (Muss relative sein!) */
.video-link {
    position: relative; /* Das ist der Anker für das Overlay */
    display: block;     /* Macht den Link zu einem Block-Element */
    width: 100%;
    height: 100%;
}

/* 2. DAS OVERLAY (Muss sich exakt über diesen Link legen) */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Flexbox für die perfekte Zentrierung im sichtbaren Bereich */
    display: flex !important; 
    align-items: center;      /* Zentriert vertikal */
    justify-content: center;   /* Zentriert horizontal */
    background: rgba(0, 0, 0, 0.2); 
    z-index: 10;              /* Bringt das Overlay in den Vordergrund */
    pointer-events: none;     /* Verhindert, dass das Overlay den Klick blockiert */
}

/* 3. DER PLAY-BUTTON SELBST */
.play-icon {
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 24px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-indent: 4px; /* Optischer Ausgleich für das Dreieck */
}

/* 4. DAS VORSCHAUBILD (Füllt den Link aus) */
.video-link img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Container-Verhalten */
.google-maps-wrapper {
  position: relative;
  width: 100%;
}

/* Das schwebende Widget */
.google-places-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  padding: 16px;
  font-family: Roboto, Arial, sans-serif;
  z-index: 10;
  max-width: 280px;
}

/* Typografie im Google-Stil */
.google-places-card .company-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px 0;
  color: #202124;
}

.google-places-card .company-address {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.4;
  margin-top: 8px;
  border-top: 1px solid #f0f0f0;
  padding-top: 8px;
}

.google-places-card .rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.google-places-card .rating-num {
  font-weight: bold;
  color: #e37400;
}

.google-places-card .stars {
  letter-spacing: -2px;
}

.google-places-card .review-count {
  color: #1a73e8;
  cursor: pointer;
}

.google-places-card .google-tagline {
  font-size: 12px;
  color: #70757a;
  margin: 2px 0 12px 0;
}

.google-places-card .directions-btn:hover {
  background-color: #1557b0;
}

/* RESPONSIVE WEICHE FÜR MOBILGERÄTE */
/* RESPONSIVE STEUERUNG FÜR DIE CUSTOM-INFO-BOX */

@media (max-width: 767px) {
  /* Auf Mobilgeräten: Box anzeigen und sauber unter/über der Karte platzieren */
  .google-places-card {
    display: block;
    position: relative;
    margin: 0 auto 15px auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  /* Auf Desktop: Eigenes Widget komplett ausblenden! */
  /* Hier übernimmt automatisch die Standard-Box von Google im Iframe. */
  .google-places-card {
    display: none !important;
  }
}

/* Custom Accordion Styling 2026 */
#faqAccordion {
    --accent-color: #4a5568; /* Ein edles Anthrazit oder deine Markenfarbe */
    --bg-light: #f8fafc;
    border: none;
}

#faqAccordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important; /* Abgerundete Ecken */
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover-Effekt für das gesamte Item */
#faqAccordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Der Button im Normalzustand */
#faqAccordion .accordion-button {
    background-color: #fbfbfb;
    color: #1a202c;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

/* Der Button wenn er offen ist */
#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #fbfbfb;
    color: var(--accent-color);
    box-shadow: none; /* Entfernt den blauen Bootstrap-Schatten */
}

/* Fokus-Zustand säubern */
#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
    border-color: rgba(0,0,0,0.1);
}

/* Das Icon (Pfeil) anpassen */
#faqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='www.w3.org' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Elastische Animation */
}

/* Der Body (Inhalt) */
#faqAccordion .accordion-body {
    background-color: #f8f8f8;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    color: #4a5568;
}

/* Subtile Trennlinie nur wenn offen */
#faqAccordion .accordion-collapse.show::before {
    content: "";
    display: block;
    margin: 0 1.5rem;
    border-top: 1px solid #edf2f7;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.panel p {
  padding: 8px 0;
}

/* Responsive image gallery rules begin */
.grid-container {
  columns: 3 220px;
  column-gap: 0.3rem;
  width: 100%;
  margin: 0 auto;
}

.grid-container div {
  width: 160px;
  margin: 0 0.4rem 0.1rem 0;
  display: inline-block;
  width: 100%;
  transition: all 0.25s ease-in-out;
}

.grid-container div:hover {
  border-color: coral;
}

.grid-container div img {
  width: 100%;
  transition: all 0.25s ease-in-out;
}

.grid-container div p {
  margin: 3px 0;
  padding: 0;
  text-align: center;
  font-style: italic;
}

.testimonial-card {
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 20px;
  position: relative;
  overflow: hidden; /* Verhindert, dass das Quote-Icon übersteht */
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Das große Anführungszeichen oben rechts */
.quote-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3.5rem;
  color: #e9ecef; /* Sehr helles Grau */
  line-height: 1;
  font-family: 'Georgia', serif;
  pointer-events: none; /* Klicks gehen durch das Icon hindurch */
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.85rem;
}

.testimonial-author {
  border-top: 1px solid #f1f3f5;
  padding-top: 15px;
}