/* ========================================
   CSS VARIABLES (Colors, Spacing, etc.)
   ======================================== */
:root {
    --color-dark: #313131;
    --color-light: #f0f4e6;
    --color-gray: #6b7280;
    --color-accent: #36383F;
    --color-error: #ef4444;
    --color-success: #10b981;
    --font-heading: rig-shaded-bold-face, sans-serif;
    --font-body: 'fanwoodregular', serif;
    --transition: 0.7s;
}

/* ========================================
   CUSTOM FONT
   ======================================== */
@font-face {
    font-family: 'fanwoodregular';
    src: url('Fanwood-webfont.woff2') format('woff2'),
         url('Fanwood-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
html {
    scroll-behavior: smooth;
}

body, html {
    background-color: var(--color-light);
    scroll-behavior: smooth;
    animation: fadein 1.5s;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   HEADER & NAVIGATION (Desktop)
   ======================================== */

/* Scroll progress bar - vertical on left for desktop with gradient */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--color-error) 0%, var(--color-error) 0%, var(--color-light) 0%, var(--color-light) 100%);
    z-index: 10000;
    transition: background 0.1s ease-out;
}

/* Move progress bar to top on mobile */
@media only screen and (max-width: 900px) {
    .progress-bar {
        width: 100vw;
        height: 3px;
        background: linear-gradient(to right, var(--color-error) 0%, var(--color-error) 0%, var(--color-light) 0%, var(--color-light) 100%);
    }
}

/* Focus states for accessibility - subtle glow with spacing */
a:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 49, 49, 0.5);
    outline-offset: 4px;
    transition: box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 49, 49, 0.5);
    outline-offset: 4px;
}

/* Mobile header background (slides down on scroll) */
.mobile-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--color-light);
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.mobile-header-bg.visible {
    transform: translateY(0);
}

header h1 {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8em;
    letter-spacing: 0.2em;
    padding: 10px;
    position: fixed;
    top: 0;
    right: 0;
    width: 175px;
    z-index: 100;
    transition: color 0.3s ease;
}

header h1.over-image {
    color: var(--color-light);
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 5px;
    width: 150px;
    z-index: 100;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    height: 35px;
    position: relative;
    text-align: right;
}

nav a {
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1em;
    font-weight: 100;
    letter-spacing: 0.05em;
    text-decoration: none;
}

nav hr {
    background-color: var(--color-dark);
    bottom: 0;
    height: 0;
    margin-left: 50px;
    position: absolute;
    transition: height var(--transition);
    width: 110px;
    z-index: -1;
}

nav li:hover a {
    color: var(--color-light);
    transition: var(--transition);
}

nav li:hover hr {
    height: 35px;
}

#mobileNav {
    display: none;
}

#mobileNav hr {
    margin-left: 0;
}

main {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ========================================
   HOMEPAGE GRID
   ======================================== */
main:not(.project-page) {
    margin: 25px auto;
    padding: 0 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 550px);
    grid-gap: 5px;
    justify-content: center;
}

.project-card {
    display: block;
    position: relative;
    height: 400px;
    width: 550px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: var(--transition);
    pointer-events: none;
}

.project-card:hover .hover {
    background-color: rgba(0, 0, 0, 0.39);
}

/* ========================================
   ERROR HANDLING STYLES
   ======================================== */
.error-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--color-error);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    max-width: 350px;
    font-family: var(--font-body);
}

.success-toast {
    background: var(--color-success);
}

@keyframes slideIn {
    from { 
        transform: translateX(400px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(400px); 
        opacity: 0; 
    }
}

.image-error-placeholder {
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.placeholder-content {
    text-align: center;
    color: var(--color-gray);
}

.placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 14px;
    font-family: var(--font-body);
}

/* ========================================
   PROJECT PAGES
   ======================================== */
.project-page {
    margin-top: 0;
}

.project-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100vh;
    margin-top: -80px;
    padding-top: 80px;
}

