/* --------------------------
   Lokale Fonts einbinden
----------------------------*/
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Orbitron/static/Orbitron-Regular.woff2') format('woff2'),
         url('../font/Orbitron/static/Orbitron-Regular.woff') format('woff'),
         url('../font/Orbitron/static/Orbitron-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Orbitron/static/Orbitron-Bold.woff2') format('woff2'),
         url('../font/Orbitron/static/Orbitron-Bold.woff') format('woff'),
         url('../font/Orbitron/static/Orbitron-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Roboto/static/Roboto-Regular.woff2') format('woff2'),
         url('../font/Roboto/static/Roboto-Regular.woff') format('woff'),
         url('../font/Roboto/static/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Roboto/static/Roboto-Bold.woff2') format('woff2'),
         url('../font/Roboto/static/Roboto-Bold.woff') format('woff'),
         url('../font/Roboto/static/Roboto-Bold.ttf') format('truetype');
}


* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    overflow: hidden;
    cursor: url('../img/maus.cur') 16 16, auto;
    transition: filter 0.2s ease;
}




.hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    z-index: 3;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Video Hintergrund */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Bild-Hintergrund */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.jpg') center/cover no-repeat;
    z-index: 0;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px; /* Innenabstand für Text */
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3); /* schwarzer Hintergrund, 60% Sichtbarkeit */
    border-radius: 12px; /* abgerundete Ecken */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* leichter Schatten für Tiefe */
}


.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #e6d1a3;
    text-shadow: 0 0 15px #000, 0 0 30px #bfa15c;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 15px #000, 0 0 30px #bfa15c; }
    to { text-shadow: 0 0 20px #e6d1a3, 0 0 40px #ffd700; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ccc;
    text-shadow: 0 0 10px #000;
    line-height: 1.6;
}

.hero .highlight {
    color: #ffd700;
    font-weight: bold;
}

.btn-discord {
    display: inline-block;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e6d1a3;
    background: #2b1e0f;
    border: 2px solid #e6d1a3;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.btn-discord:hover {
    background: #3a2914;
    transform: translateY(-3px);
    box-shadow: 0 0 15px #e6d1a3, 0 10px 25px rgba(0,0,0,0.6);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #ccc;
    font-size: 0.85rem;
    text-align: center;
    padding: 15px 20px;
    line-height: 1.5;
    z-index: 2;
    transition: background 0.3s ease;
}

footer:hover {
    background: rgba(0,0,0,0.6);
}

footer a {
    color: #e6d1a3;
    text-decoration: none;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

footer a:hover {
    text-shadow: 0 0 8px #e6d1a3;
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .btn-discord { padding: 12px 30px; font-size: 1rem; }
}

/* Partikel */
.particle {
    position: absolute;
    background: rgba(255, 200, 0, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
