/*
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, body {
  font-family: 'Prompt', sans-serif;
  color: #999;
  background-color: #FFF;
  font-size: 16px;
}

.grey { 
    background-image: linear-gradient(to top, #E4D5B7, #FFF); /* #CDCDCD */
    
    min-height: 80%;
}

header {
    margin-bottom: 1.5rem;
    background-color: #FFF;
}

img {
  width: 100%;
}  

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

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

@media (min-width: 576px) {
    .dropdown:hover .dropdown-menu {
        display:block;
        margin-top: 0
    }
}

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

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

@media screen and (min-width: 1500px) {
    .container {
        max-width: 60% !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;
}

#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);
}

/* 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;
}

/* 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: white;
    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: white;
    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: white;
    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;
}
