/* ============================================================
   INPRINT – GLOBAL HEADER & FOOTER ONLY
============================================================ */

/* ---------- COLOR SYSTEM ---------- */
:root {
    --accent: #ff0000;
    --accent-soft: #ff1a1a;
    --text: #f5f5f5;
    --muted: #b6b6c7;
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   GLOBAL BODY BASE
   (NO MODULE STYLING HERE)
============================================================ */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #400000 0, #05060a 45%, #000 100%);
    color: var(--text);
    line-height: 1.5;
}


/* ============================================================
   HEADER
============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 20px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo img {
    height: 60px;
}

/* ============================================================
   DESKTOP NAV
============================================================ */
#mainNav {
    display: flex;
    align-items: center;
    gap: 18px;
}

#mainNav a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: 0.2s ease;
}

#mainNav a:hover {
    color: var(--accent-soft);
}


/* ============================================================
   HAMBURGER
============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 6px var(--accent);
    transition: 0.35s ease;
}

/* ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* ============================================================
   MOBILE NAV
============================================================ */
@media (max-width: 900px) {

    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: rgba(0,0,0,0.95);
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,0,0,0.3);
    }

    #mainNav.show {
        display: flex;
    }

    #mainNav a {
        padding: 14px 20px;
        text-align: center;
        font-size: 1.05rem;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .hamburger {
        display: flex;
    }
}


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    width: 100%;
    padding: 16px 0;
    background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(255,0,0,0.4);
    text-align: center;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}