/*
Theme Name: Tabatha Portfolio
Author: Tabatha
Description: Custom WordPress portfolio theme
Version: 1.0
*/

/* ------------------------------
   Global Styles
------------------------------ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
}

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

:root {
    --brand-red: #BD2F37;
}
p {
    font-size: 18px;
    color: #000;
}

/* ------------------------------
   Header
------------------------------ */

.site-header {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 0 auto;
}

/* ------------------------------
   Logo
------------------------------ */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: 550px !important;
    max-width: 600px !important;
    height: auto;
}


/* ------------------------------
   Navigation
------------------------------ */

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.site-navigation a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.site-navigation a:hover {
    color: var(--brand-red);
}

/* ------------------------------
   Hero Section
------------------------------ */

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-intro {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-red);
}

.hero h1 {
    margin: 0 0 25px;
    font-size: 70px;
    line-height: 1.2;
}

.hero-description {
    margin: 0 0 35px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    background: var(--brand-red)
    color: #fff;
    font-weight: 600;
}

.button:hover {
    background: #96252C;
}

.button-secondary {
    background: transparent;
    color: #222;
    border: 1px solid #222;
}

.button-secondary:hover {
    background: #222;
    color: #fff;
}


.hero-image {
    flex: 0 0 350px;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}
/* ------------------------------
   Services Section
------------------------------ */

.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 30px;
}

.services-intro {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-label {
    margin: 0 0 12px;
    color: var(--brand-red)
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services h2 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.15;
}

.services-intro > p:last-child {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
}

.service-card p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}
/* ------------------------------
   Featured Work
------------------------------ */

.featured-work {
    padding: 90px 30px;
    background: #f7f7f7;
}

.featured-work-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.featured-work-intro h2 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.15;
}

.featured-work-intro p:last-child {
    margin: 0;
    line-height: 1.7;
}

.work-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.work-card {
    background: #fff;
}

.work-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.work-content {
    padding: 30px;
}

.work-category {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-content h3 {
    margin: 0 0 15px;
    font-size: 26px;
}

.work-content p:not(.work-category) {
    margin: 0 0 20px;
    line-height: 1.6;
}

.work-content a {
    font-weight: 700;
}

.work-content a:hover {
    color: var(--brand-red)
}

.featured-work-button {
    margin-top: 45px;
    text-align: center;
}
/* ------------------------------
   Approach Section
------------------------------ */

.approach {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.approach-content {
    max-width: 600px;
}

.approach-content h2 {
    margin: 0 0 25px;
    font-size: 42px;
    line-height: 1.15;
}

.approach-content > p:not(.section-label) {
    margin: 0 0 30px;
    line-height: 1.7;
}

.text-link {
    font-weight: 700;
}

.text-link:hover {
    color: var(--brand-red);
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-point {
    padding-left: 25px;
    border-left: 3px solid var(--brand-red);
}

.approach-point h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.approach-point p {
    margin: 0;
    line-height: 1.6;
}
/* ------------------------------
   Contact CTA
------------------------------ */

.contact-cta {
    padding: 100px 30px;
    background: #222;
    color: #fff;
    text-align: center;
}

.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta .section-label {
    color: #fff;
}

.contact-cta h2 {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.15;
}

.contact-cta p:not(.section-label) {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
}

/* ------------------------------
   Footer
------------------------------ */

.site-footer {
    background: #222;
    color: #fff;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.footer-brand p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

.footer-navigation {
    display: flex;
    gap: 30px;
}

.footer-navigation a {
    font-size: 15px;
    font-weight: 600;
}

.footer-navigation a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 20px 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}
.test-size {
    width: 50px !important;
}
/* Portfolio Project Pages */ .project-page { background: #fff; } .project-hero { padding: 100px 30px 70px; background: #f7f7f7; } .project-hero-inner { max-width: 900px; margin: 0 auto; } .project-hero h1 { margin: 0 0 25px; font-size: 64px; line-height: 1.1; } .project-intro { max-width: 750px; font-size: 24px; line-height: 1.6; color: #555; } .project-content { padding: 80px 30px 100px; } .project-content-inner { max-width: 900px; margin: 0 auto; } .project-content-inner h2 { margin: 60px 0 20px; font-size: 38px; line-height: 1.2; } .project-content-inner h3 { margin: 40px 0 15px; font-size: 26px; } .project-content-inner p { margin: 0 0 25px; font-size: 18px; line-height: 1.8; color: #444; } .project-content-inner ul { margin: 0 0 35px; padding-left: 25px; } .project-content-inner li { margin-bottom: 12px; font-size: 18px; line-height: 1.6; } .project-content-inner strong { color: #222; } @media (max-width: 768px) { .project-hero { padding: 70px 25px 50px; } .project-hero h1 { font-size: 46px; } .project-intro { font-size: 20px; } .project-content { padding: 60px 25px 80px; } }
PROJECT-SITE-BUTTON CSS:

.project-site-button {
display: inline-block;
background-color: #BD2F37;
color: #ffffff;
padding: 14px 24px;
text-decoration: none;
font-weight: 600;
border-radius: 4px;
}

.project-site-button:hover {
background-color: #000000;
color: #ffffff;
}.project-detail-section {
width: 100%;
margin: 60px 0;
}

.project-detail-content {
display: grid;
grid-template-columns: 90px 1fr;
column-gap: 40px;
padding: 45px 0;
border-top: 1px solid #dddddd;
}

.project-detail-content:last-child {
border-bottom: 1px solid #dddddd;
}

.project-detail-label {
font-size: 16px;
font-weight: 700;
color: #BD2F37;
padding-top: 8px;
}

.project-detail-content h2 {
font-size: 36px;
line-height: 1.2;
color: #000000;
margin: 0 0 22px 0;
}

.project-detail-content p {
max-width: 850px;
font-size: 18px;
line-height: 1.7;
color: #333333;
margin: 0 0 18px 0;
}

.project-detail-content p:last-child {
margin-bottom: 0;
}

@media (max-width: 768px) {

.project-detail-content {
display: block;
padding: 35px 0;
}

.project-detail-label {
margin-bottom: 12px;
}

.project-detail-content h2 {
font-size: 30px;
}

.project-detail-content p {
font-size: 17px;
}

}
/* Portfolio Archive */

.portfolio-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    padding: 60px 20px 0;
}

.portfolio-intro h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #000000;
    margin: 10px 0 25px;
}

.portfolio-intro p:not(.section-label) {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    max-width: 750px;
}


.portfolio-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0 auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}


.portfolio-project-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 390px;
}


