/*
Theme Name: Kaninchen Wunderwelt
Theme URI: https://kaninchen-wunderwelt.de
Description: Professionelles WordPress Theme für Kaninchenzucht - speziell entwickelt für liebevolle Hobbyzüchter mit Fokus auf Präsentation, Verkauf und Beratung.
Author: Kaninchen Wunderwelt
Version: 1.3
Text Domain: kaninchen-wunderwelt
Tags: breeding, pets, rabbits, animals, responsive, custom-post-types

========================================
KANINCHEN WUNDERWELT - MODERN THEME CSS
========================================
*/

/* =Reset & Base Styles
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(180deg, #87ceeb 0%, #a8e6f0 50%, #87ceeb 100%) fixed;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

a {
    color: #4a90c2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #ff6b35;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
    line-height: 1.7;
}

blockquote {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #4a90c2;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* =Header & Navigation
================================================== */
.site-header {
    position: relative;
    top: 0;
    z-index: 200; /* Header über Navigation */
}

/* Himmelselemente */
.sky-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sun {
    position: absolute;
    top: 15px;
    left: 5%;
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    opacity: 0.8;
    animation: float 20s infinite ease-in-out;
}

.cloud:before, .cloud:after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50px;
}

.cloud-1 {
    width: 80px;
    height: 30px;
    top: 20px;
    left: 15%;
    animation-delay: 0s;
}

.cloud-1:before {
    width: 45px;
    height: 45px;
    top: -25px;
    left: 10px;
}

.cloud-1:after {
    width: 35px;
    height: 35px;
    top: -20px;
    right: 15px;
}

.cloud-2 {
    width: 60px;
    height: 25px;
    top: 40px;
    right: 20%;
    animation-delay: -8s;
}

.cloud-2:before {
    width: 35px;
    height: 35px;
    top: -20px;
    left: 8px;
}

.cloud-2:after {
    width: 30px;
    height: 30px;
    top: -15px;
    right: 10px;
}

.cloud-3 {
    width: 70px;
    height: 28px;
    top: 60px;
    left: 60%;
    animation-delay: -15s;
}

.cloud-3:before {
    width: 40px;
    height: 40px;
    top: -22px;
    left: 12px;
}

.cloud-3:after {
    width: 32px;
    height: 32px;
    top: -18px;
    right: 12px;
}

@keyframes float {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(30px); }
}

/* Site Branding */
.site-branding {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 0;
}

.site-title {
    font-size: 3.5rem;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin: 0;
}

.site-title a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
}

.site-description {
    font-size: 1.3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-top: 10px;
    opacity: 0.95;
}

/* =MOBILE NAVIGATION - KORRIGIERTE VERSION
================================================== */
.main-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;   /* bleibt normal im Flow */
    z-index: 100;         /* genug, um über Inhalt zu liegen */
}


.nav-container {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .current-menu-item > a {
    background: #4a90c2;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 10px;
    font-size: 16px;
    color: #2c3e50;
    font-weight: bold;
    z-index: 10000;
}

.menu-toggle:before {
    content: "☰ MENÜ";
}

.hamburger {
    display: none;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        z-index: 9998;
        border-top: 1px solid #e0e0e0;
    }
    
    .mobile-open .nav-container {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-open .menu-toggle:before {
        content: "✕ SCHLIEßEN";
    }
    
    .mobile-open .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .mobile-open .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-open .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-open .nav-menu a {
        display: block;
        padding: 15px 25px;
        border-radius: 0;
        color: #2c3e50;
        font-weight: 500;
        transform: none;
        box-shadow: none;
        transition: background-color 0.3s ease;
    }
    
    .mobile-open .nav-menu a:hover,
    .mobile-open .nav-menu a:focus {
        background: #f8f9fa;
        color: #4a90c2;
        text-decoration: none;
    }
    
    .mobile-open .nav-menu .current-menu-item > a {
        background: #e3f2fd;
        color: #4a90c2;
        font-weight: 600;
    }
}

/* =Decorative Elements
================================================== */
.rabbit-decoration {
    position: fixed;
    bottom: 15px;
    left: 10px;
    width: 120px;
    height: 90px;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.rabbit-img {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

/* PNG Kaninchen-Bilder mit direktem Wechsel */
.rabbit-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.rabbit-img .rabbit-main {
    opacity: 1;
    z-index: 1;
}

.rabbit-img .rabbit-alt {
    opacity: 0;
    z-index: 2;
}

/* Hover-Effekt für Bildwechsel (mit sanfter Transition nur beim Hover) */
.rabbit-decoration:hover .rabbit-img img {
    transition: opacity 0.3s ease-in-out;
}

.rabbit-decoration:hover .rabbit-main {
    opacity: 0;
}

.rabbit-decoration:hover .rabbit-alt {
    opacity: 1;
}

/* Animation beim Laden */
@keyframes rabbitEntrance {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rabbit-decoration {
    animation: rabbitEntrance 1s ease-out;
}


.grass-decoration {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: -1;
    pointer-events: none;
}

.grass-svg {
    width: 100%;
    height: 100px;
}

/* Winter-Schnee auf dem Rasen */
body.winter-mode .grass-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.7) 40%, 
        rgba(248, 250, 252, 0.9) 100%);
    z-index: 1;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.3);
}

