/* Benutzerdefinierte CSS-Variablen für Farben */
:root {
    --chaoshof-dark: #555555;
    --chaoshof-light: #fffbfb;
    --chaoshof-accent: #f6d71a;
    --chaoshof-accent-darker: #e0c418;
    --chaoshof-primary: #f6d71a;
    --chaoshof-shop-accent: #FF7A7B;
    /* Akzentfarbe als primäre Button-Farbe */
    --bs-primary: var(--chaoshof-primary);
    /* Bootstrap-Variable überschreiben */
    --bs-primary-rgb: 246, 215, 26;
    /* Passende RGB-Werte für Bootstrap */

    --bs-btn-hover-bg: var(--chaoshof-accent-darker);

    /* Höhenvariablen für bessere Wartbarkeit */
    --announcement-height: 2.5rem;
    --navbar-initial-padding-y: 0.5rem;
    --navbar-shrink-padding-y: 0.25rem;
    --navbar-logo-initial-height: 6rem;
    --navbar-logo-shrink-height: 4.5rem;

    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Raleway', sans-serif;



}

body {
    font-family: var(--font-body);
    background-color: var(--chaoshof-light);
}

main {
    padding-top: 100px;
}

.btn-primary {
    /* --- Grundfarben --- */
    --bs-btn-bg: var(--chaoshof-accent);
    --bs-btn-border-color: var(--chaoshof-accent);
    --bs-btn-color: var(--chaoshof-dark);

    /* --- Hover & Fokus Zustand --- */
    --bs-btn-hover-bg: var(--chaoshof-accent-darker);
    --bs-btn-hover-border-color: var(--chaoshof-accent-darker);
    --bs-btn-hover-color: var(--chaoshof-dark);

    /* --- Geklickt / "Active" Zustand --- */
    --bs-btn-active-bg: var(--chaoshof-accent-darker);
    --bs-btn-active-border-color: var(--chaoshof-accent-darker);
    --bs-btn-active-color: var(--chaoshof-dark);

    /* --- Farbe des Fokus-Rings --- */
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);

    /* --- NEU: Deaktivierter Zustand (während des Sendens) --- */
    --bs-btn-disabled-bg: var(--chaoshof-accent-darker);
    --bs-btn-disabled-border-color: var(--chaoshof-accent-darker);
    --bs-btn-disabled-color: var(--chaoshof-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--chaoshof-light);
}

/* NEU: Globale Link-Styles */
a {
    color: var(--chaoshof-accent);
    text-decoration: none;
    /* Unterstreichung standardmäßig entfernen */
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--chaoshof-accent-darker);
}

/* NEU: Globale Checkbox-Styles */
.form-check-input:checked {
    background-color: var(--chaoshof-accent);
    border-color: var(--chaoshof-accent-darker);
}

/* Sicherstellen, dass auch der Fokus-Schatten die Akzentfarbe hat */
.form-check-input:focus {
    border-color: var(--chaoshof-accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Spezifische Anpassung, damit Links in dunklen Bereichen weiß bleiben */
.socials-section a,
.site-footer a,
#announcement-bar a {
    /* Diese Regel stellt sicher, dass Links auf dunklem Hintergrund lesbar bleiben */
    /* und nicht die globale Akzentfarbe annehmen. */
    color: inherit;
    /* Erbt die Farbe vom Elternelement */
}

.btn-primary {
    background-color: var(--chaoshof-primary);
    border-color: var(--chaoshof-primary);
    color: var(--chaoshof-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--chaoshof-accent-darker);
    /* Etwas dunklere Akzentfarbe */
    border-color: var(--chaoshof-accent-darker);
    color: var(--chaoshof-dark);
}

.btn-primary:active {
    background-color: #d3b516 !important;
    /* Noch dunkler, !important um Bootstrap sicher zu überschreiben */
    border-color: #d3b516 !important;
    color: var(--chaoshof-dark) !important;
    box-shadow: none !important;
    /* Blauen Schatten entfernen */
}


/* Announcement Bar Styles */
#announcement-bar {
    background-color: #f57474;
    color: var(--chaoshof-light);
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1040;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

#announcement-bar p {
    white-space: nowrap;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Desktop/Mobile Text Toggle */
.announcement-mobile {
    display: none;
}

.announcement-desktop {
    display: inline;
}

/* Tablet & Mobile: Kürzerer Text ab 1200px */
@media (max-width: 1199px) {
    #announcement-bar {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    .announcement-mobile {
        display: inline;
    }
    .announcement-desktop {
        display: none;
    }
}

