/* --- VARIABLEN & RESET --- */
:root {
    --bg-color: #b8a68f;
    --bg-light: #cbb8a5;
    --bg-card: #a8967f;

    --text-color: #ffffff;
    --text-secondary: #f5efe9;

    --accent-color: #f5efe9;
    --accent-hover: #ffffff;
    --accent-dark: #8b7355;
    --white: #ffffff;

    --nav-bg: rgba(184, 166, 143, 0.95);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius-md: 20px;
    --radius-lg: 30px;

    --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* --- TYPOGRAFIE --- */
h1, h2, .handwritten {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

h3, h4, .nav-links, button, .btn, .footer-privacy {
    font-family: 'Montserrat', sans-serif;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
p { color: var(--text-secondary); }

/* --- LOADER ANIMATION --- */
#loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-heart {
    width: 60px; height: 60px; background: var(--accent-dark);
    transform: rotate(45deg); animation: pulse-loader 1.2s infinite ease-in-out;
}
.loader-heart::before, .loader-heart::after {
    content: ""; position: absolute; width: 60px; height: 60px;
    background: var(--accent-dark); border-radius: 50%;
}
.loader-heart::before { top: -30px; left: 0; }
.loader-heart::after { top: 0; left: -30px; }

@keyframes pulse-loader {
    0% { transform: rotate(45deg) scale(0.8); opacity: 0.5; }
    50% { transform: rotate(45deg) scale(1); opacity: 1; }
    100% { transform: rotate(45deg) scale(0.8); opacity: 0.5; }
}

.loader-text {
    margin-top: 2.5rem; font-family: 'Montserrat', sans-serif;
    color: var(--text-color); font-size: 0.95rem; text-align: center;
    animation: pulse-text 2s infinite; max-width: 280px; line-height: 1.5;
}

@keyframes pulse-text { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.3s ease; background: transparent;
}
nav.scrolled {
    background: var(--nav-bg); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); padding: 0.8rem 5%;
}

.logo-img {
    height: 100px; width: 100px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-sm);
    transition: transform 0.3s; z-index: 1001; display: block;
}
.logo-img:hover { transform: scale(1.1); }

.nav-center-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 4vw, 2.2rem); color: var(--white);
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; z-index: 1000; pointer-events: none; display: none;
}

.nav-links {
    display: flex; gap: 1.5rem; list-style: none; z-index: 1002;
}
.nav-links a { font-size: 0.9rem; font-weight: 500; position: relative; color: var(--white); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--white); transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent-color); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-color); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

.mobile-menu-toggle {
    display: none; background: none; border: none; font-size: 2rem;
    color: var(--white); cursor: pointer; z-index: 1003; transition: transform 0.3s;
    -webkit-tap-highlight-color: transparent;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block; background-color: var(--accent-color);
    color: var(--accent-dark); padding: 1rem 2.5rem; border-radius: 50px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    font-size: 0.9rem; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: none; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active {
    background-color: var(--accent-hover); transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--accent-dark);
}