.portfolio-project-number {
    font-size: 16px;
    font-weight: 700;
    color: #BD2F37;
    margin-bottom: 25px;
}


.portfolio-project-card h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #000000;
}


.portfolio-project-description {
    flex-grow: 1;
}


.portfolio-project-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}


.portfolio-project-button {
    display: inline-block;
    width: max-content;
    margin-top: 30px;
    background-color: #BD2F37;
    color: #ffffff;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}


.portfolio-project-button:hover {
    color: #ffffff;
}


@media (max-width: 900px) {

    .portfolio-projects {
        grid-template-columns: 1fr;
    }

    .portfolio-intro h1 {
        font-size: 44px;
    }

}
/* Gravity Forms Contact Form */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 16px;
    border-radius: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


/* Field labels */

.contact-field .gfield_label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
}


/* Placeholder text */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #777777;
    opacity: 1;
}


/* Field focus */

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #BD2F37;
    outline: none;
    box-shadow: 0 0 0 1px #BD2F37;
}


/* Text area */

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}


/* Space between fields */

.contact-field {
    margin-bottom: 24px;
}
/* Gravity Forms Submit Button */

#gform_wrapper_1 .gform_button {
    display: inline-block;
    width: auto;
    background-color: #BD2F37;
    color: #ffffff;
    border: none;
    padding: 15px 28px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#gform_wrapper_1 .gform_button:hover {
    background-color: #000000;
}
/* Keep Gravity Forms button from stretching */

#gform_wrapper_1 .gform_footer {
    display: block;
    width: auto;
}

#gform_wrapper_1 .gform_button {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content;
}
/* Gravity Forms Confirmation Message */

.gform_confirmation_message {
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid #BD2F37;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}
/* ABOUT PAGE */

.about-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 30px 80px;
}

.about-hero h1 {
    font-size: 70px;
    line-height: 1.05;
    margin: 15px 0 10px;
    color: #000000;
}

.about-hero h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 25px;
    color: #BD2F37;
}

.about-hero > p:last-child {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}


.about-intro {
    background: #f5f5f5;
    padding: 90px 30px;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h2,
.about-experience h2,
.about-approach h2,
.about-personal h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 15px 0 25px;
    color: #000000;
}

.about-intro p:not(.section-label),
.about-approach > p:not(.section-label),
.about-personal p:not(.section-label) {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}


.about-experience {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 30px;
}

.about-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-experience-card {
    border-top: 3px solid #BD2F37;
    padding-top: 20px;
}

.about-experience-card h3 {
    font-size: 22px;
    margin: 0 0 12px;
    color: #000000;
}

.about-experience-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #000000;
}


.about-approach {
    background: #f5f5f5;
    padding: 100px 30px;
}

.about-approach > h2,
.about-approach > p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-approach-points {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-approach-points h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #BD2F37;
}

.about-approach-points p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}


.about-personal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 30px;
}

.about-personal-content {
    max-width: 800px;
}


@media (max-width: 800px) {

    .about-hero h1 {
        font-size: 50px;
    }

    .about-hero h2 {
        font-size: 26px;
    }

    .about-intro h2,
    .about-experience h2,
    .about-approach h2,
    .about-personal h2 {
        font-size: 36px;
    }

    .about-experience-grid,
    .about-approach-points {
        grid-template-columns: 1fr;
    }

}
/* About Hero Headshot */

.about-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 70px;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-image {
    width: 380px;
}

.about-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 800px) {

    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

}