/* Extra kleine Screens */
@media (max-width: 576px) {
    #announcement-bar {
        font-size: 0.7rem;
    }
}

/* Benutzerdefinierte Navbar-Stile */
.custom-navbar {
    background-color: var(--chaoshof-light);
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, top 0.3s ease-in-out;
    padding-top: var(--navbar-initial-padding-y);
    padding-bottom: var(--navbar-initial-padding-y);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    top: var(--announcement-height);
    z-index: 1050;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: var(--chaoshof-dark);
    transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    position: relative;
    overflow: hidden;
}

.custom-navbar .logo-img {
    height: var(--navbar-logo-initial-height);
    transition: height 0.3s ease-in-out;
}

.custom-navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 0;
    background-color: var(--chaoshof-accent);
    transition: width 0.3s ease-out;
}

.custom-navbar .nav-link:hover::before,
.custom-navbar .nav-link.active::before {
    width: 100%;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--chaoshof-dark);
    /* Textfarbe bleibt dunkel für besseren Kontrast */
    background-color: transparent;
    border-radius: 0;
}

.custom-navbar .navbar-toggler {
    border-color: var(--chaoshof-dark);
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
    outline: 0;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-navbar .dropdown-menu {
    background-color: var(--chaoshof-light);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-navbar .dropdown-item {
    color: var(--chaoshof-dark);
    border-radius: 0.3rem;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s ease-in-out;
}

.custom-navbar .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--chaoshof-dark);
}

.custom-navbar .dropdown-item.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--chaoshof-dark);
    font-weight: 600;
}

.custom-navbar.navbar-shrink {
    padding-top: var(--navbar-shrink-padding-y);
    padding-bottom: var(--navbar-shrink-padding-y);
    top: 0;
}

.custom-navbar.navbar-shrink .nav-link {
    font-size: 0.9rem;
}

.custom-navbar.navbar-shrink .logo-img {
    height: var(--navbar-logo-shrink-height);
}

@media (min-width: 992px) {
    .custom-navbar .navbar-brand.d-lg-none {
        display: none !important;
    }

    .custom-navbar .navbar-brand.d-none.d-lg-block {
        display: block !important;
    }
}

::selection {
    background-color: var(--chaoshof-shop-accent);
}

::-moz-selection {
    background-color: var(--chaoshof-shop-accent);
}

.btn:focus,
.form-control:focus,
.nav-link:focus,
.dropdown-toggle:focus,
.dropdown-item:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
}

/* --- Hero Section Styles --- */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bgvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -99;
}

.hero-logo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.scroll-down {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.scroll-down a {
    text-decoration: none;
    transition: opacity 0.3s;
    color: var(--chaoshof-light);
}

.scroll-down a:hover {
    opacity: 0.8;
}

.scroll-down p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- About (Parallax) & Philosophy Section Styles --- */
.about-section-parallax {
    background-image: url('../img/prinzi.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0;
    position: relative;
}

.about-section-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
}

.parallax-content-box {
    background-color: rgba(255, 251, 251, 0.95);
    padding: 3rem;
    border-top: 8px solid var(--chaoshof-accent);
    border-left: 8px solid var(--chaoshof-accent);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.parallax-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 251, 251, 0.95);
    border-radius: 0 0 100% 0;
}

