
:root {
    --bg-dark: #0f0c10;
    --bg-card: #17131a;
    --bg-card-hover: #221c26;
    --primary: #ff2a5f;
    --primary-hover: #e01d4d;
    --accent: #8b002f;
    --text-main: #f5f4f6;
    --text-sub: #a19da6;
    --green-dot: #00d084;
    --orange-dot: #ff9f00;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background-color: rgba(15, 12, 16, 0.95);
    border-bottom: 1px solid #231b26;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--primary);
    margin-left: 2px;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: var(--text-sub);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: white !important;
    padding: 6px 16px;
    border-radius: 20px;
    transition: background-color 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(23, 19, 26, 0.95) 0%, rgba(139, 0, 47, 0.15) 100%);
    border: none;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    margin: -40px calc(50% - 50vw) 50px;
    min-height: 100vh;
    min-height: calc(100svh - 69px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-section p {
    color: var(--text-main);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.badge-online {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--green-dot);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 208, 132, 0.4);
    backdrop-filter: blur(5px);
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Columns / Grid Card Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card-item {
    background-color: var(--bg-card);
    border: 1px solid #231b26;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.2s, background-color 0.2s;
}

.card-item:hover {
    transform: translateY(-3px);
    background-color: var(--bg-card-hover);
    border-color: #3b2a3d;
}

.card-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.card-item p {
    color: var(--text-sub);
    font-size: 15px;
}

/* Profiles Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.profile-card {
    background-color: var(--bg-card);
    border: 1px solid #231b26;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: #3b2a3d;
}

.profile-avatar-container {
    height: 250px;
    background-color: #2b2530;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.profile-status-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background-color: var(--green-dot);
    box-shadow: 0 0 8px var(--green-dot);
}

.status-dot.offline {
    background-color: var(--orange-dot);
    box-shadow: 0 0 8px var(--orange-dot);
}

.profile-info {
    padding: 20px;
}

.profile-name-age {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.profile-details {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.profile-message-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    color: #dfdbe3;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 54px;
}

.profile-card .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
}

/* Testimonials / Experiences */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 25px;
}

.testimonial-stars {
    color: #ffbf00;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-quote {
    color: var(--text-main);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--text-sub);
    font-size: 14px;
    font-weight: 600;
}

/* Dropdown / Location selector */
.location-selector {
    background-color: var(--bg-card);
    border: 1px solid #231b26;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.location-btn {
    display: block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.location-btn:hover {
    background-color: var(--primary);
    color: white;
}

/* Supporting Images */
.supporting-img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    border: 1px solid #231b26;
    margin: 30px auto;
    display: block;
    object-fit: cover;
}

/* Accordion FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    border-bottom: 1px solid #231b26;
    padding: 15px 0;
}

.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    color: var(--text-sub);
    margin-top: 10px;
    font-size: 15px;
    padding-right: 20px;
}

/* Info articles page layout */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 26px;
    margin: 35px 0 15px 0;
    color: white;
    border-bottom: 1px solid #231b26;
    padding-bottom: 8px;
}

.article-content > h1 {
    font-size: 32px;
    margin: 35px 0 15px 0;
    color: white;
    border-bottom: 1px solid #231b26;
    padding-bottom: 8px;
}

.article-content p {
    margin-bottom: 20px;
    color: #dfdbe3;
    font-size: 16px;
}

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #dfdbe3;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.form-control:focus-visible,
input[type="checkbox"]:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
nav a:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

th, td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid #231b26;
}

th {
    background-color: rgba(255, 255, 255, 0.03);
    color: white;
    font-weight: 600;
}

td {
    color: var(--text-sub);
}

tr:hover td {
    color: white;
}

/* Footer */
footer {
    background-color: #0b090c;
    border-top: 1px solid #1c151f;
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: #65616b;
    font-size: 13px;
}

@media (max-width: 800px) {
    .header-container {
        align-items: center;
        flex-direction: row;
        gap: 14px;
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 20px;
        flex-shrink: 0;
    }

    nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    nav a {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 6px 2px;
        font-size: 13px;
    }

    .nav-cta {
        padding: 6px 14px;
        white-space: nowrap;
    }

    main {
        padding: 28px 16px;
    }

    .hero-section {
        margin-top: -28px;
        min-height: calc(100svh - 60px);
        padding: 24px 20px;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section p {
        font-size: 17px;
    }

    .hero-ctas,
    .footer-links {
        flex-wrap: wrap;
    }

    .card-grid,
    .profile-grid,
    .testimonials-container {
        grid-template-columns: minmax(0, 1fr);
    }

    table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    th,
    td {
        min-width: 130px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .logo-text {
        font-size: 18px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .profile-info,
    .card-item,
    .testimonial-card {
        padding: 18px;
    }
}

/* ===== Footer-Sitemap (interne Verlinkung) ===== */
.footer-sitemap {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid #231b26;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-col a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

@media (max-width: 640px) {
    .footer-sitemap {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

/* ===== Age-Gate (18+ Verifizierung) ===== */
#age-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 8, 11, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: var(--bg-card);
    border: 1px solid #2c2430;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.age-gate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}

#age-gate-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.age-gate-box > p:not(.age-gate-badge):not(#age-gate-title) {
    color: var(--text-sub);
    font-size: 15px;
    margin-bottom: 20px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#age-gate-yes {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
}

#age-gate-yes:hover {
    background: var(--primary-hover);
}

.age-gate-no {
    color: var(--text-sub);
    font-size: 13px;
    text-decoration: none;
}

.age-gate-no:hover {
    color: var(--text-main);
}
