/* ============================================================
   Luxus Sexpuppen – styles.css
   Farbpalette: Tiefes Smaragdgrün + Platin/Silber + Warm-Weiß
   ============================================================ */

:root {
    /* Hintergründe */
    --bg:           #080f0d;   /* Sehr dunkles Smaragd-Schwarz */
    --bg-card:      #0e1a16;   /* Karte / erhöhte Fläche */
    --bg-section:   #0b1410;   /* Abwechselnde Section */
    --bg-header:    #060d0a;   /* Header etwas dunkler */

    /* Akzentfarbe: Platin-Silber */
    --accent:       #a8b8b0;   /* Platin-Silber, Hauptakzent */
    --accent-light: #c8d8d0;   /* Heller Platin für Hover */
    --accent-glow:  rgba(168, 184, 176, 0.18);

    /* Smaragd-Grün für strukturelle Elemente */
    --emerald:      #2d6a4f;   /* Smaragd-Grün */
    --emerald-mid:  #1b4332;   /* Dunkleres Grün für Borders */
    --emerald-soft: rgba(45, 106, 79, 0.25);

    /* Texte */
    --text:         #f0ede8;   /* Warm-Weiß, Haupttext */
    --text-soft:    #c4bfb8;   /* Gedämpfter Text */
    --muted:        #8a8880;   /* Sehr gedämpft */

    /* Typografie */
    --font:         'Georgia', 'Times New Roman', serif;
    --font-ui:      system-ui, -apple-system, 'Segoe UI', sans-serif;
    --max-prose:    72ch;

    /* Layout */
    --radius:       10px;
    --radius-lg:    16px;
    --shadow:       0 2px 16px rgba(0,0,0,0.45);
    --shadow-card:  0 4px 24px rgba(0,0,0,0.5);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 1.0625rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--accent-light); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 3px;
}

img { max-width: 100%; display: block; }

/* ── Container ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header & Navigation ── */
.site-header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--emerald-mid);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.logo {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}
.logo span {
    color: var(--accent);
    font-weight: 400;
}
.logo:hover { color: var(--text); }

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin-left: auto;
}

.main-nav a {
    color: var(--text-soft);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.main-nav a:hover {
    background: var(--emerald-soft);
    color: var(--accent-light);
}
.main-nav a[aria-current="page"] {
    background: var(--emerald);
    color: var(--text);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, #060d0a 0%, #0e1a16 50%, #0b1a14 100%);
    border-bottom: 1px solid var(--emerald-mid);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(45,106,79,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-family: var(--font);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.kicker {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.kicker::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 54ch;
}

/* ── Buttons ── */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald);
    color: var(--text) !important;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--emerald);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(45,106,79,0.35);
}
.button:hover {
    background: #3a8a65;
    border-color: #3a8a65;
    box-shadow: 0 4px 20px rgba(45,106,79,0.5);
    color: var(--text) !important;
}

/* Hero-Card */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--emerald-mid);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.75;
    box-shadow: var(--shadow-card);
    position: relative;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Sections ── */
.section {
    padding: 3.5rem 0;
}
.section + .section {
    border-top: 1px solid var(--emerald-mid);
}
.section.alt {
    background: var(--bg-section);
}

.section h2 {
    font-family: var(--font);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.1rem;
    line-height: 1.25;
}
.section h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent);
    margin-top: 0.5rem;
}

/* ── Page Head ── */
.page-head {
    background: linear-gradient(135deg, #060d0a 0%, #0e1a16 100%);
    border-bottom: 1px solid var(--emerald-mid);
    padding: 3.5rem 0 3rem;
}
.page-head h1 {
    font-family: var(--font);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
    font-size: 0.8rem;
    color: var(--muted);
    padding: 0.75rem 1.5rem;
    margin-bottom: 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-soft); }

/* ── Content Typography ── */
.content p,
.content li {
    color: var(--text-soft);
    line-height: 1.85;
    max-width: var(--max-prose);
}
.content p + p { margin-top: 1rem; }
.content strong { color: var(--text); font-weight: 600; }
.content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(168,184,176,0.35);
    text-underline-offset: 3px;
}
.content a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent-light);
}

/* ── Grids ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* ── Cards ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--emerald-mid);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
    border-left-color: var(--accent-light);
    box-shadow: 0 6px 28px rgba(0,0,0,0.55);
}
.card h3 {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
}
.card h3 a { color: var(--text); text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ── Info-Box ── */
.info-box {
    background: var(--bg-card);
    border: 1px solid var(--emerald-mid);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.info-box h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.info-box h2::after { display: none; }

/* ── Checks List ── */
.checks {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.checks li {
    padding: 0.45rem 0 0.45rem 1.75rem;
    position: relative;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(45,106,79,0.15);
}
.checks li:last-child { border-bottom: none; }
.checks li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.65rem;
    top: 0.6rem;
}

/* ── Tables ── */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--emerald-mid);
}
table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 0.92rem;
}
thead {
    background: var(--emerald);
}
thead th {
    padding: 0.85rem 1.1rem;
    text-align: left;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text);
}
tbody tr {
    border-bottom: 1px solid var(--emerald-mid);
    transition: background 0.15s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--emerald-soft); }
tbody td {
    padding: 0.85rem 1.1rem;
    color: var(--text-soft);
    vertical-align: top;
}
tbody td:first-child { color: var(--text); font-weight: 500; }

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(135deg, var(--emerald-mid) 0%, #0e1a16 100%);
    border-top: 1px solid var(--emerald);
    border-bottom: 1px solid var(--emerald);
    padding: 3.5rem 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-inner h2 {
    font-family: var(--font);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.cta-inner h2::after { display: none; }
.cta-inner p { color: var(--text-soft); max-width: 52ch; }
.cta-inner .button { flex-shrink: 0; margin-top: 0; }

/* ── FAQ ── */
.faq-list { margin-top: 1.5rem; }
.faq-item {
    border-bottom: 1px solid var(--emerald-mid);
    padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h2 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.faq-item h2::after { display: none; }
.faq-item p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: var(--max-prose);
}

/* ── Affiliate Note ── */
.affiliate-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--emerald-mid);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
    background: var(--bg-header);
    border-top: 1px solid var(--emerald-mid);
    margin-top: 0;
    padding-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}
.footer-heading {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.site-footer p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}
.site-footer ul {
    list-style: none;
    padding: 0;
}
.site-footer ul li { margin-bottom: 0.45rem; }
.site-footer ul a {
    color: var(--text-soft);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--accent-light); }

.footer-bottom {
    border-top: 1px solid var(--emerald-mid);
    padding: 1.25rem 1.5rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
}
.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--accent); }

/* ── 404 ── */
.error-page {
    text-align: center;
    padding: 6rem 1.5rem;
}
.error-page h1 {
    font-family: var(--font);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.error-page p { color: var(--text-soft); margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .footer-grid { grid-template-columns: 1fr; }

    .three-col { grid-template-columns: 1fr 1fr; }

    .hero { padding: 3.5rem 0 2.5rem; }

    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg-header);
        border-bottom: 1px solid var(--emerald-mid);
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        z-index: 99;
    }
    .main-nav.active { display: flex; }
    .main-nav a {
        font-size: 1rem;
        min-height: 48px;
        padding: 0.6rem 1rem;
    }

    .site-header { position: relative; }
    .nav-wrap { position: relative; flex-wrap: wrap; }

    .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .three-col { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.6rem; }
    .section { padding: 2.5rem 0; }
    .footer-grid { gap: 2rem; }
}