/* ======= Philosophie Sektion Styles (Typografischer Fokus) ======= #f8f9fa */
.philosophy-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-accent);
}

.value-card {
    background-color: var(--chaoshof-light);
    padding: 2.5rem;
    border-radius: 0.5rem;
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Verhindert, dass die große Nummer übersteht */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.value-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.value-card h4,
.value-card p {
    position: relative;
    z-index: 2;
    /* Stellt sicher, dass der Text über der Nummer liegt */
}

.value-card h4 {
    margin-bottom: 1rem;
}

/* ======= Team Sektion Styles (Polaroid mit Overlay) ======= */
.team-polaroid-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-light);
}

.team-polaroid {
    background-color: #fff;
    padding: 1rem;
    padding-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
}

/* Polaroid Rotationen für authentischen Look */
.rotate-left {
    transform: rotate(-3deg);
}

.rotate-right {
    transform: rotate(3deg);
}

.rotate-left-small {
    transform: rotate(-2deg);
}

.rotate-right-small {
    transform: rotate(2deg);
}

/* Hover-Effekt: Polaroid richtet sich gerade aus und hebt sich */
.team-polaroid:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.polaroid-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0.25rem;
}

.polaroid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-polaroid:hover .polaroid-photo img {
    transform: scale(1.1);
}

/* Overlay mit Team-Informationen */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-polaroid:hover .team-overlay {
    opacity: 1;
}

.team-info {
    color: white;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-polaroid:hover .team-info {
    transform: translateY(0);
}

.team-info h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chaoshof-accent);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.team-description {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Polaroid Caption (Name unten) */
.polaroid-caption {
    text-align: center;
    font-family: 'Caveat', cursive, var(--font-headings);
    font-size: 1.5rem;
    padding-top: 0.75rem;
    color: var(--chaoshof-dark);
    font-weight: 500;
}

/* Responsive Anpassungen */
@media (max-width: 991.98px) {
    .team-polaroid {
        padding-bottom: 2.5rem;
    }
    
    .team-info h3 {
        font-size: 1.5rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .team-polaroid {
        /* Auf Mobile keine Rotation für bessere Lesbarkeit */
        transform: rotate(0deg) !important;
    }
    
    .team-polaroid:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }
    
    /* Auf Mobile: Overlay immer leicht sichtbar */
    .team-overlay {
        opacity: 0.3;
    }
    
    .team-polaroid:hover .team-overlay {
        opacity: 1;
    }
}

/* ======= Erlebnisse Sektion Styles (Bilder-Gitter) ======= */
.partner-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-light);
}

.logo-scroller {
    max-height: 1100px;
    margin: auto;
    overflow: hidden;
    /* Maske für weiche Kanten links und rechts */
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.logo-list {
    display: flex;
    width: max-content;
    /* Passt die Breite an den Inhalt an */
    flex-wrap: nowrap;
    animation: scroll 30s linear infinite;
}

/* Animation anhalten bei Hover */
.logo-scroller:hover .logo-list {
    animation-play-state: paused;
}

.partner-logo {
    display: block;
    max-height: 70px;
    /* Einheitliche Höhe für alle Logos */
    width: auto;
    margin: 0 2.5rem;
    /* Abstand zwischen den Logos */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Die Keyframe-Animation für das Scrollen */
@keyframes scroll {
    to {
        /* Bewegt die Liste um die Hälfte ihrer Breite nach links */
        transform: translateX(calc(-50%));
    }
}

/* ======= Socials Sektion Styles ======= */
.socials-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-dark);
    color: var(--chaoshof-light);
}

.social-icons-wrapper .social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--chaoshof-light);
    font-size: 1.5rem;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.social-icons-wrapper .social-icon-link:hover {
    background-color: var(--chaoshof-accent);
    color: var(--chaoshof-dark);
    transform: translateY(-5px);
}

