/* --- CONFIG & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM FONT OVERRIDES --- */
.font-serif {
    font-family: 'Cormorant Garamond', serif !important;
}

:root {
    --primary: #a75c72;      
    --hero-bg: #a75c72;      
    --primary-hover: #8f4d60; 
    --cream: #f4f2eb; /* Das zentrale Creme-Weiß */
    --silver: #bcbec0;
    --dark: #2d2d2d;         
}

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

body { 
    background-color: #95374d; 
    color: var(--dark); 
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    padding: 20px 10px; 
}

/* --- SITE WRAPPER --- */
.site-wrapper {
    max-width: 800px; 
    margin: 0 auto;
    background-color: #ecc1cc;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15); 
    overflow: hidden;
}

/* --- PRELOADER --- */
#preloader, #successScreen {
    position: fixed; inset: 0; z-index: 99999;
    background-color: var(--cream); /* White -> Cream */
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
    text-align: center;
}
.loader-spinner {
    width: 40px; height: 40px; border: 2px solid #e2d5d8;
    border-top: 2px solid var(--primary); border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hidden { display: none !important; }

/* --- HERO SECTION --- */
.visual-hero {
    background-color: #a75c72; 
}

/* --- NAVIGATION --- */
.nav-scroll {
    display: flex; gap: 12px; overflow-x: auto; padding: 15px 20px;
    background: transparent; 
    position: sticky; top: 0; z-index: 50;
    justify-content: flex-start; 
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; 
}
.nav-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .nav-scroll { justify-content: center; }
}

.tab-btn {
    padding: 12px 28px; border-radius: 50px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; color: var(--primary); 
    background: rgba(244, 242, 235, 0.6); /* White -> Cream */
    backdrop-filter: blur(4px);
    transition: all 0.3s ease; white-space: nowrap; border: none; cursor: pointer;
}
.tab-btn:hover { background: rgba(244, 242, 235, 0.9); color: var(--dark); }
.tab-btn.active { background: var(--primary); color: var(--cream); box-shadow: 0 8px 20px rgba(167, 92, 114, 0.4); }

/* --- BOOKING SECTION & GLASS CARDS --- */
.booking-section {
    background: linear-gradient(to bottom, #a75c72, #ecc1cc);
    padding-top: 20px;
}

.service-card {
    background: rgba(244, 242, 235, 0.45); /* White -> Cream */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244, 242, 235, 0.9);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    animation: slideUp 0.5s ease-out forwards;
}
.service-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 40px rgba(167, 92, 114, 0.15); 
    background: rgba(244, 242, 235, 0.65);
}
.service-card.selected { 
    border: 2px solid var(--primary); 
    background: rgba(244, 242, 235, 0.8); 
}
.item-img { 
    width: 100%; height: 200px; object-fit: cover; 
    border-bottom: 1px solid rgba(244, 242, 235, 0.6);
}

.glass-content { padding: 28px 24px; }
.glass-content p {
    line-height: 1.6;
    color: #4a4a4a; 
    margin-bottom: 12px;
}
.glass-content > div > span {
    color: #5e2636 !important; 
    font-weight: 800;
    font-size: 1.15rem;
}

.add-btn {
    width: 44px; height: 44px; border-radius: 50%; 
    border: 2px solid var(--cream);
    color: var(--primary); background: var(--cream); /* White -> Cream */
    display: flex; align-items: center; justify-content: center; 
    transition: all 0.3s ease; 
    box-shadow: 0 6px 16px rgba(167, 92, 114, 0.25); 
}
.service-card:hover .add-btn { transform: scale(1.05); }
.selected .add-btn { background: var(--primary); border-color: var(--primary); color: var(--cream); }
.fa-check { transform: rotate(-5deg) scale(1.1); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- REVIEW CARDS --- */
.review-card { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(167, 92, 114, 0.2);
    background: rgba(244, 242, 235, 0.7); /* White -> Cream */
}

.reviews-section {
    background-image: url('../img/np.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center; 
    background-color: transparent; 
}
@media (max-width: 767px) {
    .reviews-section {
        background-size: auto 80%;
        background-position: left bottom;
    }
}

/* --- CART FLOAT & MODAL --- */
.cart-pill {
    background: var(--dark); 
    color: var(--cream); padding: 14px 24px;
    border-radius: 999px; display: flex; gap: 8px; align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.badge {
    position: absolute; top: -8px; right: -8px; background: var(--primary); 
    color: var(--cream); font-size: 11px; font-weight: bold; width: 20px; height: 20px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
}

#cartModal {
    position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.6);
    display: none; align-items: flex-end; backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
#cartModal.open { display: flex; }
.modal-content {
    background: var(--cream); /* White -> Cream */
    width: 100%; max-width: 550px; margin: 0 auto;
    border-radius: 32px 32px 0 0; padding: 40px; 
    animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}
@keyframes slideUpModal { from { transform: translateY(100%); } to { transform: translateY(0); } }

.input-field {
    width: 100%; padding: 18px; 
    border-radius: 16px; 
    outline: none; border: 1px solid transparent; font-family: inherit; font-size: 14px;
    transition: all 0.3s ease;
}
.input-field:focus { border-color: var(--primary); background: var(--cream); box-shadow: 0 0 0 4px rgba(167, 92, 114, 0.15); }

.btn-checkout {
    width: 100%; background: var(--primary); color: var(--cream); padding: 20px;
    border-radius: 16px; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: 12px;
    text-transform: uppercase; font-size: 13px; letter-spacing: 1px; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-checkout:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(167, 92, 114, 0.3); }

/* --- PREMIUM FOOTER --- */
.booking-section + img,
.reviews-section + picture img {
    display: block; width: 100%; margin-bottom: -2px;
}

.premium-footer { 
    background: #ecc1cc; 
    padding: 40px 20px 60px; 
}

.social-icon {
    width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center; color: #5e2636;
    transition: all 0.3s ease; border: 1px solid #e2d5d8;
}
.social-icon:hover { background: var(--primary); color: var(--cream); border-color: var(--primary); transform: translateY(-3px); }

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #aaa; }