/* HERO IMAGE */
.hero-image {
    max-width: 300px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

/* INTRO PHOTO */
.intro-photo {
    max-width: 250px;
    width: 70%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

/* RESUME BUTTON */
.resume-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 10px;
}

.resume-button:hover {
    background-color: #357ab8;
}

/* UNDER CONSTRUCTION BANNER */
.construction-banner {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin: 20px 0;
    border-radius: 6px;
}

/* FULL BODY STYLE — COMBINED */
body {
    background-image: url('images/bg_circuit_tile.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-size: 18px;
}

/* DARK OVERLAY */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
    z-index: -1;
}

/* LINK COLORS */
a {
    color: #ffeb3b;
    font-weight: bold;
}

a:hover {
    color: #fff176;
}
.construction-banner img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
}

.image-box img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}
