/* === theme.css === */

/* Background Parallax / Global Background Image */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/backgrounds/image_fx.jpg') no-repeat center center/cover;
    z-index: -1; /* Behind all content */
    transform: scale(1.05); /* Slight zoom for parallax effect */
    filter: brightness(0.7) blur(1px); /* Darken & blur for atmospheric depth */
}

/* Reset any direct body background-color to fallback from base.css */

/* General Page Titles */
.page-title {
    font-family: var(--font-headings, "Spectral SC", serif);
    font-size: 3rem;
    text-align: center;
    color: var(--color-text-headings, #E0E7FF);
    text-shadow: 0 0 10px var(--color-highlight-cyber, #00E5FF), 0 0 20px var(--color-accent-glow, #A076F9);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text selection highlight */
::selection {
    background-color: var(--color-accent-glow, #A076F9);
    color: var(--color-primary-bg, #080A1F);
}

/* --- Responsive navigation basics (for hamburger menu) --- */
.site-header {
  position: relative;
  z-index: 500;
}
/* Hide the standard nav menu on small screens */
.site-header nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-l);
}

@media (max-width: 768px) {
    /* Hide menu by default */
    .site-header nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(8, 10, 31, 0.9);
        position: absolute;
        top: 60px; /* adjust depending on header height */
        right: 20px;
        padding: var(--spacing-m);
        border-radius: var(--border-radius-main);
        box-shadow: 0 0 20px rgba(160, 118, 249, 0.7);
        z-index: 10;
    }

    /* Show menu when active (add a class .open with JS) */
    .site-header nav ul.open {
        display: flex;
    }

    /* Hamburger button styles */
    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 25px;
        position: relative;
        z-index: 11;
    }

    /* Hamburger lines */
    .hamburger span {
        display: block;
        height: 3px;
        background: var(--color-accent-glow, #A076F9);
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

/* Show hamburger only on mobile */
.hamburger {
    display: none; /* hide on desktop */
}

/* Optional: style active links */
.site-header nav ul li a.active {
    font-weight: 700;
    color: var(--color-accent-glow, #A076F9);
    text-shadow: 0 0 10px var(--color-accent-glow, #A076F9);
}

.status-label {
  font-weight: 600;
  padding-left: 0.5rem;
}

.status-label.completed {
  color: var(--color-success); /* Typically green */
}

.status-label.in-progress {
  color: var(--color-warning); /* Typically orange or yellow */
}

.status-label.upcoming {
  color: var(--color-muted); /* Light gray */
}