/* ======= Newsletter Sektion Styles ======= */
.newsletter-section {
    position: relative;
    padding: 8rem 0;
    color: var(--chaoshof-light);
    background-image: url('../img/sonnenblume_newsletter.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax-Effekt */
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dunkles Overlay für Lesbarkeit */
}

.newsletter-section .container {
    position: relative;
    /* Stellt sicher, dass der Inhalt über dem Overlay liegt */
    z-index: 2;
}

.newsletter-section .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    color: var(--chaoshof-dark);
}

.newsletter-section .form-control::placeholder {
    color: #6c757d;
}

.newsletter-section .form-control:focus {
    background-color: var(--chaoshof-light);
    border-color: var(--chaoshof-accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
}

/* ======= Footer Styles (ANGEPASST an vorherigen Stil) ======= */
.site-footer {
    background-color: var(--chaoshof-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0 0;
    /* Oben Padding, unten übernimmt die .footer-bottom Leiste */
    font-size: 0.9rem;
}

/* Entfernt, um den zweireihigen Look aufzuheben */
/*
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
*/

.footer-top {
    padding-bottom: 3rem;
    /* Abstand vom Logo zu den Links */
}

.footer-main {
    padding: 0;
    /* Kein extra Padding mehr nötig */
}

.site-footer h4 {
    color: var(--chaoshof-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    /* Platz für den Unterstrich */
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--chaoshof-accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* WIEDER DA: Der Hover-Effekt für die Links */
.footer-links a:hover {
    color: var(--chaoshof-light);
    padding-left: 5px;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--chaoshof-accent);
    text-decoration: underline;
}

.footer-bottom {
    padding: 1.5rem 0;
    margin-top: 3rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--chaoshof-light);
    text-decoration: none;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--chaoshof-accent);
    color: var(--chaoshof-dark);
    transform: translateY(-3px);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ======= Unsere Tiere Grid Sektion ======= */
.animal-grid-card {
    position: relative;
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.animal-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.animal-grid-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.animal-grid-card:hover img {
    transform: scale(1.1);
}

.animal-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
    transition: background 0.3s ease;
}

.animal-grid-card:hover .animal-grid-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%);
}

.animal-grid-overlay h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: white;
}

.animal-grid-overlay p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animal-grid-card:hover .animal-grid-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.animal-grid-overlay .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    align-self: flex-start;
}

.animal-grid-card:hover .animal-grid-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767.98px) {
    .animal-grid-card {
        height: 350px;
    }
    
    .animal-grid-overlay h3 {
        font-size: 1.75rem;
    }
    
    .animal-grid-overlay p {
        font-size: 1rem;
    }
}

/* ======= Shop CTA Sektion Styles ======= */
.shop-cta-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-light);
    overflow: visible;
}

/* Improved shop collage styles - Photo version */
.product-collage.improved {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-top: 2rem;
}

.product-collage.improved .collage-photo {
    position: absolute;
    border-radius: 0.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    border: 8px solid #fff;
}

