/* ============================================================
   BONNIEBYTE PC - BRAND CORE STYLES
   (Base.css, rewritten from scratch)
   Unified colour system, typography, layout, buttons, header.
   ============================================================ */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   BRAND VARIABLES
   ============================================================ */

:root {
    /* Brand colours */
    --bb-bg: #0d0d0d;
    --bb-surface: #111;
    --bb-panel: #151515;
    --bb-border: #222;

    --bb-text: #e5e5e5;
    --bb-text-soft: #bfbfbf;
    --bb-text-muted: #999;

    --bb-blue: #66aaff;

    /* Shadows */
    --bb-shadow: 0 4px 18px rgba(0,0,0,0.4);

    /* Spacing scale */
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 40px;
}

/* ============================================================
   GLOBAL DEFAULTS
   ============================================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bb-bg);
    color: var(--bb-text);
    line-height: 1.6;
    padding-top: 80px; /* fixed header offset */
}

/* Layout container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--bb-text);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--bb-blue);
    display: inline-block;
}

h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--bb-text-soft);
}

/* ============================================================
   LINKS
   ============================================================ */

a {
    color: var(--bb-blue);
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: #8ec4ff;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    background: var(--bb-blue);
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
}

.button:hover {
    background: #88bbff;
}

.button-secondary {
    background: transparent;
    border: 2px solid var(--bb-blue);
    color: var(--bb-blue);
}

.button-secondary:hover {
    background: var(--bb-blue);
    color: #fff;
}

/* Buttons grouped */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
    padding: var(--space-lg) 0;
}

.section {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-md);
    margin-bottom: var(--space-lg);
}

/* ============================================================
   HEADER (brand-matching)
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--bb-blue);
    z-index: 1000;
    transition: 0.25s ease;
    padding: 12px 0;
}

.site-header.shrink {
    padding: 6px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 80px;
    transition: 0.25s ease;
}

.site-header.shrink .header-logo img {
    height: 60px;
}

.header-nav {
    display: flex;
    gap: var(--space-md);
}

.header-nav a {
    color: var(--bb-text);
    font-weight: 500;
    position: relative;
}

.header-nav a:hover {
    color: var(--bb-blue);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bb-blue);
    transition: width 0.25s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */

.theme-toggle {
    background: transparent;
    border: 2px solid var(--bb-blue);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--bb-blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--bb-blue);
    color: #fff;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--bb-text);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.25s ease;
}

/* OPEN STATE */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* MOBILE NAV */
@media (max-width: 900px) {

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background: #0d0d0d;
        padding: 80px var(--space-md);
        border-left: 2px solid var(--bb-blue);
        transition: 0.3s ease;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav a {
        padding: 14px 0;
        width: 100%;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--bb-border);
    }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--bb-blue);
    transition: width 0.2s;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: var(--bb-panel);
    color: var(--bb-text-soft);
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 2px solid var(--bb-blue);
}

footer a {
    color: var(--bb-blue);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: var(--bb-blue);
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    z-index: 10000;
    transition: 0.25s;
}

.skip-link:focus {
    top: 10px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
    }
}
