/* =========================================
   1. VARIABLES & RESET (PREMIUM FEEL)
   ========================================= */
:root {
    --primary: #121212;       /* Tiefschwarz */
    --secondary: #4a4a4a;     /* Elegantes Dunkelgrau */
    --gold: #C5A059;          /* Ein etwas entsättigtes, edleres Gold */
    --white: #ffffff;
    --light-bg: #fcfcfc;      /* Sehr helles Grau, fast Weiß */
    --border: #e0e0e0;
    
    --font-serif: 'Playfair Display', serif; 
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.8;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s ease; }
ul { list-style: none; }

/* =========================================
   2. TYPOGRAPHY (Feiner & Leichter)
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 400;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
}

/* =========================================
   3. HEADER (Schlanker)
   ========================================= */
#main-header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex; align-items: center;
    transition: all 0.3s;
}

.header-inner {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo img { height: 32px; width: auto; }
.logo a { font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 1px; color: var(--primary); font-weight: 600; }
.logo span.gold { color: var(--gold); }

.desktop-nav ul { display: flex; gap: 35px; }
.desktop-nav a {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 500;
    position: relative;
}
.desktop-nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 1px;
    background: var(--gold); transition: 0.3s;
}
.desktop-nav a:hover::after { width: 100%; }

.btn-header {
    padding: 8px 20px;
    background: var(--primary); color: #fff;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
}

.header-spacer { height: 70px; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; padding: 80px 40px; transition: 0.4s; z-index: 1001;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
}
.mobile-nav.active { right: 0; }
.mobile-nav ul li { margin-bottom: 20px; }
.mobile-nav a { font-family: var(--font-serif); font-size: 1.2rem; }
.close-menu { position: absolute; top: 20px; right: 20px; border: none; background: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   4. HERO SPLIT LAYOUT
   ========================================= */
.hero-split {
    display: flex;
    min-height: 600px;
    overflow: hidden;
}
.hero-left {
    flex: 0 0 50%;
    background-color: #111;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
}
.hero-left::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 1px;
    background: rgba(197,160,89,0.15);
}
.hero-left-inner { max-width: 480px; }
.hero-accent-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-headline-accent {
    display: block;
    font-style: italic;
    color: var(--gold);
}
.hero-location {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
}
.btn-hero {
    display: inline-block;
    padding: 13px 32px;
    background: var(--gold);
    color: #111;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    text-decoration: none;
}
.btn-hero:hover { background: #e8cfa0; color: #111; }
.hero-right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}
.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero-rating-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 16px 28px;
    border: 1px solid rgba(197,160,89,0.3);
    backdrop-filter: blur(4px);
}
.hero-rating-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1px;
}
.hero-rating-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}
.btn-main {
    display: inline-block; padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.6); color: #fff;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;
    background: transparent; transition: all 0.5s ease;
}
.btn-main:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* =========================================
   5. SECTIONS ALLGEMEIN
   ========================================= */
