/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0c0c0c;
    font-family: 'Teko', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   NAVIGATION
========================= */

.nav {
    background: #111;
    border-bottom: 2px solid #1a1a1a;
    padding: 10px 40px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 32px;
    color: #ff1a1a;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #ccc;
    font-size: 20px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #ff1a1a;
}

/* =========================
   LANDING
========================= */

.landing {
    height: calc(100vh - 70px); /* 70px = Nav Höhe */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}


.main-logo {
    max-width: 450px;
    width: 90%;
    filter: drop-shadow(0 0 30px rgba(255,0,0,0.4));
}

/* HEADLINE */

.headline h1 {
    font-size: 64px;
    color: #ff1a1a;
    -webkit-text-stroke: 3px #000;
}

/* =========================
   PAGE LAYOUT
========================= */

.page {
    flex: 1;
    padding: 60px;
    text-align: center;
}

.page-title {
    font-size: 50px;
    margin-bottom: 40px;
    color: #ff1a1a;
}

/* =========================
   DOWNLOAD GRID
========================= */

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.download-card {
    background: #141414;
    padding: 20px;
    border-radius: 10px;
    transition: 0.2s;
}

.download-card:hover {
    transform: translateY(-5px);
    background: #1c1c1c;
}

.download-card img {
    max-width: 100%;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #ff1a1a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

.download-btn:hover {
    background: #cc0000;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #090909;
    padding: 15px;
    text-align: center;
    color: #666;
}
.seo-text {
    max-width: 800px;
    margin-top: 40px;
    color: #aaa;
    font-size: 16px;
}

.seo-text h1 {
    font-size: 1px;     /* sichtbar für Google, unauffällig für User */
    opacity: 0;
}
