/*
Theme Name: OddForge Main
Theme URI: https://oddforge.dev/oddforge-main/
Description: Mein eigenes Theme für Oddforge.
Author: Chris Malget
Author URI: https://oddforge.dev
Text Domain: oddforge-main
License: GNU General Public License v2 or later
Version: 1.0.0
*/

/* Hier kannst du dein eigenes CSS hinzufügen, um das Parent Theme zu überschreiben */

/* --- CSS VARIABLES --- */
:root {
    --odf-background: hsl(240, 15%, 6%);
    --odf-foreground: hsl(200, 20%, 95%);
    --odf-card: hsl(240, 15%, 10%);
    --odf-primary: hsl(280, 70%, 60%);
    --odf-secondary: hsl(190, 90%, 55%);
    --odf-accent: hsl(320, 80%, 60%);
    --odf-muted: hsl(240, 15%, 15%);
    --odf-muted-foreground: hsl(200, 15%, 60%);
    --odf-border: hsl(280, 40%, 25%);
}

/* --- NAVIGATION --- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: hsla(240, 15%, 6%, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--odf-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Admin Bar Offset */
.admin-bar .site-nav {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-nav {
        top: 46px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--odf-foreground);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--odf-secondary);
    text-shadow: 0 0 10px var(--odf-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--odf-foreground);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.custom-logo-link {
    display: flex;
    align-items: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--odf-background);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--odf-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}