/* ==========================================================================
   FIX: ABOUT ("HALLO!" + "Wir sind Saskia & Jörg") Sichtbarkeit & Größen
   ========================================================================== */
.text-white { color: #ffffff !important; }

#ueber-uns .subtitle-gold {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

/* Wunsch: "HALLO!" am Desktop größer */
@media (min-width: 992px) {
    #ueber-uns .subtitle-gold {
        font-size: 1.25rem;
        letter-spacing: 5px;
    }
}

#ueber-uns h2 {
    color: #ffffff !important;
    font-size: 2.8rem;
    margin-bottom: 24px;
    text-align: left;
}

@media (max-width: 900px) {
    #ueber-uns h2 { font-size: 2.1rem; text-align: center; }
    #ueber-uns .subtitle-gold { font-size: 0.95rem; text-align: center; }
}

/* Extra klein: Überschrift etwas kompakter */
@media (max-width: 400px) {
    #ueber-uns h2 { font-size: 1.9rem; }
}

/* ==========================================================================
   CONSISTENCY: Section background & shared elements
   ========================================================================== */
.section-soft { 
    background-color: #fafafa; 
    padding: 60px 0;
}

.divider { 
    width: 60px; 
    height: 3px; 
    background: var(--gold); 
    margin: 0 auto 40px; 
}

/* ==========================================================================
   CONSISTENCY: Intro-Box (Layouts/Hintergründe/Gästebuch)
   ========================================================================== */
.intro-box {
    background: var(--white);
    border-radius: 12px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 0 auto 50px;
    max-width: 1200px;
}

.intro-box-inner {
    padding: 40px;
    text-align: center;
}

.intro-box-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    background: #fcfcfc;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
}

/* ==========================================================================
   CONSISTENCY: Gästebuch Breite wie Layouts/Hintergründe
   ========================================================================== */
.gb-form,
.gb-list,
.status-msg {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gb-list { margin-top: 10px; }

/* ==========================================================================
   PREMIUM SECTION: 3 SCHRITTE (Ablauf)
   ========================================================================== */
.steps-section h2 { margin-bottom: 50px; }

.steps-grid {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    align-items: stretch;
}

.step-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 190px;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 91, 0.55);
    box-shadow: 0 26px 55px rgba(0,0,0,0.12);
}

.step-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 91, 0.55);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: rgba(200, 168, 91, 0.08);
    font-size: 1rem;
}

.step-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0.9;
}

.step-card h3 {
    margin-top: 52px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--dark);
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid { flex-direction: column; }
    .step-card { padding: 28px 22px 24px; }
    .step-card h3 { margin-top: 50px; }
}

/* =====================================================
   FAQ SECTION (Neu hinzugefügt – 28.02.2026)
   ===================================================== */

/* Hinweis: Alle Styles sind strikt scoped (.faq-section-*) und überschreiben keine bestehenden Klassen. */

.faq-section-accordion {
    margin-top: 30px;
}

.faq-section-item {
    transform: translateY(0);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
    overflow: hidden;
    margin-bottom: 15px;

    transition: transform 180ms ease, box-shadow 180ms ease;
}

/* Subtiler Hover-/Focus-Effekt (Desktop) – im Stil der bestehenden Karten */
@media (hover: hover) and (pointer: fine) {
    .faq-section-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    }

    .faq-section-item .faq-section-question:focus-visible {
        outline: none;
    }

    .faq-section-item:has(.faq-section-question:focus-visible) {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    }
}

/* Geöffneter Zustand minimal betont (auch mobil) */
.faq-section-item.faq-section-active {
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.faq-section-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 18px 20px;
    min-height: 56px; /* große Touch-Fläche */

    font: inherit;
    font-weight: 700;
    color: inherit;
}

.faq-section-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-section-icon::before {
    content: "›";
    display: inline-block;
    color: var(--gold);
    transform: rotate(0deg);
    transition: transform 220ms ease;
}

.faq-section-item.faq-section-active .faq-section-icon::before {
    transform: rotate(90deg);
}

.faq-section-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-2px);
    transition: max-height 280ms ease, opacity 220ms ease, transform 220ms ease;
}

