/* --- LOKALE SCHRIFTARTEN (DSGVO-Konform) --- */
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 300; src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 400; src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 900; src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 400; src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 500; src: url('../fonts/oswald-v57-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 700; src: url('../fonts/oswald-v57-latin-700.woff2') format('woff2'); }

:root {
    --primary: #e30613;
    --secondary: #1a1a1a;
    --bg-dark: #0f0f0f;
    --card-bg: #181818;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body { font-family: 'Montserrat', system-ui, -apple-system, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Oswald', system-ui, sans-serif; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* --- BARRIEREFREIHEIT (ACCESSIBILITY) WIDGET --- */
.a11y-widget { position: fixed; top: 100px; right: 0; z-index: 9995; display: flex; align-items: flex-start; }
.a11y-btn { background: var(--primary); color: white; border: none; width: 50px; height: 50px; font-size: 1.5rem; cursor: pointer; border-radius: 10px 0 0 10px; box-shadow: -5px 5px 15px rgba(0,0,0,0.3); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.a11y-btn:hover { background: #b3050f; width: 60px; }
.a11y-panel { background: white; width: 280px; padding: 20px; border-radius: 0 0 0 15px; box-shadow: -5px 5px 20px rgba(0,0,0,0.4); display: none; flex-direction: column; gap: 10px; }
.a11y-panel.open { display: flex; }
.a11y-option { background: #f4f4f4; border: 1px solid #ddd; padding: 12px; border-radius: 8px; text-align: left; font-family: inherit; font-size: 0.95rem; color: var(--secondary); cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 10px; }
.a11y-option:hover { background: #eee; border-color: #ccc; }
.a11y-option.active { background: var(--primary); color: white; border-color: var(--primary); font-weight: bold; }

body.a11y-high-contrast { --bg-dark: #000000; --card-bg: #000000; --text-light: #ffff00; --primary: #ffcc00; --text-muted: #ffffff; --glass: rgba(255,255,255,0.2); }
body.a11y-high-contrast .service-card, body.a11y-high-contrast .bg-light { border: 2px solid #ffff00; background: #000; color: #fff; }
body.a11y-high-contrast .bg-light h2, body.a11y-high-contrast .bg-light p, body.a11y-high-contrast .service-card-select h4 { color: #ffff00 !important; }
body.a11y-large-text { font-size: 1.2rem; }
body.a11y-large-text h1 { font-size: 4rem; }
body.a11y-large-text h2 { font-size: 2.5rem; }
body.a11y-large-text p { font-size: 1.2rem; }
body.a11y-dyslexia * { font-family: "Comic Sans MS", "Comic Sans", Arial, sans-serif !important; letter-spacing: 1px !important; }
body.a11y-no-animation * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }

/* --- COOKIE BANNER --- */
.cookie-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 9990; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(10px); }
.cookie-box { background: #1a1a1a; padding: 40px; border-radius: 15px; border: 1px solid #333; max-width: 500px; width: 90%; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.cookie-box a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.cookie-box a:hover { color: var(--primary); }
.cookie-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.btn-cookie { flex: 1; padding: 15px; border-radius: 5px; font-weight: 900; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: 0.3s; font-size: 1rem; }
.btn-cookie-accept { background: var(--primary); color: white; border: none; }
.btn-cookie-accept:hover { background: #b3050f; transform: translateY(-2px); }
.btn-cookie-reject { background: transparent; color: white; border: 2px solid #555; }
.btn-cookie-reject:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* --- FLOATING COOKIE BUTTON --- */
.floating-cookie-btn { position: fixed; bottom: 30px; left: 30px; background: var(--secondary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 2px solid #333; cursor: pointer; transition: 0.3s; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.floating-cookie-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px); }

nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(10px); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass); }
.logo { font-size: 1.8rem; font-weight: 900; color: white; text-decoration: none; font-family: 'Oswald', sans-serif; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 30px; }
.cta-call { color: var(--primary); font-weight: 900; text-decoration: none; font-size: 1.1rem; }
.nav-btn { padding: 12px 25px; font-size: 0.9rem; }

.mobile-toggle { display: none; color: white; font-size: 1.8rem; cursor: pointer; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(rgba(0,0,0,0.5), rgba(15,15,15,1)), url('../img/onixcarwash_header.PNG') center/cover no-repeat; background-attachment: fixed; text-align: center; padding: 0 20px; }
.hero-content h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 0.9; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary); display: block; }
.hero-content p { font-size: 1.3rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(227, 6, 19, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}
.btn-main { background: var(--primary); color: white; padding: 18px 40px; border-radius: 5px; text-decoration: none; font-weight: 900; text-transform: uppercase; transition: var(--transition); display: inline-block; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; text-align: center; }
.btn-main:hover:not(:disabled) { transform: translateY(-3px); background: #b3050f; box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3); }
.btn-main:disabled { background: #999; cursor: not-allowed; animation: none; }

section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; position: relative; display: inline-block; margin-bottom: 20px; }
.section-header h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 60%; height: 4px; background: var(--primary); }
.section-header p { color: var(--text-muted); max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

.bg-light { background-color: #f4f4f4; color: var(--secondary); }
.bg-light .section-header h2 { color: var(--secondary); }
.bg-light .section-header p { color: #555; }

.split-section { display: flex; align-items: center; gap: 60px; }
.split-text { flex: 1; }
.split-text h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.split-text h2 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.1; }
.split-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.split-image { flex: 1; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid var(--glass); }
.split-image img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.split-image:hover img { transform: scale(1.05); }

.premium-banner { background: var(--primary); color: white; text-align: center; padding: 80px 8%; }
.premium-banner h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.premium-banner p { font-size: 1.3rem; max-width: 900px; margin: 0 auto; font-weight: 500; }

.services-grid { display: grid; gap: 30px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card { background: var(--card-bg); padding: 40px 30px; border-radius: 15px; border: 1px solid var(--glass); transition: 0.4s; text-align: center; }
.service-card:hover { border-color: var(--primary); transform: translateY(-10px); background: #1f1f1f; }
/* FIX FÜR DIE ICONS (Inline-Block zentriert sie richtig im text-align: center container) */
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; display: inline-block; transition: 0.3s; }
.service-card:hover i { transform: scale(1.1); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

.ba-wrapper { --pos: 50%; max-width: 1000px; margin: 60px auto 0; border: 10px solid var(--card-bg); border-radius: 20px; overflow: hidden; position: relative; height: 500px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.ba-before { background-image: url('../img/before-after/Before_04.jpg'); z-index: 1; }
.ba-after { background-image: url('../img/before-after/After_04.jpg'); z-index: 2; clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%); }
.ba-slider-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; background: var(--primary); z-index: 10; cursor: ew-resize; transform: translateX(-50%); }
.ba-slider-handle::after { content: '\f07e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--primary); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 0 15px rgba(0,0,0,0.5); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.gallery-item { width: 100%; height: 250px; border-radius: 10px; overflow: hidden; position: relative; background: #ddd; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- MODALS & LIGHTBOX --- */
.modal, .lightbox { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); }
.modal-content { background-color: #fefefe; margin: 5% auto; padding: 30px; border: 1px solid #888; width: 90%; max-width: 800px; border-radius: 15px; position: relative; color: var(--secondary); }
.close, .lightbox-close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; transition: 0.3s;}
.close:hover, .lightbox-close:hover { color: var(--primary); }

.lightbox { display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(5px); }
.lightbox.active { opacity: 1; pointer-events: auto; display: flex; }
.lightbox img { max-width: 80%; max-height: 80vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); object-fit: contain; z-index: 10000; transition: 0.3s; }
.lightbox-close { position: absolute; top: 20px; right: 40px; color: white; font-size: 3.5rem; z-index: 10002; }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: white; border: none; font-size: 1.8rem; width: 60px; height: 60px; border-radius: 50%; cursor: pointer; transition: 0.3s; z-index: 10001; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.lightbox-nav:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: white; font-size: 1rem; font-weight: bold; background: rgba(0,0,0,0.6); padding: 8px 25px; border-radius: 30px; letter-spacing: 2px; backdrop-filter: blur(5px); }

.privacy-content { max-height: 85vh; display: flex; flex-direction: column; }
.privacy-text-body { overflow-y: auto; padding-right: 10px; line-height: 1.6; }

/* --- NEUES ERFOLGS MODAL --- */
.success-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(5px); }
.success-modal.active { display: flex; opacity: 1; pointer-events: auto; }
.success-content { background: #ffffff; padding: 50px 40px; border-radius: 15px; text-align: center; max-width: 450px; width: 90%; transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.success-modal.active .success-content { transform: translateY(0); }
.success-icon { font-size: 5rem; color: #e30613; margin-bottom: 20px; }
.success-btn { background: #e30613; color: white; border: none; padding: 15px 40px; border-radius: 8px; font-size: 1.1rem; font-weight: 900; font-family: inherit; cursor: pointer; transition: 0.3s; width: 100%; text-transform: uppercase; letter-spacing: 1px; }
.success-btn:hover { background: #b3050f; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3); }

/* --- BOOKING BEREICH MULTI-STEP --- */
.booking-container { max-width: 900px; margin: 0 auto; background: white; padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); position: relative; }
.step-indicator { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding: 0 20px; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; background: #eee; color: #999; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; transition: 0.3s; z-index: 2; position: relative; flex-shrink: 0; }
.step-dot.active { background: var(--primary); color: white; box-shadow: 0 0 15px rgba(227, 6, 19, 0.4); }
.step-line { flex: 1; height: 4px; background: #eee; margin: 0 -5px; z-index: 1; transition: 0.3s; }
.step-line.active { background: var(--primary); }

.services-selection { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: stretch; }
.services-selection:not(.has-active) { grid-auto-rows: 1fr; }
.service-card-select { background: #fff; border: 2px solid #eee; border-radius: 15px; padding: 20px; cursor: pointer; transition: all 0.4s ease; text-align: center; display: flex; flex-direction: column; height: 100%; position: relative; }
.service-card-select:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-card-select.active { border-color: var(--primary); background: #fff5f5; box-shadow: 0 10px 20px rgba(227, 6, 19, 0.1); }
.service-card-select img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; margin-bottom: 15px; display: block; }
.service-card-select h4 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 5px; }
.service-card-select p.desc { font-size: 0.9rem; color: #666; margin-bottom: 15px; flex-grow: 1; display: flex; align-items: flex-start; justify-content: center; }
.service-card-select .price { display: block; font-weight: 900; color: var(--primary); font-size: 1.3rem; margin-top: auto; }
.service-card-select .expanded-content { display: none; }
.services-selection.has-active .service-card-select:not(.active) { display: none; }
.services-selection.has-active .service-card-select.active { grid-column: 1 / -1; max-width: 700px; margin: 0 auto; cursor: default; transform: none !important; }
.services-selection.has-active .service-card-select.active .expanded-content { display: block; animation: fadeInDown 0.4s ease; margin-top: 20px; padding-top: 20px; border-top: 1px dashed #ddd; text-align: left; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.close-card-btn { display: none; position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.5); color: white; width: 35px; height: 35px; border-radius: 50%; text-align: center; line-height: 35px; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: 0.3s; backdrop-filter: blur(5px); }
.close-card-btn:hover { background: var(--primary); transform: scale(1.1); }
.service-card-select.active .close-card-btn { display: block; }
.long-desc { font-size: 0.95rem; color: #555; margin-bottom: 25px; line-height: 1.6; }
.extras-box h5 { margin-bottom: 15px; color: var(--secondary); font-size: 1.1rem; border-bottom: 2px solid #eee; padding-bottom: 5px; display: inline-block;}
.extra-item { display: flex; align-items: center; margin-bottom: 12px; cursor: pointer; font-size: 0.95rem; color: #333; position: relative; user-select: none; background: #f9f9f9; padding: 12px 15px; border-radius: 8px; border: 1px solid #eee; transition: 0.2s; }
.extra-item:hover { border-color: #ccc; }
.extra-item input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark-extra { height: 24px; width: 24px; background-color: #fff; border-radius: 5px; margin-right: 15px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: 0.2s; border: 2px solid #ccc; }
.extra-item:hover input ~ .checkmark-extra { background-color: #f0f0f0; }
.extra-item input:checked ~ .checkmark-extra { background-color: var(--primary); border-color: var(--primary); }
.extra-item input:checked ~ .checkmark-extra::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: white; font-size: 0.9rem; }
.extra-item input:checked ~ .extra-name { font-weight: bold; color: var(--primary); }
.extra-price { font-weight: 900; color: var(--primary); font-size: 1.05rem; }

.btn-back { background: transparent; border: 2px solid #ccc; color: #555; padding: 10px 20px; border-radius: 5px; font-size: 0.9rem; cursor: pointer; font-family: inherit; font-weight: 700; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-back:hover { border-color: var(--primary); color: var(--primary); background: #fff5f5; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group-full { grid-column: span 2; }
.form-grid-2 input { background: #fdfdfd; border: 2px solid #eee; padding: 18px; border-radius: 10px; font-size: 1rem; width: 100%; font-family: inherit; transition: var(--transition); color: var(--secondary); }
.form-grid-2 input:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 15px rgba(227, 6, 19, 0.1); }

.privacy-wrapper { background: #f9f9f9; padding: 20px; border-radius: 10px; border: 1px solid #eee; }
.privacy-label { display: flex; align-items: flex-start; gap: 15px; font-size: 0.9rem; color: #555; cursor: pointer; line-height: 1.5; position: relative; user-select: none; }
.privacy-text { display: block; flex: 1; }
.privacy-label input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: relative; top: 2px; height: 22px; width: 22px; background-color: #eee; border-radius: 5px; border: 2px solid #ccc; flex-shrink: 0; transition: 0.2s; }
.privacy-label:hover input ~ .checkmark { background-color: #e0e0e0; }
.privacy-label input:checked ~ .checkmark { background-color: var(--primary); border-color: var(--primary); }
.checkmark:after { content: ""; position: absolute; display: none; left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; transform: rotate(45deg); }
.privacy-label input:checked ~ .checkmark:after { display: block; }
.privacy-label a { color: var(--primary); text-decoration: underline; }

.summary-box { background: #fff; border: 2px solid #eee; border-radius: 15px; padding: 30px; margin-bottom: 20px; }
.summary-table { width: 100%; border-collapse: collapse; color: var(--secondary); }
.summary-table th { text-align: left; padding: 15px 0; border-bottom: 1px solid #eee; width: 40%; color: #777; font-weight: 500; }
.summary-table td { padding: 15px 0; border-bottom: 1px solid #eee; font-weight: 700; text-align: right; }
.summary-table tr:last-child th, .summary-table tr:last-child td { border-bottom: none; }

.verification-box { text-align: center; padding: 30px; background: #f9f9f9; border-radius: 15px; border: 2px dashed var(--primary); }
.v-input { font-size: 2.5rem !important; text-align: center; letter-spacing: 15px; font-weight: 900; border: 2px solid #ddd !important; border-radius: 10px; margin: 25px auto !important; width: 100%; max-width: 300px; padding: 10px !important; color: var(--secondary); background: #fff !important; }

footer { background: #050505; padding: 80px 8% 30px; border-top: 1px solid var(--glass); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { color: var(--text-muted); font-size: 1.4rem; transition: var(--transition); }
.social-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: #555; padding-top: 30px; border-top: 1px solid var(--glass); font-size: 0.9rem; }
.footer-bottom a { color: var(--primary); text-decoration: none; font-weight: bold; }

/* Cookie Button für die Map */
.map-cookie-btn { background: var(--primary); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; margin-top: 15px; font-family: inherit; transition: 0.3s; }
.map-cookie-btn:hover { background: #b3050f; transform: scale(1.05); }

.scroll-top { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; opacity: 0; pointer-events: none; transition: 0.3s; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: white; color: var(--primary); transform: translateY(-5px); }

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.appear, .slide-left.appear, .slide-right.appear { opacity: 1; transform: translate(0, 0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- GERMAN WORD-BREAK & MOBILE TYPOGRAPHY FIXES --- */
h1, h2, h3, h4, p, span, .service-card-select h4 { word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; }

@media (max-width: 992px) { 
    .hero { background-attachment: scroll; background-position: center top; }
    .nav-right .nav-btn { display: none; } 
    .mobile-toggle { display: block; } 
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #0f0f0f; padding: 20px 0; text-align: center; border-bottom: 2px solid var(--primary); }
    .nav-links.active { display: flex; }
    .split-section { flex-direction: column; text-align: center; } 
    .ba-wrapper { height: 350px; } 
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .footer-map iframe { height: 250px; }
    .social-links { justify-content: center; }
    
    .gallery-grid { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; -webkit-overflow-scrolling: touch; }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-grid { -ms-overflow-style: none; scrollbar-width: none; }
    .gallery-item { flex: 0 0 85% !important; max-width: 85% !important; scroll-snap-align: center; }
}

@media (max-width: 768px) {
    .premium-banner { padding: 50px 5%; }
    .premium-banner h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem !important; line-height: 1.2 !important; }
    .split-text h2 { font-size: 2rem !important; line-height: 1.2 !important; }
    .service-card-select h4 { font-size: 1.1rem !important; line-height: 1.4 !important; }
    .booking-container { padding: 25px !important; }
}

@media (max-width: 600px) {
    section { padding: 60px 5%; }
    .section-header h2 { font-size: 2.2rem; }
    .booking-container { padding: 30px 15px; } 
    .step-indicator { padding: 0; margin-bottom: 30px; }
    .step-dot { width: 32px; height: 32px; font-size: 1rem; }
    .services-selection { grid-template-columns: repeat(2, 1fr); gap: 10px; align-items: stretch; }
    .service-card-select { padding: 15px 10px; }
    .service-card-select img { aspect-ratio: 4/3; width: 100%; height: auto; object-fit: cover; }
    .service-card-select h4 { font-size: 0.95rem; line-height: 1.2; }
    .service-card-select p.desc { font-size: 0.75rem; margin-bottom: 10px; }
    .service-card-select .price { font-size: 1.1rem; margin-top: auto; }
    .services-selection.has-active .service-card-select.active { grid-column: span 2; }
    .btn-back { width: 100%; justify-content: center; margin-bottom: 20px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 15px; }
    .form-group-full { grid-column: 1; }
    .summary-box { padding: 20px 15px; }
    .summary-table th, .summary-table td { display: block; width: 100%; text-align: left; padding: 8px 0; }
    .summary-table th { padding-bottom: 2px; color: #555; border-bottom: none; }
    .summary-table td { padding-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
    .v-input { font-size: 2rem !important; letter-spacing: 5px; padding: 10px 5px !important; }
    .modal-content { padding: 20px 15px; width: 95%; margin: 10% auto; }
    .cookie-buttons { flex-direction: column; gap: 10px; }
    .a11y-widget { top: 80px; }
}