.product-collage.improved .collage-photo:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Photo 1: Back left */
.product-collage.improved .photo-1 {
    width: 42%;
    height: 280px;
    left: 2%;
    top: 50px;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Photo 2: Center main */
.product-collage.improved .photo-2 {
    width: 48%;
    height: 340px;
    left: 18%;
    top: 0;
    transform: rotate(2deg);
    z-index: 2;
}

/* Photo 3: Front right */
.product-collage.improved .photo-3 {
    width: 38%;
    height: 260px;
    right: 4%;
    top: 70px;
    transform: rotate(6deg);
    z-index: 3;
}

/* Responsive: stack photos vertically on smaller screens */
@media (max-width: 991.98px) {
    .product-collage.improved {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .product-collage.improved .collage-photo {
        position: static;
        width: 100%;
        height: 280px;
        transform: none;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .product-collage.improved .collage-photo:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* ======= Styles für "Split Card" Layout (Eselwanderung) ======= */

.feature-section {
    padding: 6rem 0;
}

.feature-section.pt-0 {
    padding-top: 0 !important;
}

/* ======= Styles für Tour-Beschreibungen (reiner Text) ======= */

.tour-description-section {
    padding: 3rem 0;
}

.tour-description-section h3 {
    margin-bottom: 1rem;
}

.tour-details {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    /* Auf Mobilgeräten 2 Spalten, auf größeren Bildschirmen 4 */
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    color: var(--chaoshof-dark);
}

@media (min-width: 768px) {
    .tour-details {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tour-details div {
    display: flex;
    flex-direction: column;
    /* Icon über dem Text */
    align-items: center;
    font-weight: 500;
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #eee;
}

.tour-details i {
    color: var(--chaoshof-accent);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tour-disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 2rem;
}

/* Trennlinie zwischen den Touren (wiederverwendet) */
.feature-divider {
    border: none;
    height: 1px;
    background-color: #eee;
    width: 80%;
    margin: 1rem auto 4rem auto;
}

/* Trennlinie zwischen den Karten (optional) */
.feature-divider {
    border: none;
    height: 1px;
    background-color: #eee;
    width: 80%;
    margin: 0 auto 4rem auto;
}

/* ======= Styles für Detail-Seiten ======= */

.page-hero {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    /* Optional: leichter Parallax-Effekt, falls gewünscht */
    background-attachment: fixed;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}


/* ======= Styles für Tour-Kategorie Überschrift ======= */
.tour-category-heading {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

/* Kurze, zentrierte Trennlinie unter der Überschrift */
.short-divider {
    width: 80px;
    margin: 1.5rem auto;
    border: none;
    height: 3px;
    background-color: var(--chaoshof-accent);
    opacity: 1;
}

/* Anpassung für Sektionen, die nach einer Überschrift kommen */
.feature-section.pt-0 {
    padding-top: 0 !important;
}

/* ======= CTA Sektion Styles (z.B. für Eselwanderungen) ======= */
.cta-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    /* Leichter grauer Hintergrund */
}

.cta-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cta-feature {
    padding: 1rem;
}

.cta-feature i {
    font-size: 2.5rem;
    color: var(--chaoshof-accent);
    margin-bottom: 1rem;
    display: block;
}

.cta-feature h4 {
    font-weight: 600;
    color: var(--chaoshof-dark);
}

/* Trennlinie in der CTA-Karte (wiederverwendet) */
.cta-card .short-divider {
    width: 80px;
    margin: 1.5rem auto;
    border: none;
    height: 3px;
    background-color: var(--chaoshof-accent);
    opacity: 1;
}

/* ======= Kontaktformular Sektion Styles (Esel-spezifisch) ======= */
.contact-section {
    /* Bleibt allgemein für alle Kontakt-Sektionen */
    padding: 6rem 0;
    background-color: var(--chaoshof-light);
}

.contact-esel-info-box {
    /* Spezifisch für diese Info-Box */
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
}

.contact-item {
    /* Allgemein wiederverwendbar */
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--chaoshof-accent);
    margin-right: 1rem;
    width: 25px;
    padding-top: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--chaoshof-dark);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Spezifische Styles für das Esel-Formular */
.contact-esel-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-esel-form .form-control,
.contact-esel-form .form-select {
    padding: 0.75rem 1rem;
    border-color: #ddd;
}

.contact-esel-form .form-control:focus,
.contact-esel-form .form-select:focus {
    border-color: var(--chaoshof-accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* ======= Styles für Tier-Detailseiten ======= */

/* ======= Styles für Polaroid-Layout ======= */

.feature-section {
    padding: 6rem 0;
}

.feature-section.pt-0 {
    padding-top: 0 !important;
}

.feature-row {
    margin-bottom: 4rem;
}

.feature-text {
    padding: 1rem;
}

.feature-text h2 {
    margin-bottom: 1rem;
}

/* Der Polaroid-Rahmen */
.polaroid-frame {
    background-color: #fff;
    padding: 1rem 1rem 4rem 1rem;
    /* Unten mehr Platz für den Polaroid-Look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Die abwechselnde Rotation */
.rotate-left {
    transform: rotate(-3deg);
}

.rotate-right {
    transform: rotate(3deg);
}

/* Hover-Effekt: Bild wird größer und gerade */
.polaroid-frame:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
    /* Nötig für z-index */
}

.polaroid-frame .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======= Styles für die Bilder-Collage (Herde) ======= */
.image-collage-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.image-collage-grid {
    display: grid;
    /* Ein feines Gitter für flexible Platzierung */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 1rem;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    /* Der dezente, kleine Rand */
    transition: all 0.3s ease;
    cursor: pointer;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    /* Name unten positionieren */
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-overlay h4 {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hover-Effekte */
.collage-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

/* Modifikatoren für unterschiedliche Größen im Gitter */
.item-wide {
    grid-column: span 2;
}

.item-tall {
    grid-row: span 2;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ======= Seminarraum Detail-Sektion Styles ======= */
.seminar-details-section {
    padding: 6rem 0;
}

.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.key-fact-item {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
}

.key-fact-item i {
    font-size: 2rem;
    color: var(--chaoshof-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.key-fact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--chaoshof-dark);
}

.key-fact-item span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Wiederverwendbare Liste mit Checkmarks */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--chaoshof-accent);
    font-weight: bold;
}

/* ======= Seminar Pakete / Pricing Section Styles ======= */
.pricing-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.package-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--chaoshof-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--chaoshof-dark);
    margin: 1rem 0;
}

.price sup {
    font-size: 1.5rem;
    top: -1.5rem;
    font-weight: 500;
}

.price span {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
    /* Schiebt den Button nach unten */
}

.features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.features-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.features-list li i {
    color: var(--chaoshof-accent);
    margin-right: 0.75rem;
}

.features-list li.disabled i {
    color: #ccc;
}

/* Hervorgehobene Karte */
.pricing-card.featured {
    border: 2px solid var(--chaoshof-accent);
    transform: scale(1.05);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--chaoshof-accent);
    color: var(--chaoshof-dark);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
}

/* ======= Seminar Anfrageformular Styles ======= */
/* Die .contact-section Klasse wird wiederverwendet */

.contact-seminar-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
}

/* Die .contact-item Klasse wird wiederverwendet */

/* Spezifische Styles für das Seminar-Formular */
.seminar-contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.seminar-contact-form .form-control,
.seminar-contact-form .form-select {
    padding: 0.75rem 1rem;
    border-color: #ddd;
}

.seminar-contact-form .form-control:focus,
.seminar-contact-form .form-select:focus {
    border-color: var(--chaoshof-accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* ======= Kontakt-Seite Styles ======= */
.contact-page-section {
    padding: 6rem 0;
}

.map-container-contact {
    width: 100%;
    height: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    /* Wichtig für Leaflet */
}

.contact-address {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Allgemeine Formular-Styles (können auch für andere Formulare gelten) */
.contact-general-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-general-form .form-control,
.contact-general-form .form-select {
    padding: 0.75rem 1rem;
    border-color: #ddd;
}

.contact-general-form .form-control:focus,
.contact-general-form .form-select:focus {
    border-color: var(--chaoshof-accent);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* ======= Custom Leaflet Marker Style ======= */

.custom-leaflet-marker {
    background-color: var(--chaoshof-accent);
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    /* Erzeugt eine "Pin"-Form */
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Ein kleines Icon im Marker */
.custom-leaflet-marker i {
    transform: rotate(45deg);
    /* Dreht das Icon wieder gerade */
    color: var(--chaoshof-dark);
    font-size: 16px;
}

/* ======= Auszeichnungen Sektion Styles (Elegantes Grid) ======= */
.awards-grid-section {
    padding: 6rem 0;
    background-color: var(--chaoshof-light);
}

.award-badge {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtiler Akzent-Streifen oben */
.award-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--chaoshof-accent), var(--chaoshof-accent-darker));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.award-badge:hover::before {
    transform: scaleX(1);
}

.award-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--chaoshof-accent);
}

.award-logo-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.award-logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.award-badge:hover .award-logo-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.award-info {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.award-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--chaoshof-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-headings);
}

.award-info p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive Anpassungen */
@media (max-width: 991.98px) {
    .award-badge {
        padding: 2rem 1.5rem;
    }
    
    .award-logo-container {
        height: 150px;
    }
    
    .award-info h5 {
        font-size: 1.05rem;
    }
    
    .award-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .awards-grid-section {
        padding: 4rem 0;
    }
    
    .award-badge {
        padding: 1.75rem 1.25rem;
    }
    
    .award-logo-container {
        height: 130px;
        margin-bottom: 1rem;
    }
}

/* ======= Erlebnisse Sektion Styles (Bilder-Gitter) ======= */
.erlebnis-grid-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.erlebnis-grid-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 280px;
    /* Höhe für die kleinen Kacheln */
}

.erlebnis-grid-item.large-item {
    height: 576px;
    /* Ca. Höhe von 2 kleinen Kacheln + Lücke */
}

.erlebnis-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.erlebnis-grid-item:hover img {
    transform: scale(1.1);
}

.erlebnis-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 40%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Inhalt nach unten */
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.erlebnis-grid-item:hover .erlebnis-grid-overlay {
    opacity: 1;
}

.erlebnis-grid-overlay h3 {
    font-size: 2rem;
    font-weight: bold;
}

.erlebnis-grid-overlay h5 {
    /* Kleinere Schrift für die kleinen Kacheln */
    font-size: 1.25rem;
    font-weight: bold;
}

.erlebnis-grid-overlay p {
    font-size: 1rem;
}

.btn-outline-light {
    border-width: 2px;
}

@media (max-width: 991.98px) {
    .erlebnis-grid-item.large-item {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .erlebnis-grid-item.large-item {
        height: 350px;
    }
}

/* Style für die Karte im Modal */
.map-container-modal {
    width: 100%;
    height: 300px;
    border-radius: 0.5rem;
    z-index: 1;
}

.custom-shape-divider-bottom-1752222796 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1752222796 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 111px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1752222796 .shape-fill {
    fill: var(--chaoshof-accent);
}

.custom-shape-divider-top-1752236175 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1752236175 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 111px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1752236175 .shape-fill {
    fill: var(--chaoshof-accent);
}

/* Responsive Anpassung für Footer-Titel */
@media (max-width: 991.98px) {
    .site-footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ======= Versandarten-Seite Styles ======= */
.shipping-option-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.shipping-option-card .card-icon {
    font-size: 2.5rem;
    color: var(--chaoshof-accent);
    margin-bottom: 1rem;
}

.shipping-details-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.shipping-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.shipping-details-list li i {
    color: var(--chaoshof-accent);
    width: 25px;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* ======= Zahlungsarten-Seite Styles ======= */
.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.payment-method-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 2rem;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-method-item i {
    font-size: 3rem;
    color: var(--chaoshof-accent);
    margin-bottom: 1rem;
    display: block;
}

.payment-method-item span {
    font-weight: 500;
    color: var(--chaoshof-dark);
}

/* ======= "In Arbeit" Platzhalter-Seite ======= */
.placeholder-section {
    padding: 8rem 0;
    min-height: 70vh;
    /* Sorgt dafür, dass der Inhalt die Mitte des Bildschirms füllt */
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content i {
    font-size: 5rem;
    color: var(--chaoshof-accent);
}

.placeholder-content h1 {
    margin-top: 2rem;
}

/* ======= Produkt-CTA Sektion auf Detailseiten ======= */
.product-cta-section {
    padding: 5rem 0;
    background-color: var(--chaoshof-light);
    /* Oder #f8f9fa für leichten Kontrast */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}