.faq-section-item.faq-section-active .faq-section-answer {
    padding: 0 20px 18px 20px;
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

.faq-section-bridge-text {
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .faq-section-question {
        padding: 18px 16px;
    }
    .faq-section-answer {
        padding: 0 16px;
    }
    .faq-section-item.faq-section-active .faq-section-answer {
        padding: 0 16px 18px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-section-icon::before,
    .faq-section-answer {
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .faq-section-question {
        font-weight: 700;
    }
}

/* =====================================================
   CONVERSION ADD-ONS (Neu hinzugefügt – 28.02.2026)
   ===================================================== */

/* Trust-Strip unter dem Hero – scoped */
.conv-trust-strip {
    padding: 12px 0;
    background: rgba(0,0,0,0.03);
}

.conv-trust-strip .container {
    text-align: center;
    font-weight: 600;
}

/* "Meist gebucht" Badge im Paketbereich – scoped */
/* Guide-Text über dem Formular – scoped */
.conv-form-guide {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #444;
    text-align: center;
}

/* =====================================================
   10/10 Feinschliff (Neu hinzugefügt – 28.02.2026)
   Scoped only - conv-*
   ===================================================== */

.conv-form-micro {
    text-align: center;
    margin: 6px 0 12px 0;
    font-size: 14px;
    color: #555;
}

/* =====================================================
   Paket 200 Hervorhebung (Neu hinzugefügt – 28.02.2026)
   Scoped only - conv-package-featured / conv-badge
   ===================================================== */

/* Nur optische Hervorhebung – keine Layout-/Bildverschiebung */

/* =====================================================
   Paket 200 Badge (Clean) (Neu hinzugefügt – 28.02.2026)
   Scoped only - conv-badge-inline
   ===================================================== */

.conv-badge-inline {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 12px;
    background: rgba(200,168,91,0.10);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}

/* =====================================================
   PREMIUM PACKAGES NOTE (Gold & zentriert)
   ===================================================== */

.conv-packages-note {
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 18px;
}

/* ==========================================================================
   10/10 PREMIUM POLISH (Desktop + Mobile) – 01.03.2026
   Minimal-invasive: nur Feinschliff, keine Layout-Neubauten
   ========================================================================== */

/* --- Featured Package (Druckpaket 200) – subtil, aber klar --- */
.p-card.conv-package-featured {
    border: 1px solid rgba(200, 168, 91, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}
.p-card.conv-package-featured .btn-p-request {
    background: var(--gold-metal);
    border-color: var(--gold-dark);
    color: #fff;
}

/* --- Mobile: Hero entspannen (Typo & Luft) --- */
@media (max-width: 900px) {
    .hero { height: 68vh !important; } /* etwas weniger Scroll-Höhe auf Mobile */
    .hero h1 {
        font-size: 1.95rem !important;
        line-height: 1.18 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.2px;
    }
    .hero-description {
        font-size: 1.05rem !important;
        margin: 0 auto 24px !important;
        line-height: 1.55 !important;
        opacity: 0.92;
    }
    .hero-topline {
        font-size: 0.78rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 10px !important;
    }
    .hero-location {
        margin-top: 18px !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    .btn-gold {
        padding: 14px 32px !important;
        font-size: 1.05rem !important;
    }

    /* Sektionen: etwas mehr Rhythmus */
    section { padding: 52px 0 !important; }

    /* Vorteile: Karten etwas "luftiger" */
    .exp-card { margin-bottom: 10px; }
    .exp-icon { font-size: 3.1rem; margin: 0 auto 16px; width: max-content; line-height: 1; text-align: center; }

    /* Pakete: bessere Lesbarkeit & Hierarchie */
    .pricing-grid { gap: 14px !important; }
    .p-card { box-shadow: 0 6px 18px rgba(0,0,0,0.10); }
    .p-card.conv-package-featured {
        transform: none;
        border-color: rgba(200, 168, 91, 0.55);
        box-shadow: 0 12px 32px rgba(0,0,0,0.16);
    }
    .p-card.conv-package-featured .p-card-img {
        border-bottom-color: rgba(200, 168, 91, 0.85);
    }

    /* Reviews: Karten etwas ruhiger */
    .review-card { box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
}

/* --- Very small phones --- */
@media (max-width: 480px) {
    .hero {  }
    .hero h1 { font-size: 1.8rem !important; }
    .hero-description { font-size: 1.0rem !important; }
}


/* --- Review Autoritätsanker --- */
.conv-review-anchor {
    text-align: center;
    margin-bottom: 30px;
}
.conv-review-anchor h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 6px;
}
.conv-review-anchor p {
    font-size: 0.95rem;
    color: #666;
}



/* --- Fullscreen Hero with visible sticky navbar (Mobile) --- */
@media (max-width: 900px) {
    .hero {
        min-height: calc(100svh - 80px) !important;
    }
}

/* ==========================================================================
   PREMIUM: Navbar Shrink on Scroll (subtil) – 01.03.2026
   ========================================================================== */

.navbar.nav-shrink {
    padding: 6px 5%;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}

.navbar.nav-shrink .nav-logo-img {
    height: 92px;
}

/* Mobile: etwas kleiner, aber gut tappable */
@media (max-width: 900px) {
    .navbar.nav-shrink .nav-logo-img {
        height: 64px;
    }
}

/* ==========================================================================
   EMOTIONAL BRAND UPGRADE – 01.03.2026
   ========================================================================== */

/* Hero stronger hierarchy */
.hero-highlight {
    font-size: 1.15em;
    font-weight: 700;
}

/* Review teaser */
.brand-teaser {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}
.brand-teaser a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

/* About stronger claim */
.about-claim {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    /* Wunsch: Statement in Gold (PC + Mobil) */
    color: var(--gold);
}

/* Namen im About-Titel nicht umbrechen */
.name-nowrap { white-space: nowrap; }

/* Slightly more space around about section */
#ueber-uns {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 900px) {
    .about-claim {
        font-size: 1.05rem;
        text-align: center;
    }
}

/* ==========================================================================
   EMOTIONAL REFINEMENT V2 – 01.03.2026
   ========================================================================== */


/* About claim isolation */
.about-claim-wrapper {
    margin: 30px 0 35px 0;
}

.about-claim-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    /* Wunsch: Linie auch am Desktop zentrieren */
    margin: 14px auto 0;
}

@media (max-width: 900px) {
    .hero-emotion {
        font-size: 1rem;
    }
    .about-claim-line {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   MOBILE FIX: Kein horizontales Scrollen (Google Bewertungen) – 01.03.2026
   ========================================================================== */

/* Sicherheitsnetz: verhindert horizontales Scrollen durch einzelne Elemente */
html, body { max-width: 100%; overflow-x: hidden; }

/* Reviews: Karten dürfen nie breiter als der Viewport werden */
.reviews-container { max-width: 100%; overflow-x: hidden; }
.review-card { max-width: 100%; }

/* Mobile: Reviews-Karten flexibel statt feste Breite */
@media (max-width: 600px) {
    .reviews-container { padding-left: 10px; padding-right: 10px; }
    .review-card { width: 100% !important; }
}

/* =============================
   UTILITIES / REFACTOR (Inline -> CSS)
   ============================= */
.u-text-left{ text-align:left; }
.u-text-center{ text-align:center; }
.u-mt-15{ margin-top:15px; }
.u-mt-20{ margin-top:20px; }
.u-inline{ display:inline; }
.landing-section-lead{ text-align:center; max-width:820px; margin:0 auto 35px; opacity:0.92; }
.faq-section-cta{ margin-top:18px; }

.review-link{
  color: var(--gold);
  font-weight:700;
  text-decoration:none;
}
.review-link:hover{ text-decoration:underline; }

/* Legal pages */
.legal-container{ max-width:900px; }
.legal-text{ margin-top:40px; color:#444; line-height:1.8; font-size:0.95rem; }
.legal-h3{ color: var(--dark); border-left:4px solid var(--gold); padding-left:15px; margin-top:30px; }
.legal-list{ padding-left:20px; }

/* Package / extras images */
.pkg-img, .extra-img{ height:auto; width:100%; max-width:200px; display:block; margin:0 auto; }
.pkg-img--200{ max-width:200px; }
.pkg-img--180{ max-width:180px; }
.pkg-img--120{ max-width:120px; }
.extra-img--200{ max-width:200px; }
.extra-img--140{ max-width:140px; }

/* Form helpers */
.input-full{ width:100%; font-family:inherit; }
.input{ font-family:inherit; }
.c-row{ display:flex; gap:10px; }
.w-30{ width:30%; }
.w-70{ width:70%; }
@media (max-width: 600px){
  .c-row{ flex-direction:column; }
  .w-30,.w-70{ width:100%; }
}

.hp-field{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Guestbook */
.guestbook-subtitle{ margin-bottom:15px; font-size:1.1rem; color:var(--dark); text-transform:uppercase; letter-spacing:1px; }
.guestbook-lead{ line-height:1.7; color:#555; max-width:650px; margin:0 auto; }
.check-gold{ color: var(--gold); }
.status-success{ color:#27ae60; background:#eef9f1; border:1px solid #27ae60; }
.form-label{ display:block; margin-bottom:5px; font-size:0.8rem; font-weight:700; }
.form-label-inline{ font-size:0.9rem; }
.form-input, .form-textarea{ width:100%; padding:12px; margin-bottom:20px; border:1px solid #ddd; border-radius:5px; font-family:inherit; }
.form-captcha{ width:70px; padding:8px; border:1px solid #ccc; border-radius:5px; font-family:inherit; }
.btn-block{ width:100%; border:none; cursor:pointer; padding:16px; font-weight:700; font-size:1rem; border-radius:5px; }
.guestbook-empty{ color:#888; font-style:italic; }
.text-success{ color:#27ae60; }
.btn-link{ cursor:pointer; background:transparent; border:0; padding:0; text-decoration:underline; }

/* Layout/Hintergrund pages */
.page-subtitle{ color: var(--dark); margin-bottom:15px; text-transform:uppercase; letter-spacing:1px; font-size:1.1rem; }
.page-lead{ color:#555; line-height:1.7; font-size:1rem; margin-bottom:20px; }
.feature-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:20px; border-top:1px solid #eee; padding-top:20px; }
.feature-item{ font-size:0.9rem; color:#555; }
.feature-empty{ grid-column: 1/-1; }

/* Designs page */
.designs-split{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:22px;
    margin-top:26px;
}
.design-card{
    display:block;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:16px;
    padding:26px;
    text-decoration:none;
    color:inherit;
    box-shadow:0 10px 26px rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.design-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
    border-color: rgba(200,168,91,0.35);
}