/* --- SCROLL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- HERO SECTION --- */
#home { min-height: 100vh; display: flex; align-items: center; padding: 8rem 5% 4rem; position: relative; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-text h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--white); margin-bottom: 0.5rem; }
.hero-text .subtitle {
    font-size: 1.6rem; font-style: italic; color: var(--accent-color);
    margin-bottom: 2rem; display: block; font-family: 'Playfair Display', serif;
}
.hero-text p {
    font-family: 'Montserrat', sans-serif; font-size: 1.1rem;
    margin-bottom: 2.5rem; color: var(--text-secondary); max-width: 500px;
}
.hero-image-container {
    position: relative; border-radius: 300px 300px 20px 20px; overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 3/4; transform: rotate(-2deg);
    transition: transform 0.5s; display: flex; align-items: center; justify-content: center;
    color: #999; font-family: 'Montserrat', sans-serif; text-align: center;
    padding: 2rem; background: linear-gradient(135deg, #d4c4b0 0%, #b8a68f 100%);
}
.hero-image-container:hover { transform: rotate(0deg); }

/* --- SECTIONS GENERAL --- */
section { padding: 6rem 5%; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

.section-header {
    text-align: center; display: flex; flex-direction: column;
    align-items: center; justify-content: center; margin-bottom: 4rem;
}
.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 0.5rem;
    display: inline-flex; align-items: center; gap: 1rem;
}
.heart-icon { color: var(--accent-color); width: 32px; height: 32px; animation: heartbeat 2s infinite; }

/* --- ABOUT --- */
#about { background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-light) 50%, var(--bg-color) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo-frame { position: relative; max-width: 400px; margin: 0 auto; }
.about-photo {
    border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 1/1; border: 5px solid rgba(255,255,255,0.3); background: #f0ebe5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-content { text-align: left; }

.greeting {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-style: italic;
    color: var(--white); margin-bottom: 0.5rem; line-height: 1;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white); margin-bottom: 1.5rem; text-align: left;
}

.about-content p { font-size: 1.15rem; color: var(--text-secondary); }

/* --- PORTFOLIO --- */
#portfolio { background-color: var(--bg-light); text-align: center; }
#portfolio h2 { font-size: clamp(3rem, 8vw, 5rem); color: var(--white); margin-bottom: 0; }
.portfolio-subtitle {
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 2px; color: var(--white);
    margin-top: 0.5rem; margin-bottom: 2rem; opacity: 0.8;
}
.portfolio-cta {
    max-width: 600px; margin: 0 auto 3rem; padding: 2rem;
    background: rgba(0,0,0,0.1); border-radius: var(--radius-md);
    border: 1px dashed rgba(255,255,255,0.3);
}
.portfolio-cta p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

/* --- HIER IST DIE ÄNDERUNG --- */
.portfolio-grid {
    display: grid;
    /* Erzwingt genau 3 Spalten mit gleicher Breite (1fr) */
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    width: 100%;
}

/* Für Tablets (weniger als 900px): Nur 2 Spalten */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Für Handys (weniger als 600px): Nur 1 Spalte */
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 3/4; box-shadow: var(--shadow-md); background-color: #8b7355;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }


/* --- PREIS SECTION --- */
#preise { 
    background-color: var(--bg-color); 
    text-align: center; 
    position: relative; 
}

.intro-text {
    max-width: 700px; 
    margin: 0 auto 3rem; 
    font-style: italic; 
    font-size: 1.2rem; 
    position: relative; 
    z-index: 1; 
    color: var(--text-secondary);
}

.fomo-notice {
    background: rgba(255,255,255,0.1); 
    color: var(--white); 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    display: inline-block; 
    margin: 0 auto 3rem auto; 
    text-align: center; 
    font-size: 0.9rem; 
    border: 1px solid rgba(255,255,255,0.2); 
    box-shadow: var(--shadow-sm); 
    position: relative; 
    z-index: 1;
}

/* Das Grid für die Hauptkarten (S, M, L) */
.cards-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    margin-bottom: 2rem; 
    position: relative; 
    z-index: 1;
}

.addons-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; /* 2 Spalten für Zusatzleistungen */
    gap: 2rem; 
    margin-bottom: 4rem; 
    position: relative; 
    z-index: 1;
}

/* Die Karten selbst */
.card {
    background: var(--bg-card); 
    padding: 3rem 2rem; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-md); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid rgba(255,255,255,0.05); 
    text-align: center;
}

.card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-lg); 
}

/* Die Highlights-Karte (M) */
.card.featured {
    border: 2px solid rgba(255,255,255,0.3); 
    transform: scale(1.02); 
    z-index: 2; 
    background: #b09a7f;
}

.card.featured:hover { 
    transform: scale(1.02) translateY(-10px); 
}

.badge {
    background-color: var(--white); 
    color: var(--accent-dark); 
    padding: 0.4rem 1.2rem; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    align-self: center; 
    margin-bottom: 1rem; 
    font-weight: 700;
}