.project-info {
    padding: 100px 50px 50px 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: var(--font-body);
    font-size: 2.4em;
    color: var(--color-dark);
    margin-bottom: 0px;
    font-weight: 400;
}

.project-subtitle {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--color-gray);
    margin-bottom: 0px;
    margin-top: -5px;
}

.project-description {
    font-family: var(--font-body);
    font-size: 1em;
    line-height: 1.2;
    color: var(--color-dark);
    text-align: justify;
    width: 550px;
}

.project-hero-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-gallery {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 200px 0 175px;
}

.gallery-item {
    margin-bottom: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.9;
}

.gallery-item.full {
    width: 100%;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-item.half {
    margin-bottom: 0;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--color-gray);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gray);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ========================================
   RESUME LIGHTBOX
   ======================================== */
.resume-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Resume lightbox close button */
.resume-lightbox .lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    line-height: 1;
}

.resume-lightbox .lightbox-close:hover {
    color: var(--color-gray);
    background-color: rgba(0, 0, 0, 0.8);
}

.resume-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive resume lightbox */
@media only screen and (max-width: 1024px) {
    .resume-content {
        max-width: 85%;
        max-height: 85vh;
    }
}

@media only screen and (max-width: 768px) {
    .resume-lightbox {
        padding: 15px;
    }
    
    .resume-lightbox .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
        padding: 8px 16px;
    }
    
    .resume-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media only screen and (max-width: 480px) {
    .resume-lightbox {
        padding: 60px 10px 10px;
    }
    
    .resume-lightbox .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        padding: 6px 12px;
    }
    
    .resume-content {
        max-width: 95%;
        max-height: 70vh;
        margin: auto;
    }
}

/* ========================================
   PROJECT NAVIGATION
   ======================================== */
.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 60px 200px 60px 175px;
    gap: 40px;
}

.project-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-dark);
    transition: opacity 0.3s;
}

.project-nav-link:hover {
    opacity: 0.6;
}

.project-nav-link.prev {
    justify-content: flex-start;
    flex: 1;
}

.project-nav-link.home {
    justify-content: center;
    text-align: center;
    flex: 1;
}

.project-nav-link.next {
    justify-content: flex-end;
    flex: 1;
}

.nav-arrow {
    font-size: 2em;
    font-weight: 300;
}

