/* =========================================
   T-SHIRT EXPRESS
   MAIN WEBSITE STYLES
   ========================================= */

:root {
    --red: #e31820;
    --red-dark: #b80f15;
    --blue: #1268d8;
    --blue-bright: #1685ff;
    --black: #08090b;
    --dark: #111318;
    --dark-light: #191c22;
    --white: #ffffff;
    --gray: #aeb4bd;
    --light-gray: #f3f5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* TOP BAR */

.top-bar {
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.top-bar-content {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: var(--white);
}


/* HEADER */

.site-header {
    background: rgba(8, 9, 11, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--red);
}

.header-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    font-size: 29px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.brand-red {
    color: var(--red);
}

.brand-blue {
    color: var(--blue-bright);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--red);
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    border-radius: 6px;
    transition: 0.2s ease;
}

.header-quote-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 25%, rgba(18, 104, 216, 0.22), transparent 32%),
        radial-gradient(circle at 15% 80%, rgba(227, 24, 32, 0.17), transparent 32%),
        linear-gradient(135deg, #08090b 0%, #11151d 55%, #07080a 100%);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.eyebrow {
    color: var(--blue-bright);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(52px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -4px;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 26px;
}

.hero h1 span {
    color: var(--red);
}

.hero-description {
    max-width: 660px;
    color: #d4d7dc;
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 7px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-secondary {
    border: 2px solid var(--blue-bright);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--blue);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    color: #c9cdd3;
    font-size: 13px;
    font-weight: 700;
}

.hero-features span::first-letter {
    color: var(--red);
}


/* HERO CARD */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: min(430px, 100%);
    position: relative;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 5px solid var(--red);
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: var(--blue);
    filter: blur(70px);
    opacity: 0.8;
}

.hero-card-label {
    display: inline-block;
    background: var(--red);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-card h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.92;
    font-style: italic;
    letter-spacing: -2px;
}

.hero-card h2 span {
    color: var(--blue-bright);
}

.hero-card p {
    color: #c6cad0;
    margin-top: 25px;
    max-width: 300px;
}


/* GENERAL SECTION HEADING */

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading > p {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.section-heading span {
    color: #6b7078;
    font-size: 17px;
}


/* SERVICES */

.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 12px 35px rgba(20, 25, 35, 0.07);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--red);
    box-shadow: 0 20px 45px rgba(20, 25, 35, 0.13);
}

.service-number {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 13px;
}

.service-card p {
    min-height: 115px;
    color: #6c7179;
    font-size: 15px;
}

.service-card a {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}


/* WHY US */

.why-us {
    padding: 95px 0;
    background:
        linear-gradient(120deg, rgba(18,104,216,0.13), transparent 45%),
        var(--black);
    color: var(--white);
}

.section-heading.light h2 {
    color: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #2b2e34;
    border-bottom: 1px solid #2b2e34;
}

.benefit {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid #2b2e34;
}

.benefit:last-child {
    border-right: 0;
}

.benefit strong {
    display: block;
    color: var(--red);
    font-size: 30px;
    font-style: italic;
}

.benefit span {
    color: #c8ccd2;
    font-weight: 700;
}


/* OUR WORK */