.section-padding { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.bg-light { background-color: var(--light-bg); }

/* =========================================
   6. BILDER & TEAM (Kompakter)
   ========================================= */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.gallery-item { aspect-ratio: 1/1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; filter: grayscale(20%); }
.gallery-item:hover img { transform: scale(1.03); filter: grayscale(0); }

.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}
.img-wrapper { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 15px; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.team-card:hover img { filter: grayscale(0); }
.team-card h3 { font-size: 1rem; margin-bottom: 5px; }
.role { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   7. PREISLISTE (Elegant & Lesbar)
   ========================================= */
.price-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px; margin-top: 20px;
}
.cat-title {
    font-size: 1.2rem; border-bottom: 1px solid var(--border);
    padding-bottom: 10px; margin-bottom: 20px; color: var(--primary);
}
.price-row-wrapper { margin-bottom: 12px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; }
.service-name { font-size: 0.9rem; font-weight: 500; color: #333; background: var(--light-bg); padding-right: 10px; z-index: 1; }
.dots { flex-grow: 1; border-bottom: 1px dotted #ccc; height: 1px; position: relative; top: -4px; }
.service-price { font-size: 0.9rem; font-weight: 600; color: var(--gold); background: var(--light-bg); padding-left: 10px; z-index: 1; }
.service-desc { font-size: 0.75rem; color: #999; margin-top: 2px; font-style: italic; }

/* =========================================
   8. GOOGLE BEWERTUNGEN (Dezenter & FIX)
   ========================================= */
.bg-dark { background-color: #181818; color: #fff; }
.bg-dark h2 { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.review-card {
    background: #222; padding: 25px; border-radius: 4px;
    border: 1px solid #333; text-align: left;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; position: relative; }
.review-author-img {
    width: 35px; height: 35px; background: #444; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.review-date { font-size: 0.7rem; color: #777; }
.stars-row { font-size: 0.7rem; color: #fbbc04; margin-bottom: 10px; }
.review-text { font-size: 0.85rem; color: #ccc; line-height: 1.6; font-style: italic; }

/* FIX: Das Icon ist jetzt ein Font-Icon, kein Bild mehr */
.google-icon-small { 
    font-size: 1.1rem; 
    color: #fff; 
    opacity: 0.2; 
    position: absolute; 
    right: 0; 
    top: 0; 
}

.btn-outline-white { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 10px 25px; font-size: 0.7rem; text-transform: uppercase; display: inline-block; letter-spacing: 1px; }
.btn-outline-white:hover { border-color: #fff; background: #fff; color: #000; }

/* =========================================
   9. PARTNER LOGOS (Klein & Fein)
   ========================================= */
.partner-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 20px; }
.partner-item { width: 100px; height: 60px; display: flex; align-items: center; justify-content: center; }
.partner-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.4); transition: 0.4s; }
.partner-item:hover img { filter: grayscale(0) opacity(1); transform: scale(1.05); }

/* =========================================
   10. FOOTER & FLOATING (Optimiert)
   ========================================= */

.day { color: #ddd; }
.time { color: var(--gold); font-weight: 500; }

.contact-link:hover { color: var(--gold); text-decoration: underline; }



.legal-links a { margin-left: 15px; color: #777; transition: 0.3s; }
.legal-links a:hover { color: var(--gold); }
.legal-links .sep { margin-left: 15px; color: #333; }

.floating-cta { position: fixed; bottom: 24px; right: 24px; background: var(--gold); color: #fff; padding: 14px 22px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; text-decoration: none; display: flex; align-items: center; gap: 8px; z-index: 9999; box-shadow: 0 4px 20px rgba(188,155,106,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.floating-cta:hover { transform: scale(1.05); box-shadow: 0 6px 25px rgba(188,155,106,0.5); background: var(--primary); }

/* =========================================
   11. KONTAKTFORMULAR & MAP (Design)
   ========================================= */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form { padding: 25px; background: #fff; border: 1px solid var(--border); border-radius: 4px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 5px; color: #333; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 0.95rem; font-family: var(--font-sans); }
.form-group textarea { resize: vertical; }

/* =========================================
   12. COOKIE BANNER
   ========================================= */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: #1a1a1a; color: #fff; padding: 20px; z-index: 10000; box-shadow: 0 -5px 20px rgba(0,0,0,0.3); display: flex; justify-content: space-between; align-items: center; transition: bottom 0.5s ease; flex-wrap: wrap; gap: 20px; }
.cookie-banner.show { bottom: 0; }
.cookie-content h3 { color: var(--gold); font-size: 1rem; margin-bottom: 5px; }
.cookie-content p { font-size: 0.85rem; color: #ccc; max-width: 800px; }
.cookie-content a { text-decoration: underline; color: #fff; }
.cookie-actions { display: flex; gap: 15px; }
.btn-cookie-accept { background: var(--gold); color: #fff; border: none; padding: 10px 25px; cursor: pointer; font-weight: bold; text-transform: uppercase; font-size: 0.8rem; }
.btn-cookie-decline { background: transparent; color: #999; border: 1px solid #555; padding: 10px 20px; cursor: pointer; font-size: 0.8rem; }

/* =========================================
   13. FAQ ACCORDION
   ========================================= */
.faq-container { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; background: #fff; border: none; text-align: left; padding: 20px 25px; font-size: 1rem; font-family: var(--font-sans); font-weight: 500; color: var(--primary); cursor: pointer; transition: 0.3s; display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { background: #f9f9f9; color: var(--gold); }
.faq-question.active { background: #fcfcfc; color: var(--gold); }
.faq-question .icon { font-size: 1.5rem; font-weight: 300; color: #ccc; transition: 0.3s; }
.faq-question.active .icon { color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: #fff; }
.faq-content { padding: 0 25px 25px 25px; font-size: 0.9rem; color: #666; line-height: 1.6; }
.faq-content a { color: var(--gold); text-decoration: underline; }

/* =========================================
   14. MOBILE ANPASSUNG
   ========================================= */
/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
    background-color: #0d0d0d;
    color: #c8c8c8;
    padding: 70px 0 0;
    font-size: 0.88rem;
    line-height: 1.7;
    border-top: 3px solid var(--gold);
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
}

.footer-tagline {
    margin-top: 6px;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.footer-col-title {
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-address {
    font-style: normal;
    color: #aaa;
    line-height: 1.9;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(188,155,106,0.1);
}

/* Öffnungszeiten */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #1e1e1e;
    font-size: 0.84rem;
    color: #bbb;
}

.footer-hours li:last-child { border-bottom: none; }

.footer-hours li .day { color: #888; }
.footer-hours li .time { color: #ddd; font-variant-numeric: tabular-nums; }
.footer-hours li.closed .time { color: #555; }

/* Kontakt-Links */
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-contact-link i {
    width: 16px;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-contact-link:hover { color: #fff; }
.footer-contact-link[href^="tel:"] { color: var(--gold); font-weight: 600; font-size: 1rem; }
.footer-contact-link[href^="tel:"]:hover { color: #fff; }

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    background: var(--gold);
    color: #fff;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-cta:hover {
    background: #a8864e;
    color: #fff;
    transform: translateY(-1px);
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.74rem;
    color: #555;
}

.footer-bottom p { margin: 0; }

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }

/* Legacy selectors – compatibility */
#footer-main {
    background-color: #0d0d0d;
}
footer#kontakt {
    background-color: #0d0d0d;
}

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-split { flex-direction: column; min-height: auto; }
    .hero-left { flex: none; padding: 50px 30px; }
    .hero-right { flex: none; height: 60vw; min-height: 260px; }
    .hero-headline { font-size: 2.4rem; }
    .hero-rating-badge { bottom: 20px; right: 20px; padding: 12px 18px; }
    .hero-rating-value { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
    .price-grid, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* floating-cta mobile: same as desktop */
    
    .hours-list-footer li { justify-content: center; gap: 20px; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; justify-content: center; }
}

/* Partner Section Styling */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}
.partner-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.partner-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
.partner-card .field {
    margin-top: 10px;
}
.partner-card .field label {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}
.partner-card .field input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
}