/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    overflow-x: hidden;
    font-size: 18px; /* GLOBAL TEXT SIZE INCREASE */
}

/* CYBERPUNK BACKGROUND GRID */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(#00b4ff22 1px, transparent 1px),
        linear-gradient(90deg, #00b4ff22 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -3;
    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* FLOATING PARTICLES */
body::after {
    content: "";
    position: fixed;
    width: 100%; height: 100%;
    background: radial-gradient(circle, #00b4ff33 2px, transparent 2px);
    background-size: 120px 120px;
    z-index: -2;
    animation: particles 12s linear infinite;
}

@keyframes particles {
    from { background-position: 0 0; }
    to { background-position: 120px 120px; }
}

/* HEADINGS — ICY BLUE */
h1, h2, h3 {
    color: #00b4ff;
    text-shadow: 0 0 12px rgba(0, 180, 255, 0.6);
}

/* SIDEBAR (DESKTOP) */
.sidebar {
    width: 260px;
    background: #050505;
    padding: 20px;
    position: fixed;
    height: 100vh;
    border-right: 2px solid #0af;
    box-shadow: 0 0 20px #00b4ff55;
}

/* SIDEBAR LOGO — DESKTOP ALIGNMENT */
.sidebar-logo-container {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 165px;
}

.logo {
    width: 160px;
    filter: drop-shadow(0 0 18px #00b4ff);
}

/* NAV BUTTONS — NOW WITH GLOW */
.nav-btn {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background: #111;
    border: 1px solid #0af;
    text-decoration: none;
    color: #0af;
    text-align: center;
    transition: 0.25s;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;

    /* GLOW */
    box-shadow:
        0 0 8px rgba(0, 180, 255, 0.5),
        0 0 16px rgba(0, 180, 255, 0.25);
}

.nav-btn:hover {
    background: #0af;
    color: #000;
    box-shadow:
        0 0 12px rgba(0, 180, 255, 0.9),
        0 0 24px rgba(0, 180, 255, 0.6),
        0 0 36px rgba(0, 180, 255, 0.4);
}

/* MAIN CONTENT */
.main {
    margin-left: 260px;
    padding: 40px;
    width: calc(100% - 260px);
}

/* HERO BANNER — 750PX + STRONGER GLOW */
.hero-banner {
    position: relative;
    overflow: visible;
    filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.9));
}

.hero-banner img {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: block;
    height: auto;
}

/* BIO PANE — RESTORED GLOW */
.bio-pane {
    margin-top: 40px;
    background: rgba(0, 170, 255, 0.05);
    padding: 20px;
    border: 1px solid #0af;
    border-radius: 6px;
    box-shadow:
        0 0 12px rgba(0, 180, 255, 0.45),
        0 0 25px rgba(0, 180, 255, 0.25);
    font-size: 19px;
    line-height: 1.55;
}

/* SPACING UNDER ABOUT HEADER */
.bio-pane h2 {
    margin-bottom: 20px;
}

/* CONTACT FORM — LEFT ALIGNED */
form {
    margin-top: 40px;
    max-width: 600px;
    background: rgba(0, 170, 255, 0.05);
    padding: 20px;
    border: 1px solid #0af;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0, 180, 255, 0.25);
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #0af;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #0af;
    color: #fff;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
}

/* FORM BUTTON — NOW WITH GLOW */
form button {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background: #0af;
    border: none;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    transition: 0.25s;

    /* GLOW */
    box-shadow:
        0 0 10px rgba(0, 180, 255, 0.6),
        0 0 20px rgba(0, 180, 255, 0.4);
}

form button:hover {
    box-shadow:
        0 0 14px rgba(0, 180, 255, 0.9),
        0 0 28px rgba(0, 180, 255, 0.7),
        0 0 40px rgba(0, 180, 255, 0.5);
}

/* THUMBNAILS */
.thumb-grid img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 180, 255, 0.4);
    transition: 0.25s;
}

.thumb-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.7);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.8);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #00b4ff;
    cursor: pointer;
    text-shadow: 0 0 12px #00b4ff;
}

/* HAMBURGER — DESKTOP HIDDEN, MOBILE CENTERED */
.hamburger {
    display: none;
    width: 30px;
    margin: 10px auto 0;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #0af;
    margin: 5px 0;
}

/* MOBILE LAYOUT — FIXED HEADER */
@media (max-width: 768px) {

    body {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 10px 20px;
        border-right: none;
        border-bottom: 2px solid #0af;
        box-shadow: 0 4px 20px #00b4ff55;
        z-index: 9999;
    }

    .sidebar-logo-container {
        margin-top: 10px !important;
        margin-bottom: 10px;
    }

    .hamburger {
        display: block;
        width: 30px;
        margin: 10px auto 0;
        position: static;
    }

    .sidebar-content {
        display: none;
        text-align: center;
        margin-top: 10px;
        padding-bottom: 10px;
        background: #050505;
        border-bottom: 2px solid #0af;
        box-shadow: 0 4px 20px #00b4ff55;
    }

    .hamburger.active + .sidebar-content {
        display: block;
    }

    .main {
        margin-left: 0;
        width: 100%;
        padding: 20px;
        margin-top: 180px;
    }
}

