/* --- WhatsApp Floating Button --- */
.wa-float { 
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3); 
    z-index: 1000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    transition: transform 0.3s ease; 
}
.wa-float:hover { transform: scale(1.1); color: white; }

@media (max-width: 600px){
  .wa-float{
    width:56px;
    height:56px;
    right:20px;
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
  }
}

/* --- ERLEBNIS CARDS --- */
.experience-showcase { display: flex; gap: 30px; margin-top: 30px; }
.exp-card { 
    flex: 1; 
    padding: 40px; 
    background: #fdfdfd; 
    border-radius: 10px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    text-align: center; 
    transition: 0.3s; 
    border-bottom: 3px solid transparent; 
    color: #333; 
}
.exp-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--gold); }
.exp-icon { font-size: 3rem; margin: 0 auto 20px; display: block; width: max-content; line-height: 1; text-align: center; }

/* --- PRICING GRID (Pakete) --- */
.pricing-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; align-items: stretch; }
.p-card { 
    background: white; 
    width: 270px; 
    padding-bottom: 20px; 
    border-radius: 12px; 
    text-align: center; 
    transition: 0.4s; 
    position: relative; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    color: #333; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
    min-height: auto; 
}
.p-card-img { 
    width: 100%; 
    height: 180px; 
    background: #333; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--gold); 
    border-bottom: 2px solid var(--gold); 
    flex-shrink: 0; 
}

/* Paketbilder: einheitlich skalieren (fix für zu große 400er Bilder auf Landingpages) */
.p-card-img img{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    display:block;
}

.p-card-img .pkg-img{
    max-width:100%; /* überschreibt globales max-width, damit Bilder nicht überlaufen */
}

.p-price { 
    font-size: 0.9rem;
    font-weight: 600;
    margin: 12px 0;
    color: #444;
    flex-shrink: 0; 
}
.p-price span { 
    font-size: 0.9rem; 
    color: #888; 
    font-weight: 400; 
}

.p-details { 
    max-height: 0; 
    opacity: 0; 
    transition: all 0.5s ease; 
    overflow: hidden; 
    padding: 0 25px; 
    flex-grow: 1; 
}
.p-card:hover .p-details { 
    max-height: 400px; 
    opacity: 1; 
    margin-top: 10px; 
    margin-bottom: 20px; 
}
.p-list { list-style: none; text-align: left; margin: 0; font-size: 0.85rem; border-top: 1px solid #eee; padding-top: 15px; }
.p-list li { margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }

/* Neue Regel für goldene Häkchen - Spezifisch für .p-list */
.p-list li i.fa-check {
    color: var(--gold) !important;
    font-size: 14px;
    width: 18px;
    min-width: 18px;
    text-align: center;
    margin-top: 3px;
}

.btn-p-request { 
    display: block; 
    margin: 10px 20px 10px; 
    padding: 12px; 
    border: 2px solid var(--gold); 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 5px; 
    transition: 0.3s;
    flex-shrink: 0; 
}
.btn-p-request:hover { 
    background: var(--gold-metal); 
    border-color: var(--gold-dark);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.32);
    color: #fff; 
}

/* --- ZUSATZOPTIONEN --- */
.extra-options-container { display: flex; justify-content: center; gap: 20px; margin-top: 80px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 50px; }
.extra-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(200, 168, 91, 0.2); width: 270px; padding: 20px 0; border-radius: 12px; text-align: center; transition: 0.4s; overflow: hidden; display: flex; flex-direction: column; }
.extra-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); border-color: var(--gold); }
.extra-card-header img { 
    max-height: 100px; 
    width: auto; 
    margin: 0 auto 10px; 
    display: block; 
    object-fit: contain; 
}
.extra-card h4 { font-size: 1.1rem; margin-bottom: 5px; color: white; }
.extra-details { max-height: 0; opacity: 0; transition: all 0.5s ease; overflow: hidden; padding: 0 20px; }
.extra-card:hover .extra-details { max-height: 200px; opacity: 1; margin-top: 15px; }
.extra-details p { font-size: 0.85rem; color: #ccc; margin-bottom: 10px; }

/* Mobile/Touch: Hover gibt es nicht zuverlässig -> Details immer sichtbar */
@media (hover: none), (pointer: coarse) {
    .extra-details {
        max-height: none;
        opacity: 1;
        margin-top: 15px;
        padding: 0 20px 10px;
    }
    .extra-card:hover .extra-details {
        max-height: none;
        opacity: 1;
        margin-top: 15px;
    }
}

/* --- FILTER DESIGN --- */
.filter-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.filter-btn { background: transparent; border: 2px solid #eee; color: var(--dark); padding: 10px 25px; border-radius: 50px; font-family: inherit; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 58%, var(--gold-dark) 100%); border-color: var(--gold-dark); color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,0.28); }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-top: 20px; }
.gallery-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: 0.3s; cursor: pointer; }
.gallery-card img { width: 100%; display: block; }
.gallery-info { padding: 15px; text-align: center; }
.gallery-info h4 { font-size: 0.9rem; color: var(--dark); text-transform: capitalize; }

/* --- KONTAKTFORMULAR --- */
.contact-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.c-row { display: flex; gap: 12px; margin-bottom: 10px; } 
.c-form input, .c-form select, .c-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 0.9rem; outline: none; transition: 0.3s; }
.c-form input:focus, .c-form select:focus, .c-form textarea:focus { border-color: var(--gold); }