.card h3 { 
    color: var(--white); 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
}

.price { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    color: var(--white); 
    margin: 1rem 0; 
}

/* Info Boxen (Anzahlung, Fahrtkosten, etc.) */
.info-box-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem; 
    background: var(--bg-card); 
    border-radius: 20px; 
    padding: 2rem; 
    box-shadow: var(--shadow-sm); 
    margin-top: 3rem; 
    margin-bottom: 4rem; 
    text-align: left; 
    position: relative; 
    z-index: 1;
}

.info-box-item strong { 
    color: var(--white); 
    display: block; 
    margin-bottom: 0.5rem; 
}

/* Trenner für die normale Preisliste */
.section-divider-title {
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: var(--white); 
    text-align: center; 
    margin-top: 1rem; 
    margin-bottom: 3rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.8rem; 
    width: 100%;
}

/* Normale Preisliste (Schnitte, Farbe, etc.) */
.price-list-section {
    margin-top: 3rem; 
    position: relative; 
    z-index: 1; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto;
}

.price-category-title {
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    color: var(--white); 
    margin-top: 2.5rem; 
    margin-bottom: 1.5rem; 
    text-align: center; 
    border-bottom: 1px solid rgba(255,255,255,0.2); 
    padding-bottom: 0.5rem; 
    display: inline-block; 
    width: 100%;
}

.price-list-table { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 0.8rem; 
    text-align: left; 
}

.price-row {
    background: var(--bg-card); 
    padding: 1.2rem 1.5rem; 
    border-radius: 12px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: var(--shadow-sm); 
    border-left: 4px solid var(--accent-color); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    color: var(--white);
}

.price-row:hover { 
    transform: translateX(5px); 
    box-shadow: var(--shadow-md); 
    background: #a8967f; 
}

.price-row span:first-child { 
    font-weight: 500; 
    color: var(--white); 
    flex: 1; 
}

.price-row span:last-child {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    color: var(--white); 
    font-size: 1.1rem; 
    margin-left: 1rem; 
    text-align: right;
}

.price-note {
    text-align: center; 
    font-style: italic; 
    margin-top: 1.5rem; 
    font-size: 0.95rem; 
    color: var(--text-secondary); 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
}
/* --- FAQ --- */
#faq { background-color: var(--bg-color); text-align: center; }
#faq h2 { font-size: clamp(3rem, 8vw, 5rem); color: var(--white); margin-bottom: 0; }
.faq-subtitle {
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 2px; color: var(--white);
    margin-top: 0.5rem; margin-bottom: 3rem; opacity: 0.8;
}
.faq-container { max-width: 800px; margin: 0 auto; display: grid; gap: 1.5rem; text-align: left; }
.faq-item {
    background: var(--bg-card); padding: 2rem; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); text-align: left; transition: transform 0.3s, box-shadow 0.3s;
}
.faq-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.faq-question { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 0.8rem; }
.faq-answer { color: var(--text-secondary); }