.nav-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-direction {
    font-family: var(--font-body);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.nav-project-name {
    font-family: var(--font-body);
    font-size: 1.2em;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    overflow: hidden;
}

body:has(#about) {
    overflow: hidden;
}

body:has(#about) footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.selfcontainer {
    display: none;
}

.aboutparagraph {
    max-width: 600px;
    font-family: var(--font-body);
    font-size: 1em;
    line-height: 1.6;
    color: var(--color-dark);
}

.aboutparagraph p {
    margin: 0 0 20px 0;
}

.aboutparagraph hr {
    margin-top: 30px;
    border: none;
    border-top: 1px solid var(--color-dark);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contacttitle {
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 3.5em;
    margin: 200px 0 0 175px;
    text-align: left;
    width: auto;
    max-width: 500px;
}

.contactbio {
    font-family: var(--font-body);
    margin: 0 0 20px 175px;
    width: auto;
    max-width: 500px;
}

.contactlinks ul {
    list-style: none;
    font-family: var(--font-body);
    margin: 20px 0 0 175px;
    padding: 0;
}

.contactlinks a {
    color: var(--color-dark);
    text-decoration: none;
}

.contactlinks li {
    height: 25px;
}

/* Contact Form */
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus state */
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 2px rgba(49, 49, 49, 0.1);
}

/* Valid state (after interaction) */
input[type=text].valid,
input[type=email].valid,
input[type=tel].valid,
textarea.valid {
    border-color: var(--color-success);
}

/* Invalid state (after interaction) */
input[type=text].invalid,
input[type=email].invalid,
input[type=tel].invalid,
textarea.invalid {
    border-color: var(--color-error);
    animation: shake 0.3s;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

input[id="fname"] {
    width: 245px;
}

input[id="lname"] {
    width: 245px;
    margin-left: 5px;
}

input[type=submit] {
    background-color: var(--color-dark);
    color: white;
    font-family: var(--font-heading);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

input[type=submit]:hover {
    background-color: #7C7C7C;
}

.formcontainer {
    border-radius: 5px;
    margin-left: 750px;
    margin-top: -280px;
    width: 500px;
}

/* Social Icons */
.icons {
    display: flex;
    gap: 10px;
}

.icons a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.icons a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.linkedin,
.dribbble,
.behance {
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

.linkedin { background-image: url("images/linkedin.svg"); }
.dribbble { background-image: url("images/dribbble.svg"); }
.behance { background-image: url("images/behance.svg"); }

#contactall hr {
    width: 215px;
    margin-top: 10px;
    margin-left: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    font-family: var(--font-heading);
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    color: var(--color-gray);
    margin: auto;
    padding: 125px 0 5px;
    width: 50%;
}

/* ========================================
   MEDIA QUERIES - TABLET (under 1024px)
   ======================================== */
@media only screen and (max-width: 1440px) {
    .grid-container {
        grid-template-columns: 550px;
    }
    
    .project-card {
        width: 550px;
        height: 400px;
    }
}

@media only screen and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 34.5vw;
        width: 52.5vw;
        margin: 0 auto;
    }
    
    .contacttitle {
        margin: 100px auto 0;
        max-width: 500px;
        text-align: left;
    }
    
    .contactbio {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .contactlinks ul {
        margin: 20px auto 0;
        max-width: 500px;
    }
    
    .formcontainer {
        margin: 50px auto;
        width: 500px;
        max-width: 90%;
    }
    
    .aboutparagraph {
        margin: 125px 0 0 50px;
    }
    
    .selfcontainer {
        margin: 125px 0 0 100px;
    }
}

/* ========================================
   MEDIA QUERIES - MOBILE (under 900px)
   ======================================== */
@media only screen and (max-width: 900px) {
    /* Show mobile nav, hide desktop */
    #normalNav {
        display: none;
    }
    
    #mobileNav {
        display: block;
    }
    
    .mobile-header-bg {
        display: block;
    }
    
    /* Always show background on homepage (non-project pages) */
    body:not(:has(.project-page)) .mobile-header-bg {
        transform: translateY(0);
    }
    
    /* Wider cards with edge padding on homepage */
    .grid-container {
        padding: 0 20px;
    }
    
    .project-card {
        width: 100%;
        height: 57.5vw;
    }
    
    /* Center header h1 vertically to 60px rectangle */
    header h1 {
        top: 30px;
        transform: translateY(-50%);
        margin: 0;
    }
    
    /* Mobile hamburger menu */
    #menuToggle {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 30px;
        transform: translateY(-50%);
        margin: 0 0 0 20px;
        z-index: 150;
    }
    
    #menuToggle input {
        display: flex;
        width: 50px;
        height: 50px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 151;
    }
    
    #menuToggle span {
        background-color: var(--color-dark);
        display: block;
        width: 29px;
        height: 3px;
        margin-bottom: 5px;
        border-radius: 3px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                    opacity 0.55s ease;
        transform-origin: center center;
        z-index: 152;
    }
    
    #menuToggle span.over-image {
        background-color: var(--color-light);
    }
    
    /* Transform into X when checked */
    /* (top line) - rotate down 45 degrees */
    #menuToggle input:checked ~ span:nth-of-type(1) {
        transform: rotate(45deg) translate(2px, 10px);
        background: var(--color-accent);
    }
    
    /* (middle line) - fade out */
    #menuToggle input:checked ~ span:nth-of-type(2) {
        opacity: 0;
        transform: scale(0.2);
    }
    
    /*(bottom line) - rotate up 45 degrees */
    #menuToggle input:checked ~ span:nth-of-type(3) {
        transform: rotate(-45deg) translate(0px, -10px);
        background: var(--color-accent);
    }
    
    #menu {
        position: fixed;
        width: 50px;
        height: 500px;
        box-shadow: 0 0 10px rgba(49, 49, 49, 0.3);
        margin: -50px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        background-color: var(--color-light);
        transform: translate(-100%, 0);
        transition: transform 0.5s;
        z-index: 140;
    }
    
    #menu li {
        padding: 10px 0;
        text-align: center;
        height: auto;
    }
    
    #menu hr {
        width: 80px;
    }
    
    #menuToggle input:checked ~ ul {
        transform: none;
    }
    
    /* Remove hover effects on mobile */
    nav li:hover a {
        color: var(--color-dark);
    }
    
    nav li:hover hr {
        height: 0;
    }
    
    /* Project pages - stack layout */
    .project-hero {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-top: 0;
        margin-bottom: 30px;
        height: auto;
        padding-top: 0;
    }
    
    .project-hero-image {
        order: -1;
        height: 50vh;
    }
    
    .project-info {
        padding: 30px;
    }
    
    .project-title {
        font-size: 2.3em;
        text-align: left;
        margin-top: 0;
    }
    
    .project-subtitle {
        font-size: 1.5em;
        text-align: left;
    }
    
    .project-description {
        font-size: 1em;
        text-align: left;
        width: 100%;
    }
    
    .project-gallery {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .project-nav-link.next {
        margin-left: 0;
    }
    
    .nav-project-name {
        font-size: 1em;
    }
}

