/* ============================================================
   GLOBAL PAGE SETTINGS
   ============================================================ */
body {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
    background-color: #000000; /* Entire page black */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
}
html, body {
    height: 100%;
}

footer {
    margin-top: auto;
}
/* ============================================================
   HEADER BAR LAYOUT
   ============================================================ */
.header-bar {
    background-color: black;
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    /* 3 columns: empty | nav centered | name right */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-right {
    flex: 1;
}

.top-nav {
    flex: 2; /* keeps the nav centered */
    display: flex;
    justify-content: center;
    gap: 30px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

/* Nav + name shared styles */
.top-nav a,
.name-link {
    color: white;
    text-decoration: none;
    font-size: 18px;

    /* Blue outline */
    text-shadow:
        -1px -1px 0 #007bff,
         1px -1px 0 #007bff,
        -1px  1px 0 #007bff,
         1px  1px 0 #007bff;
}
/* Make only the name larger */
.header-right a {
    font-size: 26px;   /* adjust as you like */
    font-weight: 700;  /* optional: makes it bolder */
}
/* Header link base style */
header a {
    transition: 0.25s ease-in-out;
}

/* Glow hover effect ONLY in the header */
header a:hover {
    text-shadow: 0 0 8px #4da3ff, 0 0 12px #4da3ff;
    color: #4da3ff;        /* optional accent */
    transform: translateY(-2px); /* nice subtle lift */
}
/* ============================================================
   PAGE CONTENT SPACING
   ============================================================ */
.content-section {
    padding-top: 120px; /* Keeps content below fixed header */
    background-color: black; /* Remove white block */
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background-color: black;
    padding: 20px 0;
    margin-top: 40px;
}

.social-icons {
    margin-top: 80px;            /* vertical spacing below your name */
    display: flex;
    flex-direction: column;
    gap: 25px;                   /* spacing between icons */
    justify-content: right;     /*  right */
    align-items: flex-end;
    margin-right: 20px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);   /* makes icons white to match dark background */
    transition: 0.25s ease-in-out;
    opacity: 0.85;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px #4da3ff);   /* glow hover effect */
}
/* Active nav underline */
.top-nav a.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    color: #ffffff;
}
/* ============================================================
   MOBILE HEADER LAYOUT
   ============================================================ */
@media (max-width: 768px) {
    .header-bar {
        flex-wrap: wrap;
        padding: 10px 14px;
    }

    .header-left {
        display: none;              /* free up space on the left */
    }

    .header-right {
        order: 1;
        padding-right: 0;
        flex: 1;
        justify-content: flex-end;  /* keep your name on the right */
    }

    .top-nav {
        order: 2;
        flex-basis: 100%;           /* force nav onto its own row */
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 6px;
    }

    .top-nav a {
        font-size: 16px;            /* slightly smaller links */
    }

    .header-right a {
        font-size: 22px;            /* slightly smaller name */
    }
}