/* =========================
   FONT DEFINITIONS (VARIABLE)
   ========================= */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_slnt,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/Orbitron-VariableFont_wght.woff2') format('woff2');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* =========================
   GLOBAL
   ========================= */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1e293b, #0b1120 60%);
    color: #e2e8f0;
}

/* =========================
   NAVIGATION
   ========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

nav .logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   HERO
   ========================= */

.hero {
    text-align: center;
    padding: 80px 20px 60px 20px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
}

/* =========================
   INFO SECTION
   ========================= */

.info {
    padding: 60px 20px;
    background: #0f172a;
    text-align: center;
}

.info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.card {
    background: #1e293b;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* =========================
   CONTENT (Impressum / Datenschutz)
   ========================= */

.content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.7;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background: #020617;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}