.our-work {
    padding: 100px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.work-placeholder {
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background:
        linear-gradient(145deg, #15181d, #08090b);
    color: var(--white);
    border-radius: 10px;
    border-bottom: 5px solid var(--blue);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
}


/* CTA */

.cta {
    padding: 75px 0;
    background:
        linear-gradient(110deg, var(--red) 0%, #c80f17 58%, #9f0b11 100%);
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta p {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.cta h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta span {
    color: #ffe7e8;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta .btn-primary {
    background: var(--black);
}


/* FOOTER */

footer {
    background: #07080a;
    color: var(--white);
}

.footer-content {
    min-height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-content strong {
    font-size: 25px;
}

.footer-content p {
    color: #9298a1;
    margin-top: 5px;
}

.footer-content a {
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.copyright {
    padding: 18px 5%;
    text-align: center;
    border-top: 1px solid #1d2025;
    color: #70757d;
    font-size: 12px;
}


/* MOBILE */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
        min-height: auto;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .service-grid,
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .cta-content {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(92%, 520px);
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-content > span {
        display: none;
    }

    .header-content {
        min-height: 70px;
    }

    .brand {
        font-size: 22px;
    }

    .header-quote-btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 11px;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-card {
        padding: 30px 25px;
    }

    .services,
    .our-work,
    .why-us {
        padding: 70px 0;
    }

    .service-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
        margin-bottom: 25px;
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit {
        padding: 25px 10px;
    }

    .benefit strong {
        font-size: 23px;
    }

    .footer-content {
        padding: 45px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}/* T-SHIRT EXPRESS LOGO */

.logo-brand {
    display: flex;
    align-items: center;
}

.logo-brand img {
    display: block;
    width: 145px;
    height: 145px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .logo-brand img {
        width: 72px;
        height: 72px;
    }
}@media (max-width: 1050px) {
    .desktop-nav {
        gap: 18px;
    }

    .header-quote-btn {
        padding: 0 16px;
    }

    .logo-brand img {
        width: 115px;
        height: 115px;
    }
}/* ========================================
   PRINTING SERVICES SHOWCASE
======================================== */

.services-showcase {
    padding: 80px 20px;
    background: #080b12;
    text-align: center;
}

.services-showcase .section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
}

.services-showcase .section-heading h2 {
    margin: 8px 0 15px;
    font-size: clamp(32px, 4vw, 52px);
    color: #ffffff;
}

.services-showcase .section-heading p {
    color: #c8cbd2;
    line-height: 1.7;
}

.services-showcase-image {
    display: block;
    max-width: 1150px;
    margin: 0 auto;
}

.services-showcase-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-showcase-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 35px;
}

@media (max-width: 700px) {
    .services-showcase {
        padding: 55px 15px;
    }

    .services-showcase .section-heading {
        margin-bottom: 25px;
    }

    .services-showcase-cta {
        flex-direction: column;
    }

    .services-showcase-cta .btn {
        width: 100%;
    }
}

/* OUR WORK IMAGE GRID */

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 1200px;
    margin: 35px auto 0;
}

.work-item {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #080b10;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
/* TABLET */
@media (max-width: 1000px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PHONE */
@media (max-width: 600px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}/* MAKE OUR WORK SECTION WIDER ON DESKTOP */
.our-work .container {
    max-width: 1400px;
    width: 94%;
}

.our-work .work-grid {
    max-width: 1300px;
    width: 100%;
}/* FINAL OUR WORK DESKTOP SIZE */
@media (min-width: 1001px) {
    .our-work .work-grid {
        display: grid;
        grid-template-columns: repeat(4, 260px);
        justify-content: center;
        gap: 22px;
        max-width: none;
        width: 100%;
    }

    .our-work .work-item {
        width: 260px;
    }

    .our-work .work-item img {
        width: 260px;
        height: auto;
        display: block;
    }
}/* ========================================
   GET A QUOTE PAGE
======================================== */

.quote-page {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 70px 20px 90px;
}

.quote-page .container {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-heading {
    text-align: center;
    margin-bottom: 40px;
}

.quote-heading .eyebrow {
    color: #e31b23;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

.quote-heading h1 {
    color: #080b10;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 12px;
}

.quote-heading > p:last-child {
    color: #555;
    font-size: 17px;
}


/* FORM BOX */

.quote-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-top: 6px solid #e31b23;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    color: #080b10;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #dddddd;
    border-radius: 8px;
    padding: 14px 15px;
    font-family: inherit;
    font-size: 16px;
    background: #ffffff;
    color: #111111;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e31b23;
}

.form-group textarea {
    resize: vertical;
}

.form-full {
    width: 100%;
}

.form-group small {
    color: #777;
    margin-top: 7px;
}


/* SUBMIT BUTTON */

.quote-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 17px 25px;
}


/* PHONE AREA */

.quote-phone {
    text-align: center;
    margin-top: 30px;
}

.quote-phone p {
    margin-bottom: 7px;
    color: #555;
}

.quote-phone a {
    color: #e31b23;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
}


/* MOBILE */

@media (max-width: 700px) {

    .quote-page {
        padding: 45px 15px 60px;
    }

    .quote-heading h1 {
        font-size: 36px;
    }

    .quote-form {
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}/* ========================================
   QUOTE PAGE FINAL LAYOUT FIX
======================================== */

/* HEADER ON QUOTE PAGE */
.quote-page-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MAKE QUOTE PAGE MORE COMPACT */
.quote-page {
    padding: 45px 20px 60px;
}

.quote-page .container {
    max-width: 850px;
}

.quote-heading {
    margin-bottom: 28px;
}

.quote-heading h1 {
    font-size: 40px;
}

.quote-form {
    padding: 30px 35px;
    border-radius: 14px;
}

.form-grid {
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 13px;
    font-size: 15px;
}/* QUOTE SUCCESS MESSAGE */

.quote-success {
    display: none;
    max-width: 800px;
    margin: 25px auto;
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-top: 5px solid #d71920;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.quote-success h2 {
    margin-bottom: 12px;
    color: #111111;
}

.quote-success p {
    margin: 8px 0;
}

.quote-success a {
    color: #d71920;
    font-weight: bold;
    text-decoration: none;
}/* =========================
   WHY US SECTION
========================= */

.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #080b10, #151a22);
    color: #ffffff;
}

.why-us .section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.why-us .section-heading .eyebrow {
    color: #e31b23;
    font-weight: 800;
    letter-spacing: 2px;
}

.why-us .section-heading h2 {
    color: #ffffff;
    font-size: 42px;
    margin: 8px 0 15px;
}

.why-us .section-heading > p:last-child {
    color: #cccccc;
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.why-card {
    background: #11161d;
    border-top: 4px solid #e31b23;
    border-radius: 10px;
    padding: 30px 22px;
    text-align: center;
    min-height: 190px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-7px);
}

.why-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 19px;
}

.why-card p {
    color: #c8c8c8;
    line-height: 1.6;
    font-size: 15px;
}

.why-us-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* TABLET */
@media (max-width: 1000px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PHONE */
@media (max-width: 600px) {
    .why-us {
        padding: 60px 20px;
    }

    .why-us .section-heading h2 {
        font-size: 32px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-cta {
        flex-direction: column;
    }
}/* FIX NAVIGATION SCROLL POSITION */

#services,
#why-us,
#work,
#contact {
    scroll-margin-top: 140px;
}/* CONTACT NAVIGATION OVERLAP FIX */
#contact {
    scroll-margin-top: 180px;
}/* ALLOW CONTACT SECTION TO SCROLL ABOVE STICKY HEADER */
body {
    padding-bottom: 180px;
}