/* Base theme */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #1D1616;
    /* page background */
    color: #FFF6DA;
    /* base text */
}

/* Utility */
.gradient-text {
    background: linear-gradient(90deg, #A94A4A, #F4D793);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Mobile tweak for nav menu layout */
@media (max-width: 768px) {
    nav ul {
        justify-content: center;
        width: 100%;
    }
}

#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* stay above other content */
    background-color: #1D1616;
    /* match page background */
}

main {
    padding-top: 120px;
    /* adjust based on actual header height */
}

/* Contact form text color */
#contactForm input,
#contactForm textarea {
    color: #FFF6DA;
    /* soft white used in your theme */
}

/* Semantic hooks (optional for future custom styling) 
.workSection {}
.aboutSection {}
.contactSection {}
.workProjectCard {}
.footerSocialLink {}
*/