/* =Layout
================================================== */
.content-area {
    margin-top: 20px;
    min-height: 40vh;
}

.site-main {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.main-content {
    min-height: 10px;
}

/* =Hero Section (Startseite)
================================================== */
.hero-section {
	margin-top: 0;
    text-align: center;
    padding: 35px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 20px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =Buttons
================================================== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #4a90c2, #87ceeb);
    border-color: #4a90c2;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: #4a90c2;
    color: #4a90c2;
}

.btn-outline:hover {
    background: #4a90c2;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* =Featured Rabbits Section
================================================== */
.featured-rabbits {
	margin-top: 0;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* RESPONSIVE GRID LAYOUT: Desktop 2 Spalten, Handy 1 Spalte */
.rabbit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* =Info Boxes
================================================== */
.info-boxes {
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-box p {
    color: #666;
    line-height: 1.6;
}

/* =Kaninchen Card Styles - KOMPAKT UND OHNE PREISE
================================================== */
.kaninchen-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.kaninchen-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Kompakte Bildgröße mit Aspect Ratio */
.kaninchen-card-image {
    position: relative;
    height: 0;
    padding-bottom: 65%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.kaninchen-card:hover .card-image {
    transform: scale(1.03);
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: #d4edda;
    color: #155724;
}

.status-badge.reserved {
    background: #fff3cd;
    color: #856404;
}

.status-badge.sold {
    background: #f8d7da;
    color: #721c24;
}

.geschlecht-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Kompakter Content */
.kaninchen-card-content {
    padding: 20px;
}

.card-header .kaninchen-name {
    margin-bottom: 6px;
}

.kaninchen-name {
    font-size: 1.2rem;
}

.kaninchen-name a {
    color: #2c3e50;
    text-decoration: none;
}

.kaninchen-name a:hover {
    color: #4a90c2;
}

.rasse-info {
    margin-bottom: 12px;
}

.rasse {
    background: #e3f2fd;
    color: #1976d2;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.kaninchen-details {
    margin: 12px 0;
}

.detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
}

.detail-icon {
    font-size: 0.95rem;
    opacity: 0.8;
}

.charakter-preview {
    margin: 12px 0;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.kaninchen-excerpt {
    margin: 12px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Kompakter Footer ohne Preise */
.kaninchen-card-footer {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Info-Bereich (ersetzt Preis-Bereich) */
.info-section {
    text-align: center;
    margin-bottom: 5px;
}

.contact-info .contact-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px dashed #ddd;
}

.status-info.sold .status-text {
    font-weight: bold;
    color: #721c24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8d7da;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.card-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* =Archive Styles
================================================== */
.archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.archive-title,
.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.kaninchen-filters {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #4a90c2;
}

.search-box {
    margin-top: 20px;
}

.kaninchen-search-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
}

.search-field:focus {
    outline: none;
    border-color: #4a90c2;
}

.search-submit {
    padding: 12px 25px;
    background: #4a90c2;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #357abd;
}

.results-info {
    margin-bottom: 30px;
    text-align: center;
}

.results-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Kaninchen Grid im Archiv - 2 Spalten Desktop */
.kaninchen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.kaninchen-pagination {
    margin-top: 50px;
}

.kaninchen-pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.kaninchen-pagination a,
.kaninchen-pagination span {
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.kaninchen-pagination a {
    background: rgba(255, 255, 255, 0.8);
    color: #4a90c2;
    border: 2px solid #e9ecef;
}

.kaninchen-pagination a:hover {
    background: #4a90c2;
    color: white;
    border-color: #4a90c2;
}

.kaninchen-pagination .current {
    background: #4a90c2;
    color: white;
    border: 2px solid #4a90c2;
}

/* No Results */
.no-kaninchen-found {
    text-align: center;
    padding: 60px 20px;
}

.no-results-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.no-results-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.no-results-actions {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-results-illustration {
    margin-top: 40px;
    opacity: 0.6;
}

.empty-rabbit {
    max-width: 200px;
}

/* =Single Kaninchen Styles
================================================== */
.kaninchen-single {
    max-width: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #2c3e50;
    font-weight: 500;
}

.kaninchen-header {
    margin-bottom: 40px;
    text-align: center;
}

.kaninchen-title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.kaninchen-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.kaninchen-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kaninchen-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.kaninchen-images {
    position: sticky;
    top: 120px;
}

.kaninchen-main-image {
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kaninchen-gallery h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    border-radius: 10px;
}

.details-card {
    background: rgba(248, 249, 250, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.details-card h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.detail-grid {
    display: grid;
    gap: 15px;
}

.detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    color: #2c3e50;
    font-weight: 500;
}

.kontakt-area {
    text-align: center;
}

.kaninchen-description {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.description-card,
.charakter-card,
.besonderheiten-card,
.eltern-card {
    background: rgba(248, 249, 250, 0.8);
    padding: 30px;
    border-radius: 15px;
}

.description-card h2,
.charakter-card h2,
.besonderheiten-card h2,
.eltern-card h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

/* =Archive CTA Section
================================================== */
.archive-cta-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* =Posts & Pages
================================================== */
.post-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    height: 250px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
}

.post-title a:hover {
    color: #4a90c2;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-footer {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.read-more {
    color: #4a90c2;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* =Sidebar
================================================== */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.widget {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #666;
    text-decoration: none;
}

.widget a:hover {
    color: #4a90c2;
}

/* =Footer
================================================== */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 80px;
}

.footer-widgets {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #ecf0f1;
}

.contact-item a:hover {
    color: #3498db;
}

.footer-navigation .footer-menu {
    list-style: none;
}

.footer-navigation .footer-menu li {
    margin-bottom: 10px;
}

.footer-navigation .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation .footer-menu a:hover {
    color: #3498db;
}

.kaninchen-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #3498db;
}

.stat-label {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-cta {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.footer-cta:hover {
    background: #2980b9;
    text-decoration: none;
}

.opening-hours {
    line-height: 1.6;
}

.opening-hours .note {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #bdc3c7;
}

.copyright a {
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-links .separator {
    color: #7f8c8d;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.social-links a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* =Modal Styles
================================================== */
.kw-modal {
    position: fixed;
    top: 0;
    left: 00;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10001;
}

.kw-modal-header {
    padding: 25px 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kw-modal-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
}

.kw-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.kw-modal-close:hover {
    background: #f0f0f0;
    color: #666;
}

/* Button-Variante des Close-Buttons (Abbrechen) soll NICHT das Icon-Styling erben */
.kw-modal-cancel {
    width: auto !important;
    height: auto !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    color: white !important;
    background: linear-gradient(45deg, #e74c3c, #ff8c42) !important; /* rötlich */
    border: 2px solid #e74c3c !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
}

.kw-modal-cancel:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
}

/* Abbrechen-Button im Modal soll exakt wie btn-primary aussehen */
.form-actions .kw-modal-close.btn-primary {
    display: inline-block !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: 2px solid #4a90c2 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    background: linear-gradient(45deg, #4a90c2, #87ceeb) !important;
    border-color: #4a90c2 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3) !important;
    width: auto !important;
    text-align: center !important;
}

.form-actions .kw-modal-close.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.4) !important;
    text-decoration: none !important;
    color: white !important;
    background: linear-gradient(45deg, #4a90c2, #87ceeb) !important;
    border-color: #4a90c2 !important;
}

.kw-modal-body {
    padding: 25px;
}

.kw-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90c2;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

/* =Back to Top
================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 80px;
    width: 50px;
    height: 50px;
    background: #4a90c2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.4);
}

/* =Utility Classes
================================================== */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* =Responsive Design
================================================== */

@media screen and (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .kaninchen-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kaninchen-images {
        position: static;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .site-description {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* 2 Spalten auf Tablets */
    .rabbit-grid,
    .kaninchen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
	.site-main {
		padding: 30px; /* Reduziert von 40px */
		margin-bottom: 30px; /* Reduziert von 40px */
	}
    
    .kaninchen-title {
        font-size: 2rem;
    }
    
    .detail-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .kaninchen-card-content {
        padding: 15px;
    }
    
    .kaninchen-card-footer {
        padding: 0 15px 15px;
    }
}

/* MOBILE: 1 Spalte auf Handys */
@media screen and (max-width: 600px) {
    .rabbit-grid,
    .kaninchen-grid {
        grid-template-columns: 1fr !important; /* 1 Spalte auf Handy */
        gap: 25px;
    }
    
    .kaninchen-card-image {
        padding-bottom: 70%; /* Etwas höher auf mobil */
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .kaninchen-card-content {
        padding: 12px;
    }
    
    .kaninchen-card-footer {
        padding: 0 12px 15px;
        align-items: stretch;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .card-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .rabbit-decoration {
        /* Kleiner und leicht transparent auf Mobil */
        width: 80px !important;
        height: 80px !important;
        opacity: 0.7 !important;
        left: 15px !important;
        bottom: 15px !important;
        z-index: 2 !important; /* Über der Wiese aber unter dem Content */
    }

    /* Seiten-Content: Lange Wörter/Zeilen umbrechen (z.B. Abgabebedingungen) */
    .site-main {
        padding: 22px; /* etwas schmaler auf sehr kleinen Screens */
        overflow-x: hidden;
    }
    .site-main article,
    .site-main article * {
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }
}

/* =Print Styles
================================================== */
@media print {
    body {
        background: white !important;
        color: black !important;
        font: 12pt Georgia, serif;
    }
    
    .site-header,
    .main-navigation,
    .sidebar,
    .site-footer,
    .back-to-top,
    .kw-modal {
        display: none !important;
    }
    
    .site-main {
        box-shadow: none !important;
        background: white !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .kaninchen-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }
}

/* DESKTOP LAYOUT FIX - Details vertikal wie auf Handy */

/* Überschreibt die bestehenden Detail-Styles für bessere Desktop-Darstellung */
.kaninchen-card .detail-row {
    display: flex;
    flex-direction: column; /* ÄNDERUNG: Vertikal statt horizontal */
    gap: 8px; /* Kleinere Abstände */
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.kaninchen-card .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    width: 100%; /* Volle Breite */
    min-width: 0;
    padding: 6px 0; /* Etwas Padding für bessere Trennung */
    border-bottom: 1px solid #f5f5f5; /* Subtile Trennlinie */
}

.kaninchen-card .detail-item:last-child {
    border-bottom: none; /* Letzte Linie entfernen */
}

.kaninchen-card .detail-icon {
    font-size: 1rem;
    width: 24px; /* Feste Breite für Icons */
    text-align: center;
    flex-shrink: 0;
    opacity: 0.8;
}

.kaninchen-card .detail-label {
    font-weight: 600;
    color: #777;
    font-size: 0.8rem;
    min-width: 75px; /* Etwas breiter für Desktop */
    flex-shrink: 0;
}

.kaninchen-card .detail-value {
    color: #2c3e50;
    font-weight: 500;
    flex-grow: 1;
}

/* Verbesserte Abstände für Charakter und Beschreibung */
.kaninchen-card .charakter-preview {
    margin: 15px 0;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #4a90c2;
    display: block;
}

.kaninchen-card .kaninchen-excerpt {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    display: block;
    background: rgba(248, 249, 250, 0.8);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Mobile bleibt unverändert - nur für Tablet/Desktop */
@media screen and (min-width: 601px) {
    /* Diese Regeln gelten NUR für Desktop/Tablet */
    .kaninchen-card .detail-row {
        flex-direction: column; /* Vertikal auch auf Desktop */
    }
    
    .kaninchen-card .detail-item {
        justify-content: flex-start;
        max-width: 100%;
    }
}

/* Handy-Styles bleiben wie sie sind */
@media screen and (max-width: 600px) {
    .kaninchen-card .detail-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .kaninchen-card .detail-item {
        min-width: 0;
        max-width: 100%;
        justify-content: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .kaninchen-card .detail-item:last-child {
        border-bottom: none;
    }
    
    .kaninchen-card .detail-label {
        min-width: 65px;
    }
}

/* =Saisonale Modi - Animationen
================================================== */

/* Winter-Modus */
.winter-snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Winter-Anpassungen für Himmelselemente */
body.winter-mode .sun {
    background: #e6e6e6 !important;
    box-shadow: 0 0 20px rgba(230, 230, 230, 0.4) !important;
    opacity: 0.6 !important;
}

body.winter-mode .cloud {
    background: #d0d0d0 !important;
    opacity: 0.9 !important;
}

body.winter-mode .cloud:before,
body.winter-mode .cloud:after {
    background: #d0d0d0 !important;
}

/* Winter-Schnee auf dem Rasen */
body.winter-mode .grass-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.7) 40%, 
        rgba(248, 250, 252, 0.9) 100%);
    z-index: 1;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.3);
}

/* Winter-Schnee auf dem Titel */
body.winter-mode .site-title {
    position: relative !important;
    color: #2c3e50 !important;
    text-shadow: 
        /* Weißer Schneeschatten oben auf den Buchstaben */
        0 -2px 1px #ffffff,
        0 -3px 2px #f8f9fa,
        /* Normaler Schatten für Lesbarkeit */
        2px 2px 4px rgba(0,0,0,0.3) !important;
}

body.winter-mode .site-title a {
    color: inherit !important;
    text-shadow: inherit !important;
}

/* Kleine Schneeflocken die zufällig auf dem Text verteilt sind */
body.winter-mode .site-title::before {
    content: '❄' !important;
    position: absolute !important;
    top: 20% !important;
    left: 15% !important;
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.8) !important;
    animation: twinkle 4s ease-in-out infinite !important;
    pointer-events: none !important;
}

body.winter-mode .site-title::after {
    content: '❅' !important;
    position: absolute !important;
    top: 30% !important;
    right: 20% !important;
    font-size: 0.5rem !important;
    color: rgba(255,255,255,0.7) !important;
    animation: twinkle 6s ease-in-out infinite 2s !important;
    pointer-events: none !important;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.2);
    }
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #e8f4f8;
    text-shadow: 
        0 0 3px rgba(135, 206, 235, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.3),
        -1px -1px 2px rgba(255, 255, 255, 0.6);
    animation: snowfall linear infinite;
    font-size: 1rem;
    opacity: 0.9;
}

/* Halloween-Modus */
.halloween-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Halloween-Anpassungen für Himmelselemente */
body.halloween-mode {
    background: linear-gradient(180deg, #2c1810 0%, #4a2c1a 50%, #2c1810 100%) fixed !important;
}

body.halloween-mode .sun {
    background: #ff6600 !important;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.6) !important;
    opacity: 0.8 !important;
}

body.halloween-mode .cloud {
    background: #4a4a4a !important;
    opacity: 0.8 !important;
}

body.halloween-mode .cloud:before,
body.halloween-mode .cloud:after {
    background: #4a4a4a !important;
}

/* Halloween-Grusel-Effekt auf dem Titel */
body.halloween-mode .site-title {
    position: relative !important;
    color: #ff6600 !important;
    text-shadow: 
        /* Dunkler gruseliger Schatten */
        0 0 8px #ff3300,
        0 0 15px #ff3300,
        2px 2px 4px rgba(0,0,0,0.8) !important;
    animation: spookyGlow 3s ease-in-out infinite !important;
}

body.halloween-mode .site-title a {
    color: inherit !important;
    text-shadow: inherit !important;
}

/* Gruselige Symbole auf dem Text */
body.halloween-mode .site-title::before {
    content: '🦇' !important;
    position: absolute !important;
    top: 10% !important;
    left: 10% !important;
    font-size: 0.8rem !important;
    color: #ff6600 !important;
    animation: spookyFloat 5s ease-in-out infinite !important;
    pointer-events: none !important;
}

body.halloween-mode .site-title::after {
    content: '🎃' !important;
    position: absolute !important;
    top: 20% !important;
    right: 15% !important;
    font-size: 0.7rem !important;
    color: #ff8800 !important;
    animation: spookyFloat 4s ease-in-out infinite 1.5s !important;
    pointer-events: none !important;
}

@keyframes spookyGlow {
    0%, 100% { 
        text-shadow: 
            0 0 8px #ff3300,
            0 0 15px #ff3300,
            2px 2px 4px rgba(0,0,0,0.8);
    }
    50% { 
        text-shadow: 
            0 0 12px #ff6600,
            0 0 20px #ff6600,
            2px 2px 6px rgba(0,0,0,0.9);
    }
}

@keyframes spookyFloat {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.9;
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Halloween-Nebel auf dem Rasen */
body.halloween-mode .grass-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(128, 128, 128, 0) 0%, 
        rgba(128, 128, 128, 0.4) 50%, 
        rgba(96, 96, 96, 0.6) 100%);
    z-index: 1;
    animation: fog 8s ease-in-out infinite;
}

@keyframes fog {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.bat {
    position: absolute;
    top: -10px;
    color: #2c2c2c;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    animation: batfly linear infinite;
    font-size: 1.2rem;
    opacity: 0.8;
}

.pumpkin {
    position: absolute;
    bottom: 50px;
    font-size: 2rem;
    animation: pumpkinGlow 3s ease-in-out infinite;
}

.ghost {
    position: absolute;
    top: 20%;
    font-size: 1.5rem;
    animation: ghostFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

/* Herbst-Modus */
.herbst-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Herbst-Anpassungen für Himmelselemente */
body.herbst-mode {
    background: linear-gradient(180deg, #d4a574 0%, #e6c2a6 50%, #d4a574 100%) fixed !important;
}

body.herbst-mode .sun {
    background: #ff9500 !important;
    box-shadow: 0 0 35px rgba(255, 149, 0, 0.7) !important;
    opacity: 0.8 !important;
}

body.herbst-mode .cloud {
    background: #f5f5dc !important;
    opacity: 0.7 !important;
}

body.herbst-mode .cloud:before,
body.herbst-mode .cloud:after {
    background: #f5f5dc !important;
}

/* Herbst-Blätter-Effekt auf dem Titel */
body.herbst-mode .site-title {
    position: relative !important;
    color: #8b4513 !important;
    text-shadow: 
        /* Warmer herbstlicher Schatten */
        0 0 5px #ff9500,
        0 0 10px #ff9500,
        2px 2px 4px rgba(139, 69, 19, 0.4) !important;
    animation: autumnWarmth 4s ease-in-out infinite !important;
}

body.herbst-mode .site-title a {
    color: inherit !important;
    text-shadow: inherit !important;
}

/* Herbstblätter auf dem Text */
body.herbst-mode .site-title::before {
    content: '🍂' !important;
    position: absolute !important;
    top: 15% !important;
    left: 20% !important;
    font-size: 0.7rem !important;
    color: #d2691e !important;
    animation: leafSway 6s ease-in-out infinite !important;
    pointer-events: none !important;
}

body.herbst-mode .site-title::after {
    content: '🍁' !important;
    position: absolute !important;
    top: 25% !important;
    right: 25% !important;
    font-size: 0.6rem !important;
    color: #cd853f !important;
    animation: leafSway 5s ease-in-out infinite 2s !important;
    pointer-events: none !important;
}

@keyframes autumnWarmth {
    0%, 100% { 
        text-shadow: 
            0 0 5px #ff9500,
            0 0 10px #ff9500,
            2px 2px 4px rgba(139, 69, 19, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 8px #ffb347,
            0 0 15px #ffb347,
            2px 2px 6px rgba(139, 69, 19, 0.6);
    }
}

@keyframes leafSway {
    0%, 100% { 
        opacity: 0.7;
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        opacity: 0.9;
        transform: translateY(-2px) rotate(-3deg);
    }
    75% { 
        opacity: 0.8;
        transform: translateY(-1px) rotate(3deg);
    }
}

/* Herbst-Blätter auf dem Rasen */
body.herbst-mode .grass-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, 
        rgba(210, 180, 140, 0) 0%, 
        rgba(210, 180, 140, 0.5) 50%, 
        rgba(139, 69, 19, 0.3) 100%);
    z-index: 1;
}

.leaf {
    position: absolute;
    top: -10px;
    animation: leaffall linear infinite;
    font-size: 1rem;
    opacity: 0.8;
}

/* Oster-Modus */
.ostern-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Oster-Anpassungen für Himmelselemente */
body.ostern-mode {
    background: linear-gradient(180deg, #e8f5e8 0%, #b3e5fc 50%, #e8f5e8 100%) fixed !important;
}

body.ostern-mode .sun {
    background: linear-gradient(135deg, #ffeb3b 0%, #fff59d 30%, #ffeb3b 60%, #fff176 100%) !important;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40% !important;
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.7) !important;
    opacity: 0.9 !important;
    border: 3px solid #ff6b35 !important;
    animation: easterEggGlow 6s ease-in-out infinite !important;
}

@keyframes easterEggGlow {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(255, 235, 59, 0.7);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
    }
}

body.ostern-mode .cloud {
    background: #ffffff !important;
    opacity: 0.8 !important;
}

body.ostern-mode .cloud:before,
body.ostern-mode .cloud:after {
    background: #ffffff !important;
}

/* Oster-Blüten-Effekt auf dem Titel */
body.ostern-mode .site-title {
    position: relative !important;
    color: #2e7d32 !important;
    text-shadow: 
        /* Frühlingsfrischer Schatten */
        0 0 5px #81c784,
        0 0 10px #81c784,
        2px 2px 4px rgba(46, 125, 50, 0.3) !important;
    animation: springBloom 5s ease-in-out infinite !important;
}

body.ostern-mode .site-title a {
    color: inherit !important;
    text-shadow: inherit !important;
}

/* Osterblüten und Eier auf dem Text */
body.ostern-mode .site-title::before {
    content: '🌸' !important;
    position: absolute !important;
    top: 10% !important;
    left: 15% !important;
    font-size: 0.8rem !important;
    color: #ffb3ba !important;
    animation: bloomDance 7s ease-in-out infinite !important;
    pointer-events: none !important;
}

body.ostern-mode .site-title::after {
    content: '🥚' !important;
    position: absolute !important;
    top: 30% !important;
    right: 20% !important;
    font-size: 1rem !important;
    color: #fff59d !important;
    animation: bloomDance 6s ease-in-out infinite 1.5s !important;
    pointer-events: none !important;
}

/* Ostereier direkt an den Buchstaben */
body.ostern-mode .site-branding::before {
    content: '🥚' !important;
    position: absolute !important;
    top: 60% !important;
    left: 25% !important;
    font-size: 0.9rem !important;
    opacity: 0.8 !important;
    animation: eggWiggle 5s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

body.ostern-mode .site-branding::after {
    content: '🐣' !important;
    position: absolute !important;
    top: 45% !important;
    left: 45% !important;
    font-size: 0.8rem !important;
    opacity: 0.7 !important;
    animation: eggWiggle 6s ease-in-out infinite 1s !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

/* Weitere Ostereier direkt am Text mit zusätzlichen Containern */
body.ostern-mode .site-title {
    position: relative !important;
    color: #2e7d32 !important;
    text-shadow: 
        /* Frühlingsfrischer Schatten */
        0 0 5px #81c784,
        0 0 10px #81c784,
        2px 2px 4px rgba(46, 125, 50, 0.3) !important;
    animation: springBloom 5s ease-in-out infinite !important;
}

/* Versteckte Ostereier in den Buchstaben-Zwischenräumen */
body.ostern-mode .site-title::before {
    content: '🥚🐣🥚' !important;
    position: absolute !important;
    top: 70% !important;
    left: 30% !important;
    font-size: 0.7rem !important;
    letter-spacing: 25px !important;
    opacity: 0.6 !important;
    animation: eggNestling 7s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

@keyframes eggWiggle {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        opacity: 0.9;
        transform: translateY(-1px) rotate(2deg);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(1px) rotate(-1deg);
    }
    75% { 
        opacity: 0.7;
        transform: translateY(0px) rotate(1deg);
    }
}

@keyframes eggNestling {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes springBloom {
    0%, 100% { 
        text-shadow: 
            0 0 5px #81c784,
            0 0 10px #81c784,
            2px 2px 4px rgba(46, 125, 50, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 8px #a5d6a7,
            0 0 15px #a5d6a7,
            2px 2px 6px rgba(46, 125, 50, 0.5);
    }
}

@keyframes bloomDance {
    0%, 100% { 
        opacity: 0.7;
        transform: translateY(0px) scale(1);
    }
    33% { 
        opacity: 0.9;
        transform: translateY(-2px) scale(1.1);
    }
    66% { 
        opacity: 0.8;
        transform: translateY(-1px) scale(0.95);
    }
}

/* Oster-Blumen am Boden */
body.ostern-mode .grass-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(180deg, 
        rgba(152, 251, 152, 0) 0%, 
        rgba(152, 251, 152, 0.6) 50%, 
        rgba(144, 238, 144, 0.8) 100%);
    z-index: 1;
}

.easter-egg {
    position: absolute;
    top: -10px;
    animation: eggfall linear infinite;
    font-size: 1.2rem;
    opacity: 0.9;
}

.blossom {
    position: absolute;
    top: -10px;
    animation: blossomFloat linear infinite;
    font-size: 1rem;
    opacity: 0.8;
}

.easter-bunny {
    position: absolute;
    bottom: 80px;
    left: 70%;
    font-size: 2rem;
    animation: bunnyHop 4s ease-in-out infinite;
}

.carrot {
    position: absolute;
    bottom: 60px;
    right: 10%;
    font-size: 1.5rem;
    animation: carrotBounce 3s ease-in-out infinite;
}

/* Animationen */
.snowflake:nth-child(1) { 
    left: 10%; 
    animation-duration: 8s; 
    font-size: 0.8rem;
    animation-delay: 0s;
}
.snowflake:nth-child(2) { 
    left: 20%; 
    animation-duration: 12s; 
    font-size: 1.2rem;
    animation-delay: 2s;
}
.snowflake:nth-child(3) { 
    left: 30%; 
    animation-duration: 10s; 
    font-size: 0.9rem;
    animation-delay: 4s;
}
.snowflake:nth-child(4) { 
    left: 40%; 
    animation-duration: 15s; 
    font-size: 1.1rem;
    animation-delay: 1s;
}
.snowflake:nth-child(5) { 
    left: 50%; 
    animation-duration: 9s; 
    font-size: 1rem;
    animation-delay: 3s;
}
.snowflake:nth-child(6) { 
    left: 60%; 
    animation-duration: 13s; 
    font-size: 0.7rem;
    animation-delay: 5s;
}
.snowflake:nth-child(7) { 
    left: 70%; 
    animation-duration: 11s; 
    font-size: 1.3rem;
    animation-delay: 2.5s;
}
.snowflake:nth-child(8) { 
    left: 80%; 
    animation-duration: 14s; 
    font-size: 0.9rem;
    animation-delay: 1.5s;
}
.snowflake:nth-child(9) { 
    left: 90%; 
    animation-duration: 8.5s; 
    font-size: 1rem;
    animation-delay: 4.5s;
}
.snowflake:nth-child(10) { 
    left: 15%; 
    animation-duration: 16s; 
    font-size: 1.4rem;
    animation-delay: 0.5s;
}

.bat:nth-child(1) { 
    left: 10%; 
    animation-duration: 15s; 
    animation-delay: 0s;
}
.bat:nth-child(2) { 
    left: 30%; 
    animation-duration: 20s; 
    animation-delay: 3s;
}
.bat:nth-child(3) { 
    left: 60%; 
    animation-duration: 18s; 
    animation-delay: 6s;
}
.bat:nth-child(4) { 
    left: 80%; 
    animation-duration: 22s; 
    animation-delay: 2s;
}
.bat:nth-child(5) { 
    left: 45%; 
    animation-duration: 16s; 
    animation-delay: 8s;
}

.pumpkin { 
    left: 5%; 
}

.ghost { 
    left: 85%; 
}

.leaf:nth-child(1) { 
    left: 5%; 
    animation-duration: 7s; 
    animation-delay: 0s;
}
.leaf:nth-child(2) { 
    left: 15%; 
    animation-duration: 9s; 
    animation-delay: 2s;
}
.leaf:nth-child(3) { 
    left: 25%; 
    animation-duration: 11s; 
    animation-delay: 1s;
}
.leaf:nth-child(4) { 
    left: 35%; 
    animation-duration: 8s; 
    animation-delay: 4s;
}
.leaf:nth-child(5) { 
    left: 45%; 
    animation-duration: 10s; 
    animation-delay: 3s;
}
.leaf:nth-child(6) { 
    left: 55%; 
    animation-duration: 12s; 
    animation-delay: 5s;
}
.leaf:nth-child(7) { 
    left: 65%; 
    animation-duration: 9s; 
    animation-delay: 1.5s;
}
.leaf:nth-child(8) { 
    left: 75%; 
    animation-duration: 7s; 
    animation-delay: 3.5s;
}
.leaf:nth-child(9) { 
    left: 85%; 
    animation-duration: 11s; 
    animation-delay: 2.5s;
}
.leaf:nth-child(10) { 
    left: 95%; 
    animation-duration: 8s; 
    animation-delay: 4.5s;
}

.easter-egg:nth-child(1) { 
    left: 10%; 
    animation-duration: 6s; 
    animation-delay: 0s;
}
.easter-egg:nth-child(2) { 
    left: 25%; 
    animation-duration: 8s; 
    animation-delay: 2s;
}
.easter-egg:nth-child(3) { 
    left: 40%; 
    animation-duration: 7s; 
    animation-delay: 4s;
}
.easter-egg:nth-child(4) { 
    left: 60%; 
    animation-duration: 9s; 
    animation-delay: 1s;
}
.easter-egg:nth-child(5) { 
    left: 80%; 
    animation-duration: 6s; 
    animation-delay: 3s;
}

.blossom:nth-child(6) { 
    left: 15%; 
    animation-duration: 12s; 
    animation-delay: 1s;
}
.blossom:nth-child(7) { 
    left: 35%; 
    animation-duration: 10s; 
    animation-delay: 3s;
}
.blossom:nth-child(8) { 
    left: 55%; 
    animation-duration: 14s; 
    animation-delay: 2s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes batfly {
    0% {
        transform: translateY(-10px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translateY(20vh) translateX(-30px);
    }
    50% {
        transform: translateY(40vh) translateX(20px);
    }
    75% {
        transform: translateY(60vh) translateX(-10px);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(40px);
        opacity: 0;
    }
}

@keyframes pumpkinGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 102, 0, 1);
        transform: scale(1.1);
    }
}

@keyframes ghostFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

@keyframes leaffall {
    0% {
        transform: translateY(-10px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) translateX(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(10px) rotate(180deg);
    }
    75% {
        transform: translateY(75vh) translateX(-5px) rotate(270deg);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes eggfall {
    0% {
        transform: translateY(-10px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) translateX(-10px) rotate(45deg);
    }
    50% {
        transform: translateY(50vh) translateX(5px) rotate(90deg);
    }
    75% {
        transform: translateY(75vh) translateX(-8px) rotate(135deg);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) translateX(15px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes blossomFloat {
    0% {
        transform: translateY(-10px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translateY(25vh) translateX(-20px);
    }
    50% {
        transform: translateY(50vh) translateX(15px);
    }
    75% {
        transform: translateY(75vh) translateX(-10px);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(25px);
        opacity: 0;
    }
}

@keyframes bunnyHop {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-15px);
    }
}

@keyframes carrotBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Mobile Anpassungen */
@media screen and (max-width: 768px) {
    .snowflake {
        font-size: 0.8rem;
    }
    
    .snowflake:nth-child(odd) {
        font-size: 0.6rem;
    }
    
    .snowflake:nth-child(even) {
        font-size: 1rem;
    }
    
    .bat {
        font-size: 1rem;
    }
    
    .pumpkin {
        font-size: 1.5rem;
    }
    
    .ghost {
        font-size: 1.2rem;
    }
    
    .leaf {
        font-size: 0.8rem;
    }
    
    .easter-egg {
        font-size: 1rem;
    }
    
    .blossom {
        font-size: 0.8rem;
    }
    
    .easter-bunny {
        font-size: 1.5rem;
    }
    
    .carrot {
        font-size: 1.2rem;
    }
}

/* Entfernt: Footer-Bild, da wir das wandernde Kaninchen oben nutzen */

/* =reCAPTCHA Fixes - Sicherstellen dass reCAPTCHA im Vordergrund ist
================================================== */


/* reCAPTCHA z-index fix - alle möglichen reCAPTCHA Elemente */
.grecaptcha-badge,
.g-recaptcha,
#g-recaptcha,
div[class*="recaptcha"],
div[id*="recaptcha"],
iframe[src*="recaptcha"],
iframe[src*="google.com/recaptcha"] {
    z-index: 99999 !important;
}

/* =Zustimmung verwalten / Cookie Consent Button nach links verschieben
================================================== */
/* Verschiedene mögliche Selektoren für "Zustimmung verwalten" Button */
[class*="consent"],
[class*="privacy"],
[class*="manage"],
[class*="zustimmung"],
[id*="consent"],
[id*="privacy"],
[id*="manage"],
[id*="cookie"],
.consent-manager,
.privacy-manager,
.cookie-consent,
.manage-consent,
button[class*="consent"],
button[class*="privacy"],
a[class*="consent"],
a[class*="privacy"] {
    right: 50px !important;
}

/* Spezifischere Regeln falls nötig */
.consent-banner button,
.privacy-banner button,
.cookie-banner button {
    right: 50px !important;
}


