:root {
    --dark-blue: #4C5760;
    --soft-blue: #93A8AC;
    --tan: #D7CEB2;
    --warm-gray: #A59E8C;
    --dark-gray: #66635B;
    --light-bg: #F4F4F4;
    --almost-black: #1E2019;
}

.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: "Ubuntu Mono", monospace;
    background-color: var(--light-bg);
    color: var(--almost-black);
    line-height: 1.6;
}

/* HEADER */
header {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 40px 20px 25px;
    border-bottom: 4px solid #8DAB7F;
}

header h1 {
        font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 42px;
    letter-spacing: 3px;
}

h2, h3 {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
}


p, li, a {
    font-family: "Ubuntu Mono", monospace;
    text-decoration: none;

}



header p {
    color: #93A8AC;
    margin-top: 5px;
}

/* NAV */
nav {
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: var(--tan);

}

/* MAIN */
main {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* HERO / INTRO */
.hero {
    text-align: center;
    padding: 40px;
    background-color: white;
    border: 1px solid var(--tan);
    margin-bottom: 50px;
}

.hero h2 {
    color: var(--dark-blue);
    font-size: 32px;
    margin-bottom: 10px;
}

/* SECTION TITLES */
.page-intro h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.page-intro p {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

/* GALLERY GRID */
.gallery,
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARDS */
.card,
.art-card {
    background-color: white;
    border: 1px solid var(--tan);
    transition: 0.3s;
    overflow: hidden;
}

.card:hover,
.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* CARD CONTENT */
.card,
.art-card {
    padding: 20px;
}

.card h3,
.art-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.card p,
.art-card p {
    color: var(--dark-gray);
}

/* BUTTON LINKS */
.card a {
    display: inline-block;
    margin-top: 10px;
    color: white;
    background-color: var(--dark-blue);
    padding: 8px 14px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.card a:hover {
    background-color: var(--soft-blue);

}

/* IMAGES */
.art-card img {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--tan);
}

/* ABOUT SECTION */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: white;
    border: 1px solid var(--tan);
    padding: 30px;
}

.about-section img {
    width: 100%;
    border: 1px solid var(--tan);
}

.about-section h2 {
    color: var(--dark-blue);
}

/* RESUME */
.resume-section {
    background-color: white;
    border-left: 5px solid var(--soft-blue);
    padding: 20px;
    margin-bottom: 20px;
}

.resume-section h3 {
    color: var(--dark-blue);
}

/* COVER LETTER */
.letter-section {
    background-color: white;
    border: 1px solid var(--tan);
    padding: 40px;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* FOOTER */
footer {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    /*border-top: 4px solid var(--tan);*/
}

/* MOBILE */
@media screen and (max-width: 700px) {
    .gallery,
    .gallery-preview,
    .about-section {
        grid-template-columns: 1fr;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    header h1 {
        font-size: 30px;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
}

.art-card {
    background-color: white;
    border: 1px solid var(--tan);
    padding: 15px;
    transition: 0.3s;
}

.art-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.art-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.art-card p {
    font-size: 13px;
    color: var(--dark-gray);
}

.art-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.featured-classwork {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    background-color: var(--dark-blue);
    color: white;
    padding: 30px;
    border: 4px solid var(--tan);
    margin-bottom: 50px;
}

.featured-classwork video {
    width: 100%;
    display: block;
    background-color: var(--almost-black);
}

.featured-text h2 {
    color: var(--tan);
    margin-bottom: 10px;
}

.featured-text h3 {
    color: white;
    margin-bottom: 10px;
}

.featured-text p {
    color: var(--light-bg);
}

.class-section {
    margin-bottom: 60px;
}

.class-section h2 {
    color: var(--dark-blue);
    border-bottom: 3px solid var(--tan);
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.classwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.class-card {
    background-color: white;
    border: 1px solid var(--tan);
    padding: 15px;
    transition: 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.class-card img,
.class-card video {
    width: 100%;
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--tan);
}

.class-card h3 {
    color: var(--dark-blue);
    font-size: 16px;
    margin-bottom: 6px;
}

.class-card p {
    color: var(--dark-gray);
    font-size: 13px;
}

/* Mobile */
@media screen and (max-width: 800px) {
    .featured-classwork {
        grid-template-columns: 1fr;
    }

    .classwork-grid {
        grid-template-columns: 1fr;
    }
}

.flash-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    min-height: 70vh;
}

.flash-text {
    background-color: white;
    border-left: 8px solid var(--soft-blue);
    padding: 40px;
}

.eyebrow {
    color: var(--soft-blue);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flash-text h2 {
    font-size: 48px;
    line-height: 1.1;
    color: var(--dark-blue);
    margin: 15px 0;
}

.flash-text p {
    color: var(--dark-gray);
}

.flash-buttons a {
    display: inline-block;
    margin-top: 20px;
    margin-right: 10px;
    padding: 12px 18px;
    background-color: var(--almost-black);
    color: white;
    text-decoration: none;
}

.flash-buttons a:hover {
    background-color: var(--soft-blue);
    color: var(--almost-black);
}

.flash-hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 6px solid var(--tan);
}

.flash-featured {
    margin-top: 80px;
}

.flash-featured h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.flash-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--tan);
}

.flash-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.flash-grid span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 32, 25, 0.85);
    color: white;
    padding: 14px;
    text-align: center;
    font-weight: bold;
}

.flash-grid a:hover img {
    transform: scale(1.08);
}

@media screen and (max-width: 800px) {
    .flash-hero {
        grid-template-columns: 1fr;
    }

    .flash-text h2 {
        font-size: 34px;
    }

    .flash-grid {
        grid-template-columns: 1fr;
    }
}

.download-btn {
    display: inline-block;
    background-color: var(--dark-blue);
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 4px solid var(--tan);
    margin-top: 20px;
}

.download-btn:hover {
    background-color: var(--soft-blue);
    color: var(--almost-black);
}

.resume-container {
    background-color: white;
    border: 1px solid var(--tan);
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

.resume-container h3 {
    font-family: "Cinzel Decorative", serif;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.resume-container p {
    margin-bottom: 10px;
}

.resume-block {
    margin-top: 25px;
}

.resume-block h4 {
    color: var(--dark-blue);
    border-bottom: 2px solid var(--tan);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.resume-block ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.download-section {
    text-align: center;
    margin-top: 40px;
}

.download-btn {
    background-color: var(--dark-blue);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-bottom: 4px solid var(--tan);
}

.download-btn:hover {
    background-color: var(--soft-blue);
    color: var(--almost-black);
}

.about-spotlight {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background-color: white;
    border: 1px solid var(--tan);
    padding: 40px;
    position: relative;
}

.about-image-wrap {
    position: relative;
}

.about-photo {
    width: 100%;
    display: block;
    border: 6px solid var(--dark-blue);
    filter: grayscale(100%);
}

.about-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border: 4px solid var(--tan);
    background-color: white;
}

.about-label {
    color: var(--soft-blue);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-info h2 {
    color: var(--dark-blue);
    font-size: 34px;
    margin: 10px 0 20px;
}

.about-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.about-links {
    margin-top: 25px;
}

.about-links a {
    display: inline-block;
    background-color: var(--dark-blue);
    color: white;
    padding: 10px 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    border-bottom: 4px solid var(--tan);
}

.about-links a:hover {
    background-color: var(--soft-blue);
    color: var(--almost-black);
}

@media screen and (max-width: 800px) {
    .about-spotlight {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .about-icon {
        width: 70px;
        height: 70px;
        right: 10px;
    }
}

