/* =========================================
   1. GRUNDEINSTELLUNGEN & VARIABLEN
   ========================================= */
:root {
    --brand-green: #8db724; 
    --dark-bg: #121212;
    --white: #ffffff;
    --grey: #f4f4f4;
    --transition: all 0.3s ease;
}

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

/* UX-Fix: Hält beim Klicken auf Anker-Links Abstand für das Menü */
html { scroll-padding-top: 80px; }

/* Eigene Markierungsfarbe für Text (Premium-Detail) */
::selection { background-color: rgba(141, 183, 36, 0.3); color: #000; }
::-moz-selection { background-color: rgba(141, 183, 36, 0.3); color: #000; }

body { 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6; 
    color: #333; 
    scroll-behavior: smooth; 
    background: var(--white); 
}

/* =========================================
   2. NAVIGATION & HEADER
   ========================================= */

nav { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    padding: 10px 5%; 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-logo-img { height: 50px; position: relative; z-index: 2001; width: auto; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: #333; margin-left: 25px; font-weight: bold; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-green); }

.burger { display: none; cursor: pointer; z-index: 2001; padding: 10px; }
.burger div { width: 25px; height: 3px; background-color: #333; margin: 5px; transition: all 0.3s ease; border-radius: 3px; }

header { 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('event-party-3005668_1920.jpg'); 
    height: 60vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-align: center; 
    padding: 20px;
}
.hero-logo { max-width: 400px; width: 85%; filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); }

.ticker-wrap {
    width: 100%;
    height: 50px;
    background-color: #8db724; 
    overflow: hidden; 
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite; 
    line-height: 50px; 
    color: white; 
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 0; 
}

@keyframes ticker {
    0% { transform: translate3d(100vw, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* =========================================
   3. SEKTIONEN & INHALTE
   ========================================= */
.section { padding: 80px 5%; text-align: center; }
.section h2, .section > h1 { font-size: 2.2rem; margin-bottom: 40px; text-transform: uppercase; }

/* Frischer Farbverlauf für die Highlights in den Überschriften */
.section h2 span, .section > h1 span { 
    background: linear-gradient(135deg, #8db724, #b2db42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ustg-notice { font-size: 0.85rem; color: #777; margin-bottom: 30px; font-style: italic; display: block; }

.tech-container { 
    display: flex; 
    align-items: stretch; 
    justify-content: center; 
    gap: 50px; 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: left; 
    flex-wrap: wrap; 
}

.tech-text { 
    flex: 1; 
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
}

.tech-text h3 { color: var(--brand-green); margin-bottom: 15px; font-size: 1.8rem; text-transform: uppercase; }
.tech-text ul { list-style: none; margin-bottom: 25px; }
.tech-text ul li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.tech-text ul li::before { content: "★"; color: var(--brand-green); position: absolute; left: 0; font-size: 1.2rem; }

.tech-image { 
    flex: 1; 
    min-width: 300px; 
    text-align: center;
    display: flex; 
}

.tech-image img { 
    width: 100%; 
    height: 100%;       
    object-fit: cover;  
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border: 1px solid #eee; 
    display: block;
}

.info-banner { background: #fff; border-left: 5px solid var(--brand-green); padding: 20px; max-width: 1000px; margin: 0 auto 40px; text-align: left; border-radius: 0 10px 10px 0; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.discount-banner { background: #333; color: white; padding: 30px; border-radius: 20px; max-width: 1000px; margin: 40px auto; border: 2px dashed var(--brand-green); }
.discount-banner h3 { color: var(--brand-green); margin-bottom: 10px; }

/* =========================================
   4. PREISE & PAKETE
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px; }

.price-card { 
    background: var(--white); 
    padding: 30px 15px; 
    border-radius: 15px; 
    transition: var(--transition); 
    border-bottom: 5px solid transparent; 
    position: relative; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

.price-card:hover { transform: translateY(-5px); border-color: var(--brand-green); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.price-card[style*="border: 2px solid"] { box-shadow: 0 0 25px rgba(141, 183, 36, 0.2); }

.price-tag { font-size: 1.8rem; font-weight: 800; color: var(--brand-green); margin-bottom: 5px; }
.price-period { font-size: 0.8rem; color: #888; margin-bottom: 20px; font-weight: bold; text-transform: uppercase; }

.features-list { list-style: none; text-align: left; margin: 20px 0; min-height: 120px; font-size: 0.9rem; }
.features-list li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.features-list li::before { content: "✓"; color: var(--brand-green); position: absolute; left: 0; font-weight: bold; }
.feature-highlight { color: var(--brand-green); font-weight: bold; }

/* =========================================
   5. EXTRAS TABELLE
   ========================================= */
.extras-container { max-width: 900px; margin: 0 auto; }
.extras-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); color: #333; }
.extras-table th { background: #333; color: white; padding: 15px; text-align: left; }
.extras-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; color: #333; }
.extras-table th:nth-child(1) { width: 25%; }
.extras-table th:nth-child(2) { width: 50%; } 
.extras-table th:nth-child(3) { width: 25%; text-align: right; }
.extras-table td:nth-child(3) { text-align: right; font-weight: bold; color: var(--brand-green); }

/* =========================================
   6. REZENSIONEN & CHECKER
   ========================================= */
.reviews-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
.review-card { background: #2a2a2a; padding: 20px; border-radius: 8px; width: 300px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); color: white; text-align: left; }
.stars { color: #FFD700; font-size: 1.2rem; }

#check { background-color: #f9f9f9; text-align: center; padding: 60px 20px; }
.availability-box { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.check-input { padding: 15px; border-radius: 5px; border: 1px solid #ccc; text-align: center; font-size: 1.1rem; margin-right: 10px; width: 200px; max-width: 100%; }

.check-btn { 
    background: var(--brand-green); color: white; border: none; padding: 15px 30px; border-radius: 50px; 
    cursor: pointer; font-weight: bold; font-size: 1.1rem; text-decoration: none; display: inline-block;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
}
.check-btn:hover { background: #769b1d; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(141, 183, 36, 0.4); }

#dateStatus { margin-top: 20px; font-weight: bold; font-size: 1.1rem; min-height: 30px; color: #333; }

/* =========================================
   7. KALKULATOR & FORMULARE
   ========================================= */
.calc-section { padding-top: 20px; background-color: var(--grey); min-height: 80vh; }
.calc-container { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); color: #333; }
.calc-container h2 { text-align: center; margin-bottom: 30px; color: #333; }
.calc-container h3 { border-bottom: 2px solid var(--brand-green); padding-bottom: 10px; margin-bottom: 20px; margin-top: 0; color: #333; }

.form-group { margin-bottom: 30px; }
.date-row { display: flex; gap: 20px; margin-bottom: 20px; }
.date-col { flex: 1; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 650px) { .form-grid { grid-template-columns: 1fr; } }

.date-col input, .calc-container input[type="text"], .calc-container input[type="email"], .calc-container input[type="tel"], .calc-container input[type="date"] { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; box-sizing: border-box; background: #fff; color: #333; transition: border 0.3s;
}
.calc-container input:focus { border-color: var(--brand-green); outline: none; box-shadow: 0 0 8px rgba(141, 183, 36, 0.2); }

.form-group label { font-weight: 600; display: block; margin-bottom: 5px; color: #444; }
.required-star { color: #e74c3c; font-weight: bold; margin-left: 3px; }

.radio-option { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; transition: 0.2s; cursor: pointer; background: #fff; position: relative; }
.radio-option:hover { background: #f9f9f9; border-color: #aaa; }
.radio-option.highlight { border: 2px solid var(--brand-green); box-shadow: 0 0 15px rgba(141, 183, 36, 0.1); }
.radio-option.selected { background-color: #f0fff4; border-color: var(--brand-green); }
.radio-option.disabled { opacity: 0.6; background: #eee; cursor: not-allowed; border-color: #eee; }

.radio-left { display: flex; align-items: center; gap: 15px; }
.radio-left input { transform: scale(1.3); margin: 0; accent-color: var(--brand-green); }
.radio-left strong { font-size: 1.1rem; display: block; }
.radio-left small { color: #666; font-weight: normal; }
.radio-price { font-weight: bold; font-size: 1.1rem; color: #333; white-space: nowrap; text-align: right; }

.badge-tip { background: var(--brand-green); color: white; font-size: 0.7rem; font-weight: bold; padding: 3px 10px; border-radius: 10px; position: absolute; top: -10px; left: 20px; text-transform: uppercase; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

.checkbox-container { display: flex; align-items: center; gap: 10px; cursor: pointer; background: #f9f9f9; border: 1px solid #ddd; padding: 10px 15px; border-radius: 6px; transition: all 0.2s; width: fit-content; }
.checkbox-container:hover { background: #f0f0f0; border-color: #bbb; }
.checkbox-container input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 4px; background: white; cursor: pointer; position: relative; transition: 0.2s; margin: 0; display: grid; place-content: center; }
.checkbox-container input[type="checkbox"]:checked { background-color: var(--brand-green); border-color: var(--brand-green); }
.checkbox-container input[type="checkbox"]:checked::after { content: '✔'; color: white; font-size: 14px; font-weight: bold; }
.checkbox-label { font-size: 0.95rem; color: #333; font-weight: 600; }

.total-box { background: #222; color: white; padding: 30px; text-align: center; border-radius: 10px; margin-top: 40px; }
.total-price { font-size: 3rem; font-weight: bold; color: var(--brand-green); margin: 10px 0; }
.days-info { font-size: 0.9rem; opacity: 0.7; margin-bottom: 5px; }

.btn-submit { display: block; width: 100%; text-align: center; background: var(--brand-green); color: white; padding: 18px; text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 1.2rem; margin-top: 20px; transition: background 0.3s, transform 0.3s, box-shadow 0.3s; border: none; cursor: pointer; }
.btn-submit:hover { background: #769b1d; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(141, 183, 36, 0.4); }

.back-link { display: block; text-align: center; margin-top: 20px; color: #666; text-decoration: none; font-size: 0.9rem; }
.back-link:hover { text-decoration: underline; }

.calc-btn { display: inline-block; margin-top: 20px; padding: 15px 30px; background: #333; color: white; text-decoration: none; border-radius: 50px; font-weight: bold; transition: transform 0.2s; }
.calc-btn:hover { transform: scale(1.05); background: #000; }

/* =========================================
   8. FOOTER & GLOBAL ELEMENTS
   ========================================= */
.btn { 
    background: var(--brand-green); color: white !important; padding: 12px 30px; border: none; border-radius: 50px; 
    text-decoration: none; font-weight: bold; text-transform: uppercase; display: inline-block; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; border: 2px solid var(--brand-green); font-size: 0.9rem; 
}
.btn:hover { background: #769b1d; border-color: #769b1d; transform: scale(1.03) translateY(-2px); box-shadow: 0 10px 20px rgba(141, 183, 36, 0.4); }

footer { background: var(--dark-bg); color: white; padding: 50px 5% 20px; text-align: center; }
.footer-logo { max-width: 200px; height: auto; margin-bottom: 20px; display: inline-block; }
.footer-contact { margin-bottom: 30px; }
.footer-contact a { color: var(--brand-green); text-decoration: none; font-weight: bold; }

.footer-nav { list-style: none; padding: 0; margin: 2rem 0 1rem 0; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-nav li a { color: white; text-decoration: none; font-size: 0.9rem; opacity: 0.8; }
.footer-nav li a:hover { opacity: 1; text-decoration: underline; color: var(--brand-green); }

.impressum-section { margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; text-align: left; max-width: 800px; margin-left: auto; margin-right: auto; font-size: 0.8rem; color: #888; line-height: 1.6; }

.scroll-to-top { position: fixed; bottom: 30px; right: 30px; background: var(--brand-green); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; font-size: 1.5rem; font-weight: bold; z-index: 1000; transition: var(--transition); opacity: 0; pointer-events: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 2px solid white; }
.scroll-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-to-top:hover { background: #769b1d; transform: translateY(-5px); color: white; }

/* =========================================
   9. MODALS / POPUPS
   ========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
    z-index: 3000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.modal-content {
    background: var(--white); padding: 40px; border-radius: 15px;
    width: 90%; max-width: 550px; position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    transform: scale(0.8); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* FIX FÜR MOBILE OVERFLOW */
    max-height: 85vh; 
    display: flex; 
    flex-direction: column;
}

.modal-overlay.active .modal-content { transform: scale(1); }

.modal-close {
    position: absolute; top: 15px; right: 20px;
    font-size: 2.5rem; color: #999; cursor: pointer;
    line-height: 1; transition: color 0.2s;
    
    /* FIX FÜR SICHTBARKEIT */
    z-index: 10; background: var(--white);
    border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--brand-green); }

.modal-body { 
    text-align: left; 
    /* FIX FÜR SCROLLEN IM POPUP */
    overflow-y: auto; padding-right: 15px;
    scrollbar-width: thin; scrollbar-color: #ccc transparent;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 10px; }

.modal-body .features-list li { margin-bottom: 12px; }

/* =========================================
   10. MOBILE OPTIMIERUNG & SWIPE
   ========================================= */
.swipe-hint { display: none; }

@media (max-width: 768px) {
    .burger { display: block; }
    .nav-links { position: fixed; right: 0; top: 0; height: 100vh; background: var(--white); flex-direction: column; align-items: center; justify-content: center; width: 75%; transform: translateX(100%); transition: 0.4s ease-in; box-shadow: -10px 0 20px rgba(0,0,0,0.1); }
    .nav-active { transform: translateX(0%); }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    .tech-container { flex-direction: column-reverse; text-align: center; align-items: center; } 
    .tech-text ul li { text-align: left; }
    .tech-image { width: 100%; display: block; } 
    .tech-image img { height: auto; object-fit: contain; max-height: 400px; } 

    /* Wisch-Hinweis */
    .swipe-hint {
        display: flex; justify-content: center; align-items: center; gap: 10px;
        color: var(--brand-green); font-weight: 800; font-size: 0.9rem; text-transform: uppercase;
        margin-bottom: 15px; opacity: 0.8;
    }
    .swipe-icon { font-size: 1.2rem; animation: swipeNudge 2s infinite ease-in-out; }
    .swipe-icon:first-child { animation-direction: reverse; } 
    @keyframes swipeNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

    /* Swipe-Karussell */
    .pricing-grid { 
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory; 
        gap: 20px; align-items: center; padding-top: 30px; padding-bottom: 30px; 
        -ms-overflow-style: none; scrollbar-width: none;  
    }
    .pricing-grid::-webkit-scrollbar { display: none; }
    
    .price-card { 
        min-width: 75vw; scroll-snap-align: center; flex: 0 0 auto;
        transform: scale(0.85); opacity: 0.4; 
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, box-shadow 0.4s ease;
    }

    .price-card.is-active-card { transform: scale(1); opacity: 1; box-shadow: 0 15px 35px rgba(0,0,0,0.15); z-index: 2; }
    .price-card.is-active-card[style*="border: 2px solid"] { box-shadow: 0 0 30px rgba(141, 183, 36, 0.3); }

    .extras-table thead { display: none; }
    .extras-table, .extras-table tbody, .extras-table tr, .extras-table td { display: block; width: 100%; }
    .extras-table tr { margin-bottom: 15px; border: 1px solid #ddd; border-radius: 10px; background: #fff; }
    .extras-table td { text-align: right; padding-left: 50%; position: relative; border-bottom: 1px solid #eee; }
    .extras-table td::before { content: attr(data-label); position: absolute; left: 15px; width: 45%; font-weight: bold; text-align: left; color: #666; font-size: 0.8em; }
    .date-row { flex-direction: column; gap: 10px; }
    .calc-container { padding: 20px; }
    .total-price { font-size: 2.2rem; }
    
    /* Spezifisch für das Modal auf dem Handy */
    .modal-content { width: 95%; padding: 25px; padding-top: 45px; max-height: 80vh; }
    .modal-close { top: 5px; right: 10px; }
}

/* =========================================
   11. REVIEW STERNCHEN
   ========================================= */
.rating { display: inline-flex; flex-direction: row-reverse; gap: 5px; }
.rating input { display: none; }
.rating label { font-size: 2rem; color: #ddd; cursor: pointer; }
.rating label:hover, .rating label:hover ~ label, .rating input:checked ~ label { color: #f39c12; }

/* =========================================
   13. TRUST BADGES
   ========================================= */
.trust-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px;
    background: var(--white); padding: 18px 5%; text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); position: relative; z-index: 5;
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: bold; color: #444; }
.trust-badge-icon { font-size: 1.2rem; }

/* =========================================
   14. BEWERTUNGSDURCHSCHNITT
   ========================================= */
.review-summary { margin: -15px auto 35px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.review-summary-stars { color: #f39c12; font-size: 1.8rem; letter-spacing: 3px; }
.review-summary-text { font-size: 1rem; font-weight: bold; color: #555; }

/* =========================================
   15. PAKET-FINDER WIZARD
   ========================================= */
.wizard-cta {
    background: #fff; border: 2px dashed var(--brand-green); border-radius: 15px;
    padding: 20px; max-width: 700px; margin: 0 auto 40px; display: flex;
    flex-wrap: wrap; align-items: center; justify-content: center; gap: 15px;
}
.wizard-cta p { margin: 0; font-weight: bold; font-size: 1.05rem; }

.wizard-question { font-size: 1.1rem; font-weight: bold; margin-bottom: 18px; }
.wizard-options { display: flex; flex-direction: column; gap: 12px; }
.wizard-option {
    display: block; width: 100%; text-align: left; padding: 14px 18px;
    border: 2px solid #eee; border-radius: 10px; background: #fafafa;
    font-size: 1rem; font-weight: bold; color: #333; cursor: pointer;
    transition: var(--transition);
}
.wizard-option:hover { border-color: var(--brand-green); background: rgba(141, 183, 36, 0.08); transform: translateX(3px); }

.wizard-restart {
    background: none; border: none; color: #888; text-decoration: underline;
    cursor: pointer; font-size: 0.9rem; display: inline-block;
}
.wizard-restart:hover { color: var(--brand-green); }

.price-card:target {
    animation: pricecardHighlight 1.8s ease;
}
@keyframes pricecardHighlight {
    0%   { box-shadow: 0 0 0 0 rgba(141, 183, 36, 0.7); }
    25%  { box-shadow: 0 0 0 12px rgba(141, 183, 36, 0); }
    50%  { box-shadow: 0 0 0 0 rgba(141, 183, 36, 0.5); }
    100% { box-shadow: 0 0 0 0 rgba(141, 183, 36, 0); }
}

/* =========================================
   16. VERFÜGBARKEITS-KALENDER
   ========================================= */
.calendar-widget {
    max-width: 480px; margin: 0 auto; background: var(--white); border-radius: 15px;
    padding: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.calendar-month-label { font-weight: bold; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.calendar-nav-btn {
    background: none; border: 2px solid #eee; border-radius: 50%; width: 36px; height: 36px;
    font-size: 1.3rem; line-height: 1; cursor: pointer; color: #333; transition: var(--transition);
}
.calendar-nav-btn:hover { border-color: var(--brand-green); color: var(--brand-green); }

.calendar-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
    font-size: 0.75rem; font-weight: bold; color: #999; margin-bottom: 8px; text-transform: uppercase;
}

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.calendar-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 0.9rem; font-weight: bold; background: #f4f4f4; color: #333;
    transition: var(--transition);
}
.calendar-day-empty { background: transparent; }
.calendar-day-past { color: #ccc; background: transparent; }
.calendar-day-weekend:not(.calendar-day-past) { box-shadow: inset 0 0 0 1px #e5e5e5; }
.calendar-day-today { box-shadow: inset 0 0 0 2px var(--brand-green); }

.calendar-day-free { background: rgba(141, 183, 36, 0.15); color: #5a7a1a; cursor: pointer; }
.calendar-day-free:hover { background: var(--brand-green); color: white; transform: scale(1.08); }

.calendar-day-soft { background: rgba(243, 156, 18, 0.15); color: #c77c05; cursor: pointer; }
.calendar-day-soft:hover { background: #f39c12; color: white; transform: scale(1.08); }

.calendar-day-hard { background: rgba(231, 76, 60, 0.12); color: #c0392b; cursor: not-allowed; }

.calendar-legend {
    display: flex; justify-content: center; gap: 20px; margin-top: 20px;
    flex-wrap: wrap; font-size: 0.8rem; color: #666;
}
.calendar-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.calendar-dot-free { background: var(--brand-green); }
.calendar-dot-soft { background: #f39c12; }
.calendar-dot-hard { background: #e74c3c; }

@media (max-width: 480px) {
    .calendar-widget { padding: 18px 12px; }
    .calendar-day { font-size: 0.8rem; }
    .calendar-grid { gap: 3px; }
}

/* =========================================
   12. PARTNER SEITE
   ========================================= */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.partner-card { background: white; border: 1px solid #ddd; border-radius: 10px; padding: 30px; text-align: center; transition: var(--transition); box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; height: 100%; }
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--brand-green); }

.partner-logo-wrapper { width: 150px; height: 150px; margin: 0 auto 20px auto; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; background: #fff; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.15); position: relative; }
.partner-logo { width: 100%; height: 100%; object-fit: cover; object-position: center; padding: 0; display: block; }
.partner-initial { font-size: 3rem; font-weight: bold; color: #ccc; background: #f0f0f0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.partner-card h3 { color: #333; font-size: 1.4rem; margin-bottom: 10px; }
.partner-card p { color: #666; font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }

.partner-actions { display: flex; gap: 10px; width: 100%; justify-content: center; }
.btn-small { padding: 8px 15px; border-radius: 5px; font-size: 0.85rem; text-decoration: none; font-weight: bold; transition: 0.2s; border: 1px solid #ddd; display: flex; align-items: center; gap: 5px; }
.btn-web { background: #333; color: white; border-color: #333; }
.btn-web:hover { background: #000; }
.btn-mail { background: white; color: #333; }
.btn-mail:hover { background: #f0f0f0; border-color: #bbb; }
/* =========================================
   13. ACCESSIBILITY / SEO UTILITIES
   ========================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
