/* ---------------------------------------------------------
   NDG‑ADS Global Styles
--------------------------------------------------------- */

:root {
    --bg-dark: #050608;
    --bg-panel: #0b0c10;
    --border-panel: #1b1c22;
    --gold: #d4af37;
    --gold-soft: #b8962f;
    --text-main: #f5f5f5;
    --text-muted: #9a9a9a;
}

/* GLOBAL BODY (einzige gültige Definition!) */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111318 0, #050608 55%);
    color: var(--text-main);
}

/* GLOBAL PAGE WRAPPER */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */

.ndg-header {
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5,6,8,0.95);
    border-bottom: 1px solid var(--border-panel);
    position: sticky;
    top: 0;
    z-index: 10;
}

.ndg-header .logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.ndg-header nav a {
    color: var(--text-muted);
    margin-left: 22px;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.ndg-header nav a:hover {
    color: var(--gold);
}

/* ---------------------------------------------------------
   Hero Section
--------------------------------------------------------- */

.hero {
    padding: 90px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 40px;
}

.hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, #f3e4b0, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    background: radial-gradient(circle at top left, #f3e4b0 0, var(--gold-soft) 40%, #7a5a1a 100%);
    color: #050608;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.btn-secondary {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--border-panel);
    background: #0b0c10;
    color: var(--text-main);
    font-size: 14px;
    text-decoration: none;
}

/* ---------------------------------------------------------
   Hero Stats
--------------------------------------------------------- */

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.stat-box {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-panel);
    background: linear-gradient(135deg, #090a0f, #050608);
    font-size: 13px;
}

.stat-box strong {
    display: block;
    color: var(--gold);
    font-size: 15px;
}

/* ---------------------------------------------------------
   Hero Right Panel
--------------------------------------------------------- */

.hero-panel {
    border-radius: 16px;
    border: 1px solid var(--border-panel);
    background: radial-gradient(circle at top, #151720 0, #090a0f 55%);
    padding: 22px 22px 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.hero-panel-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gold);
}

.hero-panel-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed #1b1c22;
}

.hero-panel-row:last-child {
    border-bottom: none;
}

/* ---------------------------------------------------------
   Features Section
--------------------------------------------------------- */

.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.feature-box {
    background: #0b0c10;
    border-radius: 14px;
    border: 1px solid var(--border-panel);
    padding: 22px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gold);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.ndg-footer {
    background:#0b0c10;
    border-top:1px solid var(--border-panel);
    padding:40px;
    color:var(--text-main);
}

.footer-grid {
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:30px;
}

.footer-col h4 {
    color:var(--gold);
    margin-bottom:12px;
    font-size:15px;
}

.footer-col a {
    display:block;
    color:var(--text-muted);
    text-decoration:none;
    margin-bottom:6px;
    font-size:13px;
}

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

.social-icons img {
    width:26px;
    height:26px;
    margin-right:12px;
    filter:brightness(0.85);
    transition:filter 0.2s ease;
}

.social-icons img:hover {
    filter:brightness(1.3);
}

.footer-bottom {
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid var(--border-panel);
    text-align:center;
    color:var(--text-muted);
    font-size:12px;
}

.newsletter-note {
    color:var(--text-muted);
    font-size:12px;
    margin-top:8px;
    display:block;
}

/* ---------------------------------------------------------
   Cookie Banner
--------------------------------------------------------- */

.cookie-banner {
    display:none;
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    background:#0b0c10;
    border:1px solid var(--border-panel);
    padding:20px;
    border-radius:10px;
    z-index:9999;
}

.cookie-content p {
    color:var(--text-main);
    margin-bottom:12px;
    font-size:14px;
}

.cookie-content button {
    background:var(--gold);
    border:none;
    padding:8px 14px;
    border-radius:6px;
    color:#050608;
    font-weight:bold;
    margin-right:10px;
    cursor:pointer;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Legal Pages
--------------------------------------------------------- */

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #0b0c10;
    border: 1px solid #1a1c22;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.45);
}

.legal-wrapper h1 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.legal-wrapper h2 {
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 22px;
}

.legal-wrapper strong {
    color: var(--gold);
}

.legal-wrapper p,
.legal-wrapper li {
    color: #ffffff;
    line-height: 1.7;
    font-size: 16px;
}

.legal-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-wrapper a {
    color: var(--gold);
    text-decoration: none;
}

.legal-wrapper a:hover {
    color: #f1d97c;
}
/* ---------------------------------------------------------
   Kontaktformular (NDG‑ADS Style)
--------------------------------------------------------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-panel);
    background: #090a0f;
    color: var(--text-main);
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    background: var(--gold);
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    color: #050608;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.contact-form button:hover {
    background: var(--gold-soft);
}
