/*
Theme Name: Primesexting Custom
Theme URI: https://primesexting.com
Author: Primesexting Team
Description: Ein rasantes, conversion-optimiertes Theme für Erotik-Arbitrage.
Version: 1.0
*/

/* Grund-Einstellungen */
:root { --primary: #e60050; --primary-hover: #c40044; --text-dark: #111; --text-gray: #555; --bg-light: #f9f9f9; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
body { background: #fff; color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

/* Hero Bereich */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; padding: 0 8%; background: url('https://substackcdn.com/image/fetch/$s_!qrou!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F42343fd0-31e9-4824-9f08-ca23583ba620_1400x2100.jpeg') no-repeat center center/cover; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 550px; color: #fff; }
.logo { font-size: 32px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.logo strong { font-weight: 800; color: var(--primary); }
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero p { font-size: 20px; font-weight: 300; margin-bottom: 35px; color: #ddd; }
.btn-hero { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; text-decoration: none; padding: 18px 40px; font-size: 18px; font-weight: 700; border-radius: 30px; transition: background 0.3s, transform 0.2s; }
.btn-hero:hover { background: var(--primary-hover); transform: translateY(-2px); text-decoration: none; }
.app-badges { display: flex; gap: 15px; margin-top: 30px; align-items: center; }
.badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

/* SEO Bereiche */
.seo-section { padding: 90px 8%; }
.bg-gray { background: var(--bg-light); }
.container { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: center; }
.row-reverse { flex-direction: row-reverse; }
.seo-text { flex: 1; }
.seo-text h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.2; font-weight: 800; letter-spacing: -0.5px; }
.seo-text h3 { font-size: 22px; margin-top: 25px; margin-bottom: 10px; font-weight: 700; color: var(--primary); }
.seo-text p { color: var(--text-gray); margin-bottom: 18px; font-size: 17px; }
.seo-text ul { margin-left: 20px; margin-bottom: 20px; color: var(--text-gray); }
.seo-text li { margin-bottom: 8px; }
.seo-image { flex: 1; position: relative; }
.seo-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* FAQ Bereich */
.faq-section { max-width: 800px; margin: 0 auto; padding: 80px 5%; }
.faq-section h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid #ddd; padding: 20px 0; }
.faq-question { font-size: 18px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); }
.faq-answer { display: none; margin-top: 15px; color: var(--text-gray); font-size: 16px; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.3s ease; }
.faq-item.active .faq-question { color: var(--primary); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Optimierung */
@media (max-width: 900px) {
    .hero { padding: 0 5%; justify-content: center; text-align: center; }
    .hero::before { background: rgba(0,0,0,0.6); }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero h1 { font-size: 38px; }
    .app-badges { justify-content: center; flex-wrap: wrap; }
    .container, .row-reverse { flex-direction: column; gap: 40px; }
    .seo-section { padding: 60px 5%; }
    .seo-text h2 { font-size: 28px; }
}

/* =========================================
   HEADER STYLING (Global)
   ========================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.header-logo {
    font-size: 22px; font-weight: 300; letter-spacing: 2px;
    text-transform: uppercase; color: #fff; text-decoration: none;
}
.header-logo strong { font-weight: 800; color: var(--primary); }

.header-nav .primary-menu {
    list-style: none; display: flex; gap: 30px; margin: 0; padding: 0;
}
.header-nav .primary-menu li a {
    color: #ccc; text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.3s;
}
.header-nav .primary-menu li a:hover { color: var(--primary); }

.header-login-btn {
    color: #fff; text-decoration: none; border: 1.5px solid #fff;
    padding: 8px 22px; border-radius: 20px; font-size: 14px; font-weight: 600;
    background: rgba(0,0,0,0.2); transition: background 0.3s, color 0.3s;
}
.header-login-btn:hover { background: #fff; color: #000; }

/* =========================================
   FOOTER STYLING (Global)
   ========================================= */
.site-footer {
    background: #0a0a0b; color: #888; padding: 60px 5%;
    border-top: 1px solid #1a1a1c;
}

.footer-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}

.footer-logo {
    font-size: 20px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: #555;
}
.footer-logo strong { font-weight: 800; }

.footer-info { font-size: 13px; line-height: 1.6; max-width: 500px; }

.footer-nav .footer-menu {
    list-style: none; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0;
}
.footer-nav .footer-menu li a {
    color: #888; text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.3s;
}
.footer-nav .footer-menu li a:hover { color: #fff; }

/* Mobile Anpassungen Header */
@media (max-width: 768px) {
    .header-nav { display: none; } /* Versteckt das Menü auf Handys für eine saubere Optik (oder später für Hamburger-Menü) */
    .site-footer { padding: 40px 5% 100px 5%; } /* Extra Padding unten wegen Sticky Button auf Profilen */
}