/* --- LOKALE SCHRIFTARTEN --- */

/* Inter (Serifenlos für Fließtext) */
@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Playfair Display (Serifen für Headlines) */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Grundzuweisung */
body {
    font-family: 'Inter', sans-serif;
}

/* Zuweisung für deine eleganten Headlines */
h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2; /* Erhöht den Zeilenabstand leicht, damit das 'g' Platz hat */
    padding-bottom: 0.1em; /* Kleiner Puffer nach unten */
}

.gradient-text {
    display: inline-block;
    padding-bottom: 0.05em;
    vertical-align: bottom;
}

:root {
    --bg-deep: #020617;
    --accent-cyan: #00f5ff;
    --accent-gold: #d4af37;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: #f8fafc;
    overflow-x: hidden;
}

.bg-mesh {
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 245, 255, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.08) 0px, transparent 50%);
}

.gradient-text {
    background: linear-gradient(135deg, #00f5ff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 245, 255, 0.2);
}

.tag {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    letter-spacing: 0.5px;
}

.tag.active {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Rechtliche Seiten (Impressum & Datenschutz) --- */

.glass-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(135deg, #00f5ff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.policy-content h2 {
    color: #d4af37;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 2px solid #d4af37;
    padding-left: 1rem;
}

.policy-content p, 
.policy-content li {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-content li::before {
    content: "→";
    color: #00f5ff;
    margin-right: 0.75rem;
    font-weight: bold;
}

.policy-content strong {
    color: #fff;
}