/* --- CONTACT --- */
.contact-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 4rem;
    box-shadow: var(--shadow-lg); max-width: 800px; margin: 0 auto; text-align: center;
}
.phone-big {
    font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--white);
    display: block; margin: 1rem 0 2rem; transition: color 0.3s;
}
.phone-big:hover { color: var(--accent-color); }
.opening-hours-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem; margin-bottom: 1.5rem; text-align: center;
}
.hour-item {
    background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s, border-color 0.3s;
}
.hour-item:hover { transform: translateY(-3px); border-color: var(--white); }
.hour-day { display: block; font-weight: 600; color: var(--white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.hour-time { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--text-secondary); }
.hour-closed { color: #e0a0a0; }
.opening-note { font-size: 0.85rem; opacity: 0.8; margin-bottom: 3rem; color: var(--text-secondary); font-style: italic; }

/* --- KONTAKT FORMULAR STYLES (NEU) --- */
.contact-form {
    margin-top: 2.5rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-form h3 {
    text-align: center; 
    margin-bottom: 1.5rem; 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
    color: var(--white);
}

.contact-form-input,
.contact-form-textarea {
    width: 100%; 
    padding: 12px 15px; 
    background: rgba(255,255,255,0.05); 
    border: none; 
    border-radius: 8px; 
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1rem;
    box-sizing: border-box; 
    margin-bottom: 1rem;
    -webkit-appearance: none; 
}

.contact-form-textarea {
    resize: vertical; 
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary {
    width: 100%; 
    padding: 14px; 
    font-size: 1rem;
}

/* --- FOOTER --- */
footer { background-color: #9a8a76; color: #ead5c9; padding: 3rem 5%; text-align: center; padding-bottom: calc(2rem + var(--safe-area-inset-bottom)); }
.footer-buttons { margin-top: 1.5rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer-btn {
    display: inline-block; padding: 0.6rem 1.5rem; border: 1px solid var(--white);
    border-radius: 50px; color: var(--white); font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif; text-transform: uppercase;
    letter-spacing: 1px; transition: all 0.3s ease; background: transparent;
    cursor: pointer; text-decoration: none;
}
.footer-btn:hover { background: var(--white); border-color: var(--white); color: var(--accent-dark); transform: translateY(-2px); }
.footer-privacy { margin-top: 2rem; font-size: 0.8rem; opacity: 0.8; line-height: 1.5; max-width: 800px; margin-left: auto; margin-right: auto; }
.footer-privacy a { text-decoration: underline; color: var(--white); }

@keyframes heartbeat { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* --- SUBPAGE (Impressum / Datenschutz) --- */
.subpage-content { max-width: 800px; margin: 0 auto; padding: 10rem 5% 6rem; }
.subpage-content h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 2rem; }
.subpage-content h2 { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.subpage-content p, .subpage-content li { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0.8rem; }
.subpage-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.subpage-content a { color: var(--accent-color); text-decoration: underline; }
.back-link {
    display: inline-block; margin-bottom: 3rem; color: var(--white);
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    opacity: 0.8; transition: opacity 0.3s;
}
.back-link:hover { opacity: 1; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image-container { order: -1; max-width: 400px; margin: 0 auto; transform: none; }
    .hero-text p, .about-content p { margin-left: auto; margin-right: auto; }
    .card.featured { transform: scale(1); }
    .card.featured:hover { transform: translateY(-10px); }
    .about-content { text-align: center; order: 2; }
    .about-content h2 { text-align: center; }
    .about-photo-frame { order: 1; }
}

@media (max-width: 768px) {
    section { padding: 4rem 5%; }

    .nav-center-title { display: block; }

    .nav-links {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 350px;
        height: 100vh; height: 100dvh;
        background: var(--nav-bg);
        flex-direction: column; justify-content: center; align-items: center;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        padding-top: var(--safe-area-inset-top);
        padding-bottom: var(--safe-area-inset-bottom);
    }

    .nav-links.active { right: 0; }
    .nav-links li { opacity: 0; transform: translateX(20px); transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s; }
    .nav-links.active li { opacity: 1; transform: translateX(0); }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a { font-size: 1.2rem; margin: 0.8rem 0; }
    .mobile-menu-toggle { display: block; }

    .contact-card { padding: 2rem 1.5rem; }
    .phone-big { font-size: 2.5rem; }
    h1 { font-size: 2.5rem; } h2 { font-size: 2.2rem; }
    #portfolio h2 { font-size: 2.8rem; } #faq h2 { font-size: 2.8rem; }
    .footer-buttons { flex-direction: column; align-items: center; }
    .footer-btn { width: 100%; max-width: 280px; }
    .logo-img { height: 80px; width: 80px; }
    .price-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
    .price-row span:last-child { margin-left: 0; font-size: 1.2rem; }
    .greeting { font-size: 3rem; }
    .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    h1 { font-size: 2rem; }
    .hero-text .subtitle { font-size: 1.4rem; }
}

/* ============================================
   DATENSCHUTZ PAGE - Spezifische Stile
   ============================================ */

/* Andere Fonts für Datenschutz-Seite */
.ds-page body {
    font-family: 'Lora', serif;
    background-color: #ead5c9;
    color: #5a4a3a;
    font-size: 1.1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Subpage Header */
.subpage-header {
    background: rgba(234, 213, 201, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(90, 74, 58, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.header-logo img {
    height: 50px; width: 50px;
    border-radius: 50%; object-fit: cover;
    transition: transform 0.3s;
}

.header-logo .logo-name {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem;
    color: #8b7355;
    transition: color 0.3s;
}

.header-logo:hover { transform: scale(1.05); }
.header-logo:hover img { transform: rotate(10deg); }
.header-logo:hover .logo-name { color: #c4a580; }

/* Page Header */
.page-header {
    padding: 4rem 5% 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #8b7355;
    font-weight: 400;
    margin-bottom: 0.5rem;
    animation: fadeSlideDown 1s ease-out;
}

.page-header .page-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b5a4a;
    animation: fadeSlideUp 1.2s ease-out;
}

@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Content Section */
.content-section {
    padding: 2rem 5% 6rem;
    flex-grow: 1;
}

/* Text Block */
.text-block {
    background: #ffffff;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(90, 74, 58, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.text-block:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(90, 74, 58, 0.15); }

.text-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #c4a580;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.text-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #5a4a3a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.text-block p {
    color: #5a4a3a;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}
.text-block p:last-child { margin-bottom: 0; }

.text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.text-block ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #5a4a3a;
}
.text-block ul li::before {
    content: '•';
    position: absolute;
    left: 0; top: 0;
    color: #c4a580;
    font-size: 1.2rem;
    line-height: 1.5;
}

.text-block a { color: #c4a580; }
.text-block a:hover { text-decoration: underline; }

/* DS Card (Verantwortlicher) */
.ds-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(90, 74, 58, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}
.ds-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 8px;
    background: linear-gradient(90deg, #c4a580, #d4b896);
}

.ds-icon {
    width: 80px; height: 80px;
    background: #f5efe9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #c4a580;
    box-shadow: 0 4px 15px rgba(90, 74, 58, 0.05);
    animation: ds-pulse 2s infinite;
}
@keyframes ds-pulse {
    0% { box-shadow: 0 0 0 0 rgba(196, 165, 128, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(196, 165, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 165, 128, 0); }
}

.ds-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 0.5rem;
}

.ds-card .role {
    font-style: italic;
    color: #c4a580;
    margin-bottom: 2rem;
    display: block;
}

.ds-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.ds-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fdfcfa;
    border-radius: 12px;
    border: 1px solid #f0e8e0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.ds-item:hover { transform: translateX(5px); border-color: #c4a580; }

.ds-item-icon { color: #c4a580; font-size: 1.2rem; margin-top: 2px; }

.ds-item-content strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b5a4a;
    margin-bottom: 0.3rem;
}
.ds-item-content span { font-size: 1rem; color: #5a4a3a; }
.ds-item-content a { color: #c4a580; font-weight: 500; }
.ds-item-content a:hover { text-decoration: underline; }

/* DS Footer */
.ds-footer {
    background-color: #a89080;
    color: #ead5c9;
    padding: 2rem 5%;
    text-align: center;
    margin-top: auto;
}

.ds-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ead5c9;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid transparent;
    text-decoration: none;
}
.ds-back-link:hover {
    background: rgba(234, 213, 201, 0.1);
    border-color: #ead5c9;
    transform: translateX(-5px);
}

@media (max-width: 600px) {
    .ds-card, .text-block { padding: 2rem 1.5rem; }
    .ds-details-grid { gap: 1rem; }
    .header-logo .logo-name { font-size: 1.5rem; }
}