.checkbox-group { margin: 15px 0; display: flex; flex-direction: column; gap: 8px; text-align: left; color: #333; }
.check-item { display: flex; align-items: center; justify-content: flex-start; gap: 10px; font-weight: 400; font-size: 0.95rem; cursor: pointer; }
.check-item input[type="checkbox"] { width: 18px; height: 18px; margin: 0; flex-shrink: 0; cursor: pointer; }

/* Button Auswahl Sektion */
.method-choice { text-align: center; margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px; }
.method-choice p { margin-bottom: 10px; font-size: 0.85rem; color: #666; }
.choice-btns { display: flex; gap: 12px; justify-content: center; }

.btn-wa { background: #25d366 !important; color: white !important; padding: 14px; text-decoration: none; border-radius: 5px; font-weight: 700; flex: 1; text-align: center; font-size: 0.95rem; border: none; cursor: pointer; }
.btn-mail { background: var(--gold-metal) !important; color: white !important; padding: 14px; border: 1px solid rgba(101, 72, 22, 0.32); border-radius: 5px; font-weight: 700; flex: 1; cursor: pointer; font-family: inherit; font-size: 0.95rem; box-shadow: 0 10px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.40); }


.btn-mail:hover, .btn-accept:hover {
    filter: saturate(1.04);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.40);
}

/* --- ABOUT --- */
.about-flex { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.sig { color: var(--gold); font-weight: 700; margin-top: 20px; font-size: 1.3rem; font-style: italic; }

/* --- FOOTER --- */
footer { background: #000; color: #666; padding: 20px 0; text-align: center; font-size: 0.8rem; }
.footer-links { margin-top: 15px; }
.footer-links a { color: #888; text-decoration: none; margin: 0 10px; }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed !important; 
    bottom: 20px !important; 
    left: 20px !important; 
    right: 20px !important;
    background: var(--white); 
    border-top: 4px solid var(--gold);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15); 
    padding: 20px;
    display: none; 
    z-index: 9999; 
    border-radius: 10px;
}
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.cookie-text { font-size: 0.85rem; color: #333; flex: 1; min-width: 250px; text-align: left; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.btn-accept { background: var(--gold-metal); color: white; border: 1px solid rgba(101, 72, 22, 0.32); padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: 700; transition: 0.3s; box-shadow: 0 10px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.40); }
.btn-deny { background: #eee; color: #666; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; transition: 0.3s; }

/* --- MOBILE RESPONSIVE & MENU --- */
.menu-toggle { display: none; }

/* Animation für das X-Symbol */
.toggle-animation span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.toggle-animation span:nth-child(2) { opacity: 0; }
.toggle-animation span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
    .menu-toggle { 
        display: flex; 
        flex-direction: column; 
        gap: 6px; 
        cursor: pointer; 
        z-index: 1001;
    }
    .menu-toggle span { 
        width: 30px; 
        height: 3px; 
        background: var(--dark); 
        transition: 0.4s; 
    }

    /* Logo auf Mobilgeräten etwas größer für bessere Sichtbarkeit */
    .nav-logo-img {
        height: 80px; 
    }

    section { padding: 45px 0 !important; }
    h2 { font-size: 1.8rem; margin-bottom: 25px !important; }
    .subtitle, .subtitle-gold { margin-bottom: 5px !important; }
    h1 { font-size: 2.2rem !important; text-align: center; } 
    
    .hero {  }
    
    .experience-showcase, .about-flex, .c-row { flex-direction: column; gap: 10px; }
    .exp-card { padding: 25px; margin-bottom: 5px; }
    
    .nav-links { 
        position: fixed; 
        right: 0; 
        top: 0; 
        height: 100vh; 
        width: 75%; 
        background: white; 
        flex-direction: column; 
        justify-content: center; 
        transform: translateX(100%); 
        transition: 0.4s; 
        z-index: 1000;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }
    .nav-links a.nav-cta { margin-left: 0; width: 80%; text-align: center; }
    .nav-links.nav-active { transform: translateX(0); }
    
    .p-card { width: 100%; max-width: 350px; margin: 0 auto 15px; }
    
    .p-details, .extra-details { 
        max-height: 600px !important; 
        opacity: 1 !important; 
        margin-top: 10px; 
        margin-bottom: 15px; 
    }
    
    .extra-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 10px;
        padding-bottom: 20px;
    }

    .cookie-banner { 
        bottom: 0 !important; 
        left: 0 !important; 
        right: 0 !important; 
        border-radius: 0; 
        padding: 15px; 
    }
}