/* =====================================================================
   elegance.css  ·  bordell-ka.de
   Eleganz-Overlay im Stil des Logos: Gold, Rubin, klassische Serife.
   Wird sitenweit NACH style.css geladen und veredelt Typografie,
   Badges, Buttons, Karten und Trenner – ohne das Layout zu brechen.
   ===================================================================== */

:root {
    --gold-grad: linear-gradient(180deg, #f7e7a8 0%, #d4af37 45%, #9a7b26 100%);
    --gold-line: linear-gradient(90deg, rgba(212,175,55,0) 0%, #d4af37 50%, rgba(212,175,55,0) 100%);
    --ruby: #c8102e;
}

/* --- Elegante Display-Serife für Überschriften (wie im Logo) -------- */
.section-title,
.profile-hero h1,
.imprint-hero h1,
.hero-content h1,
.girls-hero h1,
.contact-section h2,
.events-section h2,
.dashboard-card h2 {
    font-family: 'Cinzel', 'Playfair Display', serif !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Goldener Metallic-Gradient-Text (verfeinert) */
.gradient-text,
.section-title.gradient-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

/* Ziertrenner unter Section-Titeln (Goldlinie mit Rubin-Raute) */
.section-title {
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 1.6rem;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: var(--gold-line);
}
.section-title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translate(-50%, 0) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--ruby);
    box-shadow: 0 0 8px rgba(200,16,46,0.7);
    z-index: 1;
}

/* --- Haus-Badge (Gold-Plakette wie "HAUS 13 + 15" im Logo) ---------- */
.house-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1206;
    background: var(--gold-grad);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(247,231,168,0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
    line-height: 1;
}
/* Haus-Badge in der Hero-Meta (Detailseite) – heller auf dunkel */
.hero-meta .house-badge {
    position: static;
    display: inline-block;
}

/* Haus-Detail-Item (Tür-Icon) goldig hervorheben */
.detail-item .fa-door-open {
    color: var(--gold-color);
}

/* --- Buttons / Links im Goldstil ----------------------------------- */
.site-link,
.nav-button,
.back-button {
    background: var(--gold-grad);
    color: #1a1206 !important;
    border: 1px solid rgba(247,231,168,0.7);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.site-link:hover,
.nav-button:hover,
.back-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

/* Telefon-Direktwahl-Button in der Nav etwas edler */
.phone-button {
    border-radius: 999px;
    letter-spacing: 0.02em;
}

/* --- Karten edler (tieferes Schwarz, Goldrahmen, sanfter Glow) ------ */
.girl-card,
.event-card,
.dashboard-card,
.contact-card {
    background: linear-gradient(180deg, #120c0a 0%, #0a0608 100%);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.girl-card:hover,
.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 18px rgba(212,175,55,0.18);
}
.girl-card .girl-info h3 {
    font-family: 'Cinzel', 'Playfair Display', serif;
    letter-spacing: 0.04em;
}

/* --- "Weitere Damen" auf der Detailseite (self-contained) ----------- */
.related-girls-section {
    max-width: 1200px;
    margin: 3rem auto 1rem;
    padding: 0 1.5rem;
}
.related-girls-section .section-title {
    text-align: center;
}
.related-girls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.related-girls-grid .girl-card .girl-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.related-girls-grid .girl-card .girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-girls-grid .girl-info {
    padding: 1rem;
    text-align: center;
}
.related-girls-grid .country-flag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.6);
    z-index: 3;
}
.related-girls-grid .country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .related-girls-grid { grid-template-columns: 1fr; }
}

/* --- Footer-Links / dezente Goldakzente ---------------------------- */
.footer-link:hover {
    color: var(--gold-bright);
}

/* Sanfte Vignette für mehr Tiefe (Logo-Look) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 80% at 50% 0%, rgba(200,16,46,0.06) 0%, rgba(0,0,0,0) 45%);
    z-index: 0;
}

/* =====================================================================
   RESPONSIVE ÜBERSCHRIFTEN  ·  lange Wörter nie abschneiden
   Behebt das Umbrechen/Abschneiden von Hero- und Section-Titeln auf
   Tablet/Handy (z.B. HAUSORDNUNG, IMPRESSIONEN, VERANTWORTLICH,
   ZIMMERVERMIETUNG). Wird zuletzt geladen und überschreibt seitenspez. CSS.
   ===================================================================== */
.section-title,
.neon-text,
.gradient-text,
.hero-content h1,
[class*="hero"] h1 {
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    max-width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
    [class*="hero"] h1,
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 3.4rem) !important;
        letter-spacing: 0.03em !important;
        line-height: 1.15 !important;
        white-space: normal !important;
    }
    .section-title {
        font-size: clamp(1.5rem, 4.5vw, 2.4rem) !important;
        letter-spacing: 0.03em !important;
        line-height: 1.2 !important;
    }
}

/* Handy */
@media (max-width: 768px) {
    [class*="hero"] h1,
    .hero-content h1 {
        font-size: clamp(1.5rem, 7.5vw, 2.6rem) !important;
        letter-spacing: 0.02em !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .section-title,
    .section-title.gradient-text,
    .section-title.neon-text {
        font-size: clamp(1.25rem, 5.6vw, 2rem) !important;
        letter-spacing: 0.02em !important;
        line-height: 1.2 !important;
    }
    .section-title::after  { width: 110px; }
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.25rem) !important;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
        line-height: 1.35;
    }
}

/* Kleine Handys */
@media (max-width: 430px) {
    [class*="hero"] h1,
    .hero-content h1 {
        font-size: clamp(1.3rem, 8.5vw, 2rem) !important;
        letter-spacing: 0.01em !important;
    }
    .section-title {
        font-size: clamp(1.1rem, 6vw, 1.7rem) !important;
        letter-spacing: 0.01em !important;
    }
}