/* ========================================
   MEDIA QUERIES - MOBILE (under 768px)
   ======================================== */
@media only screen and (max-width: 768px) {
    .grid-container a:hover .hover {
        background-color: transparent;
    }
    
    main:not(.project-page) {
        margin: 65px 0 0 0;
        width: 100%;
        padding: 0;
    }
    
    .grid-container {
        margin-top: 10px;
        padding: 0 10px;
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .project-card {
        height: 57.5vw;
        width: 100%;
        margin: 0;
    }
    
    .project-card:hover .hover {
        background-color: transparent;
    }
    
    footer {
        font-size: 0.5em;
        padding: 25px 0 10px;
    }
    
    .project-page {
        margin-top: 0;
    }
    
    .project-hero {
        margin-bottom: 50px;
    }
    
    .project-hero-image {
        height: 45vh;
    }
    
    #about {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        margin: 100px 20px;
    }
    
    .aboutparagraph {
        margin: 0 auto;
        width: 90%;
        max-width: 450px;
    }
    
    .selfcontainer {
        display: none;
    }
    
    .contacttitle {
        font-size: 2.5em;
        width: auto;
        max-width: 90%;
        margin: 25px auto 15px;
    }
    
    .contactbio {
        width: 90%;
        max-width: 90%;
        margin: 15px auto;
    }
    
    .contactlinks ul {
        margin: 15px auto 0;
        max-width: 90%;
        padding: 0;
    }
    
    .formcontainer {
        margin: 40px auto;
        width: 90%;
    }
    
    input[id="fname"],
    input[id="lname"] {
        width: 100%;
        margin-left: 0;
    }
}

/* ========================================
   VERY SMALL MOBILE (under 600px)
   ======================================== */
@media only screen and (max-width: 600px) {
    .project-title {
        font-size: 2em;
    }
    
    .project-subtitle {
        font-size: 1.2em;
    }
    
    .project-description {
        font-size: 0.95em;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-hero-image {
        height: 40vh;
    }
}

/* ========================================
   VERY SMALL MOBILE (under 400px)
   ======================================== */
@media only screen and (max-width: 400px) {
    .contacttitle {
        font-size: 1.75em;
    }
    
    .selfcontainer {
        width: 200px;
        height: 300px;
    }
    
    .project-title {
        font-size: 1.6em;
    }
    
    .project-subtitle {
        font-size: 1em;
    }
    
    .project-description {
        font-size: 0.9em;
    }
    
    .project-hero-image {
        height: 35vh;
    }
}