/* =========================================================
   GLOBAL RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   BODY
========================================================= */
body {
    font-family: 'Oswald', sans-serif;
    background-color: #cfcfd1;
    text-align: center;
}

/* =========================================================
   NAVBAR
========================================================= */
nav {
    background-color: #000000;
    padding: 30px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 30px;
    font-size: 22px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* =========================================================
   UNIVERSAL CONTENT WRAPPER
========================================================= */
.content {
    padding-top: 70px;
}

.content h1 {
    color: #000;
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.intro {
    font-size: 22px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* =========================================================
   HOME PAGE — HERO
========================================================= */
.home-hero {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.hero-inner {
    max-width: 1100px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero-img {
    width: 420px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
}

.hero-sub {
    font-size: 20px;
}

@media (max-width: 760px) {
    .hero-inner { flex-direction: column; }
    .hero-img { width: 320px; }
}

/* =========================================================
   ABOUT PAGE — IMAGE GALLERY
========================================================= */
.about-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-img {
    width: 350px;
    border-radius: 5px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.about-img--large {
    width: 520px;
}

@media (max-width: 760px) {
    .about-img,
    .about-img--large {
        width: 90%;
        max-width: 420px;
    }
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-inner {
    max-width: 1000px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    justify-content: center;
}

.contact-headshot {
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.contact-form {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #bbb;
    font-family: inherit;
}

.contact-form button {
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
}

@media (max-width: 760px) {
    .contact-inner {
        flex-direction: column;
        align-items: center;
    }
    .contact-form {
        width: 100%;
        max-width: 520px;
    }
}

/* =========================================================
   MEDIA PAGE — IMAGES + VIDEO
========================================================= */
.media {
    padding: 40px 20px;
    text-align: center;
}

.media-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.media-thumb {
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.media-video video {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* =========================================================
   RESUME PAGE
========================================================= */
.resume {
    padding: 40px 20px;
    text-align: center;
}

.resume-preview {
    width: 720px;
    max-width: 95%;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

/* =========================================================
   GALLERY PAGE — GRID + LIGHTBOX
========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.gallery-thumb {
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.lightbox img {
    max-width: 92%;
    max-height: 86%;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 36px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

/* =========================================================
   LINKS PAGE
========================================================= */
.links-list {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.links-list li {
    margin: 8px 0;
}

.links-list a {
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
}

.links-list a:hover {
    background: rgba(0,0,0,0.06);
}

/* =========================================================
   BOTTOM BAR (from your original)
========================================================= */
section {
    margin-top: 120px;
    height: 90px;
    background-color: #7fb3a6;
}
