/*
Theme Name: Starkhard Core
Version: Stable Layout
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
    --accent-color: #00f2ff;
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

body {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 9999;
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Logo */
.main-nav .custom-logo {
    max-height: 45px;
    width: auto;
}

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

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding-top: 80px;
}

.hero .custom-logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px var(--accent-color));
}

.hero h1 {
    font-size: 42px;
    margin: 10px 0;
}

.hero p {
    opacity: 0.8;
}

/* ===================== */
/* ===== SECTIONS ====== */
/* ===================== */

.section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================== */
/* ===== GRID FIX ====== */
/* ===================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* ===================== */
/* ===== CARD DESIGN === */
/* ===================== */

.card {
    background: rgba(0,0,0,0.75);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.card:hover {
    box-shadow: 0 0 20px var(--accent-color);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.card h3 {
    margin: 15px 0;
}

.card a {
    text-decoration: none;
    color: var(--accent-color);
}

/* ===================== */
/* ===== BUTTONS ======= */
/* ===================== */

.event-ticket-btn,
.release-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 22px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.event-ticket-btn:hover,
.release-btn:hover {
    background: var(--accent-color);
    color: #000;
}

/* ===================== */
/* ===== COUNTDOWN ===== */
/* ===================== */

.countdown {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}

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

footer {
    text-align: center;
    padding: 80px 20px;
    margin-top: 120px;
    background: rgba(0,0,0,0.8);
}

/* ===================== */
/* ===== RESPONSIVE ==== */
/* ===================== */

@media (max-width: 768px) {

    .main-nav ul {
        gap: 20px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .custom-logo {
        max-width: 300px;
    }

}
/* ================= FOOTER FINAL BOX ================= */

footer {
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 100px 20px 60px 20px;
    box-sizing: border-box;
}

/* Schwarze Box */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0,0,0,0.85);
    border-radius: 20px 20px 0 0;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

/* Copyright in gleiche Box-Optik ziehen */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0,0,0,0.85);
    border-radius: 0 0 20px 20px;
    padding: 20px 60px 30px 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Links */
.footer-col a,
.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover,
.footer-bottom a:hover {
    opacity: 0.7;
}
