/* =========================================
   BASIC WEBSITE SETTINGS
   ========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: #222222;
    padding-top: 76px;
}


/* =========================================
   TOP NAVIGATION BAR
   ========================================= */

header {
    background-color: #161616;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 8%;

    /* ALWAYS KEEP HEADER AT TOP */
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9000;
}


/* Company name on left */

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}


/* Navigation area */

nav {
    display: flex;
    gap: 30px;
}


/* Individual navigation links */

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}


/* Change appearance when mouse is over link */

nav a:hover {
    color: #cccccc;
}

/* =========================================
   HERO / HOME SECTION
   ========================================= */

#home {

    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    /* Local fallback if Google Drive / Cloud Run is unavailable */
    background-image:
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    position: relative;

    overflow: hidden;
}


/* =========================================
   GOOGLE DRIVE HERO BANNER SLIDER
   ========================================= */

.hero-slides {

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 0;

    overflow: hidden;
}


/* Each banner image fills the hero area */

.hero-slide {

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.015);

    transition:
        opacity 1.1s ease,
        transform 6s ease;
}


/* Currently visible banner */

.hero-slide.active {

    opacity: 1;

    transform: scale(1);
}


/* Permanent dark overlay for readable text */

.hero-shade {

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.60)
        );

    z-index: 1;

    pointer-events: none;
}


/* Keeps the hero text above the banner images */

.hero-content {

    max-width: 750px;

    position: relative;

    z-index: 2;
}


/* Slider navigation dots */

.hero-dots {

    position: absolute;

    left: 50%;

    bottom: 22px;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;

    z-index: 3;
}


.hero-dot {

    width: 10px;
    height: 10px;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.90);

    border-radius: 50%;

    background-color:
        rgba(255, 255, 255, 0.25);

    cursor: pointer;
}


.hero-dot.active {

    background-color: white;
}


/* No need for dots with only one banner */

.hero-dots.single-banner {

    display: none;
}



/* Small Phoenix text */

.hero-small-text {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}


/* Main company name */

#home h1 {

    font-size: 64px;

    line-height: 1.05;

    margin: 0 0 15px 0;
}


/* Main slogan */

#home h2 {

    font-size: 32px;

    font-weight: normal;

    margin: 0 0 20px 0;
}


/* Description text */

.hero-description {

    font-size: 18px;

    line-height: 1.6;

    max-width: 600px;

    margin-bottom: 30px;
}


/* Container for both buttons */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* Main estimate button */

.primary-button {

    display: inline-block;

    padding: 16px 25px;

    background-color: white;

    color: #161616;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;

    border: 2px solid white;
}


/* Phone button */

.secondary-button {

    display: inline-block;

    padding: 16px 25px;

    background-color: transparent;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;

    border: 2px solid white;
}


/* Button hover effects */

.primary-button:hover {

    background-color: #dddddd;

    border-color: #dddddd;
}


.secondary-button:hover {

    background-color: white;

    color: #161616;
}

/* =========================================
   SERVICES SECTION
   ========================================= */

#services {
    padding: 90px 8%;
    background-color: #f5f5f5;
}


/* Heading area above the service cards */

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}


/* Small text above section title */

.section-small-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #666666;
    margin-bottom: 10px;
}


/* Main services heading */

.section-heading h2 {
    font-size: 42px;
    margin: 0 0 15px 0;
    color: #161616;
}


/* Description below heading */

.section-heading p {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
}


/* Grid that holds the service cards */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* Individual service card */

.service-card {
    background-color: white;

    padding: 35px;

    min-height: 210px;

    border: 1px solid #dddddd;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Service title */

.service-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #161616;
}


/* Service description */

.service-card p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
}


/* Small movement when hovering over card */

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.10);
}


/* =========================================
   TABLET / MOBILE SERVICES
   ========================================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .services-grid {
        grid-template-columns:
            1fr;
    }

}
/* =========================================
   PROJECTS / OUR WORK SECTION
   ========================================= */

#projects {
    padding: 90px 8%;
    background-color: white;
}


/* =========================================
   PROJECT PHOTO GRID
   ========================================= */

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* Each individual project */

.project-card {
    height: 320px;

    overflow: hidden;

    background-color: #eeeeee;
}


/* Project photographs */

.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


/* Slight zoom when mouse moves over photo */

.project-card:hover img {
    transform: scale(1.05);
}


/* =========================================
   PROJECT GALLERY — TABLET
   ========================================= */

@media (max-width: 900px) {

    .projects-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   PROJECT GALLERY — PHONE
   ========================================= */

@media (max-width: 600px) {

    .projects-grid {
        grid-template-columns:
            1fr;
    }

    .project-card {
        height: 280px;
    }

}
/* =========================================
   ABOUT US SECTION
   ========================================= */

#about {
    padding: 100px 8%;
    background-color: #161616;
    color: white;
}


.about-content {
    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    gap: 80px;

    align-items: center;
}


/* Main heading */

.about-text h2 {
    font-size: 46px;

    margin:
        0 0 25px 0;
}


/* About paragraphs */

.about-text p {
    font-size: 17px;

    line-height: 1.8;

    color: #cccccc;
}


/* Small heading needs to be visible on dark background */

#about .section-small-text {
    color: #aaaaaa;
}


/* Strong closing statement */

.about-text .about-statement {
    color: white;

    font-size: 20px;

    font-weight: bold;

    margin-top: 30px;
}


/* =========================================
   ABOUT DETAILS / EXPERIENCE BOXES
   ========================================= */

.about-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.about-detail {
    min-height: 150px;

    padding: 25px;

    border:
        1px solid
        #444444;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.about-detail strong {
    font-size: 21px;

    margin-bottom: 10px;
}


.about-detail span {
    color: #aaaaaa;

    line-height: 1.5;
}


/* =========================================
   ABOUT SECTION — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .about-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .about-details {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 36px;
    }

}
/* =========================================
   CONTACT / FREE ESTIMATE SECTION
   ========================================= */

#contact {
    padding: 100px 8%;
    background-color: #f5f5f5;
}


.contact-container {
    display: grid;

    grid-template-columns:
        1fr 1.2fr;

    gap: 80px;

    align-items: start;
}


/* =========================================
   LEFT CONTACT INFORMATION
   ========================================= */

.contact-info h2 {
    font-size: 46px;

    margin:
        0 0 20px 0;

    color: #161616;
}


.contact-intro {
    font-size: 18px;

    line-height: 1.7;

    color: #555555;

    margin-bottom: 40px;
}


.contact-detail {
    display: flex;

    flex-direction: column;

    margin-bottom: 28px;
}


.contact-detail strong {
    font-size: 18px;

    color: #161616;

    margin-bottom: 7px;
}


.contact-detail a {
    color: #161616;

    text-decoration: none;

    font-size: 18px;

    font-weight: bold;

    margin-bottom: 5px;
}


.contact-detail a:hover {
    text-decoration: underline;
}


.contact-detail span {
    color: #666666;

    line-height: 1.5;
}


.contact-badge {
    display: inline-block;

    margin-top: 10px;

    padding: 14px 18px;

    background-color: #161616;

    color: white;

    font-weight: bold;

    letter-spacing: 1px;
}


/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form-area {
    background-color: white;

    padding: 40px;

    border: 1px solid #dddddd;
}


.contact-form-area h3 {
    font-size: 28px;

    margin:
        0 0 30px 0;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 20px;
}


.form-group label {
    font-weight: bold;

    margin-bottom: 8px;

    color: #161616;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border:
        1px solid
        #cccccc;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
}


.form-group textarea {
    resize: vertical;
}


.contact-form-area button {
    width: 100%;

    padding: 17px;

    border: none;

    background-color: #161616;

    color: white;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    letter-spacing: 0.5px;
}


.contact-form-area button:hover {
    background-color: #333333;
}


/* =========================================
   CONTACT SECTION — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-form-area {
        padding: 25px;
    }

}
/* =========================================
   THANK YOU PAGE
   ========================================= */

.thank-you-page {
    margin: 0;
    background-color: #f5f5f5;
}


/* Main thank-you area */

.thank-you-section {
    min-height: calc(100vh - 85px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 8%;
}


/* Main white confirmation box */

.thank-you-box {
    width: 100%;
    max-width: 760px;

    background-color: white;

    padding: 65px;

    text-align: center;

    border: 1px solid #dddddd;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.08);
}


/* Small heading */

.thank-you-box .section-small-text {
    color: #666666;

    margin-bottom: 20px;
}


/* THANK YOU heading */

.thank-you-box h1 {
    font-size: 60px;

    margin: 0 0 10px 0;

    color: #161616;
}


/* Your Request Has Been Sent */

.thank-you-box h2 {
    font-size: 28px;

    margin: 0 0 25px 0;

    color: #161616;
}


/* Main message */

.thank-you-message {
    max-width: 580px;

    margin:
        0 auto 35px auto;

    color: #555555;

    font-size: 18px;

    line-height: 1.7;
}


/* Divider line */

.thank-you-divider {
    width: 80px;

    height: 2px;

    background-color: #161616;

    margin:
        35px auto;
}


/* Direct contact text */

.thank-you-call-text {
    font-size: 17px;

    margin-bottom: 10px;
}


/* Clickable phone number */

.thank-you-phone {
    display: inline-block;

    font-size: 28px;

    font-weight: bold;

    color: #161616;

    text-decoration: none;

    margin-bottom: 8px;
}


.thank-you-phone:hover {
    text-decoration: underline;
}


/* Business hours */

.thank-you-hours {
    color: #666666;

    margin-bottom: 35px;
}


/* Return Home button */

.thank-you-home-button {
    display: inline-block;

    padding: 16px 28px;

    background-color: #161616;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 0.5px;
}


.thank-you-home-button:hover {
    background-color: #333333;
}


/* =========================================
   THANK YOU PAGE — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .thank-you-section {
        padding: 40px 20px;
    }

    .thank-you-box {
        padding: 40px 25px;
    }

    .thank-you-box h1 {
        font-size: 44px;
    }

    .thank-you-box h2 {
        font-size: 23px;
    }

    .thank-you-phone {
        font-size: 24px;
    }

}
/* =========================================
   PROJECT GALLERY LIGHTBOX
   ========================================= */

.project-card img {
    cursor: pointer;
}


/* Full-screen dark overlay */

.lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color:
        rgba(0, 0, 0, 0.92);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;
}


/* Show lightbox */

.lightbox.active {
    display: flex;
}


/* Large project image */

.lightbox-image {
    max-width: 85%;
    max-height: 85%;

    object-fit: contain;

    box-shadow:
        0 10px 40px
        rgba(0, 0, 0, 0.5);
}


/* Close button */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    background: none;

    border: none;

    color: white;

    font-size: 48px;

    cursor: pointer;

    z-index: 10001;
}


/* Left/right arrows */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background-color:
        rgba(0, 0, 0, 0.35);

    border: none;

    color: white;

    font-size: 42px;

    padding: 18px;

    cursor: pointer;

    z-index: 10001;
}


.lightbox-left {
    left: 25px;
}


.lightbox-right {
    right: 25px;
}


/* Hover */

.lightbox-arrow:hover {
    background-color:
        rgba(255, 255, 255, 0.15);
}


/* =========================================
   LIGHTBOX — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .lightbox-image {
        max-width: 92%;
        max-height: 75%;
    }

    .lightbox-arrow {
        font-size: 30px;
        padding: 12px;
    }

    .lightbox-left {
        left: 5px;
    }

    .lightbox-right {
        right: 5px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

}
/* =========================================
   PROJECT ALBUM CARDS
   ========================================= */

.project-album {
    position: relative;
    cursor: pointer;
}


/* Dark gradient over bottom of photo */

.project-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px 22px 20px 22px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.85)
        );

    pointer-events: none;
}


/* Project title */

.project-overlay h3 {
    margin: 0 0 5px 0;

    font-size: 22px;

    color: white;
}


/* Number of photos */

.project-overlay span {
    font-size: 14px;

    color: #dddddd;
}
/* =========================================
   LIGHTBOX PROJECT INFORMATION
   ========================================= */

.lightbox-info {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    text-align: center;

    color: white;

    z-index: 10001;
}


.lightbox-info h3 {
    margin: 0 0 5px 0;

    font-size: 22px;

    color: white;
}


.lightbox-info span {
    font-size: 14px;

    color: #cccccc;
}
/* =========================================
   FULL-SCREEN MOBILE LIGHTBOX
   ========================================= */

@media (max-width: 600px) {

    .lightbox {
        position: fixed;

        top: 0;
        left: 0;

        width: 100vw;
        height: 100vh;

        background-color: #000000;

        align-items: center;
        justify-content: center;

        padding: 0;

        z-index: 99999;
    }


    /* Main image */

    .lightbox-image {
        max-width: 100vw;
        max-height: 78vh;

        width: auto;
        height: auto;

        object-fit: contain;

        box-shadow: none;
    }


    /* Close button */

    .lightbox-close {
        position: fixed;

        top: 16px;
        right: 18px;

        font-size: 42px;

        color: white;

        z-index: 100002;
    }


    /* Left and right arrows */

    .lightbox-arrow {
        position: fixed;

        top: 50%;

        transform: translateY(-50%);

        background-color:
            rgba(0, 0, 0, 0.35);

        font-size: 34px;

        padding: 12px;

        z-index: 100002;
    }


    .lightbox-left {
        left: 6px;
    }


    .lightbox-right {
        right: 6px;
    }


    /* Project title and counter */

    .lightbox-info {
        position: fixed;

        bottom: 24px;
        left: 50%;

        transform: translateX(-50%);

        width: 90%;

        text-align: center;

        color: white;

        z-index: 100002;
    }


    .lightbox-info h3 {
        font-size: 20px;

        margin-bottom: 6px;
    }


    .lightbox-info span {
        font-size: 14px;

        color: #cccccc;
    }

}
/* =========================================
   PREVENT MOBILE HORIZONTAL PAGE MOVEMENT
   ========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================
   MOBILE LIGHTBOX SWIPE FIX
   ========================================= */

@media (max-width: 600px) {

    .lightbox {
        /* Fill the actual phone screen */
        position: fixed;

        inset: 0;

        width: 100%;
        height: 100dvh;

        margin: 0;
        padding: 0;

        /* Do not allow the browser to slide the page sideways */
        overflow: hidden;

        overscroll-behavior: none;

        touch-action: none;

        background-color: #000000;
    }

}
/* =========================================
   LIGHTBOX THUMBNAILS
   ========================================= */

.lightbox-thumbnails {
    position: fixed;

    bottom: 78px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    max-width: 82%;

    overflow-x: auto;

    padding: 6px;

    z-index: 100002;
}


/* Individual thumbnail */

.lightbox-thumbnail {
    width: 65px;
    height: 50px;

    object-fit: cover;

    opacity: 0.55;

    border: 2px solid transparent;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* Hover effect */

.lightbox-thumbnail:hover {
    opacity: 0.85;

    transform: scale(1.04);
}


/* Current active photo */

.lightbox-thumbnail.active {
    opacity: 1;

    border-color: white;
}


/* =========================================
   LIGHTBOX THUMBNAILS — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .lightbox-thumbnails {
        bottom: 82px;

        max-width: 92%;

        gap: 6px;

        padding: 4px;
    }


    .lightbox-thumbnail {
        width: 52px;
        height: 42px;
    }


    /* Move title slightly lower */
    .lightbox-info {
        bottom: 22px;
    }

}
/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background-color: #111111;
    color: white;
    padding: 70px 8% 25px 8%;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-column h3 {
    font-size: 24px;
    margin-top: 0;
}


.footer-column h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 18px;
}


.footer-column p {
    color: #aaaaaa;
    line-height: 1.7;
}


.footer-column a {
    display: block;

    color: #dddddd;

    text-decoration: none;

    margin-bottom: 10px;
}


.footer-column a:hover {
    color: white;
}


.footer-column strong {
    color: white;
}


.footer-bottom {
    margin-top: 50px;

    padding-top: 20px;

    border-top:
        1px solid
        #333333;

    text-align: center;
}


.footer-bottom p {
    color: #777777;
    font-size: 13px;
}


/* =========================================
   FOOTER — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

}
/* =========================================
   MOBILE NAVIGATION
   ========================================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 30px;

    cursor: pointer;
}


@media (max-width: 750px) {

    header {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;

        padding:
            18px 6%;

        z-index: 9000;
    }

    body {
        padding-top: 72px;
    }


    .logo {
        font-size: 18px;
    }


    .menu-toggle {
        display: block;
    }


    nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background-color: #161616;

        padding:
            10px 0 18px 0;

        z-index: 5000;
    }


    nav.active {
        display: flex;
    }


    nav a {
        padding:
            14px 6%;

        width: 100%;
    }

}
/* =========================================
   MOBILE HERO TEXT FIX
   ========================================= */

@media (max-width: 600px) {

    #home {
        padding: 70px 7% 60px 7%;
    }


    #home h1 {
        font-size: 42px;

        line-height: 1.05;

        max-width: 100%;

        overflow-wrap: break-word;
    }


    #home h2 {
        font-size: 26px;

        line-height: 1.25;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.6;

        max-width: 100%;
    }


    .hero-content {
        max-width: 100%;
    }

}
/* =========================================
   MOBILE ESTIMATE FORM IMPROVEMENTS
   ========================================= */

@media (max-width: 600px) {

    #contact {
        padding: 70px 6%;
    }


    .contact-form-area {
        padding: 22px;
    }


    .contact-form-area h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-group {
        margin-bottom: 18px;
    }


    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;

        padding: 15px;

        min-height: 50px;

        border-radius: 0;
    }


    .form-group textarea {
        min-height: 150px;
    }


    .contact-form-area button {
        min-height: 54px;

        font-size: 14px;

        padding: 16px 12px;
    }

}
/* ============================================================
   PROJECT PHOTO SUBMISSION AREA
   ============================================================ */

.photo-submit-area {
    margin-top: 50px;
    padding: 40px;

    background-color: #f5f5f5;

    text-align: center;

    border: 1px solid #dddddd;
}


.photo-submit-area .section-small-text {
    margin: 0 0 8px 0;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 3px;

    color: #555555;
}


.photo-submit-area h3 {
    margin: 10px 0 15px 0;

    font-size: 30px;
    font-weight: 700;

    color: #161616;
}


.photo-submit-text {
    max-width: 650px;

    margin: 0 auto 25px auto;

    font-size: 16px;
    line-height: 1.6;

    color: #555555;
}


.photo-submit-button {
    display: inline-block;

    padding: 16px 25px;

    background-color: #161616;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 0.5px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.photo-submit-button:hover {
    background-color: #333333;

    transform: translateY(-2px);
}


/* ============================================================
   PROJECT PHOTO SUBMISSION - MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .photo-submit-area {
        margin-top: 35px;

        padding: 30px 20px;
    }


    .photo-submit-area h3 {
        font-size: 24px;
    }


    .photo-submit-text {
        font-size: 15px;
    }


    .photo-submit-button {
        display: block;

        width: 100%;

        padding: 16px 12px;

        font-size: 13px;

        text-align: center;
    }

}

/* =========================================
   HERO SLIDER — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .hero-slide {

        /*
           cover preserves the image proportions.
           Images may crop around the edges,
           but they will not stretch or distort.
        */

        background-position: center center;
    }


    .hero-dots {

        bottom: 16px;
    }

}


/* =========================================
   HERO SLIDER — REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide {

        transition:
            opacity 0.25s ease;

        transform: none;
    }

}
/* ============================================================
   GARO'S CONSTRUCTION
   OPTION 1 COLOR PALETTE
   CHARCOAL + WARM CONCRETE + CONSTRUCTION GOLD
   ============================================================ */

:root {
    --garo-charcoal: #181818;
    --garo-off-white: #F4F1EA;
    --garo-concrete: #8A8A86;
    --garo-gold: #D89B2B;
    --garo-gold-hover: #E5AA3A;
    --garo-white: #FFFFFF;
    --garo-text: #222222;
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

header {
    background-color: var(--garo-charcoal);
}

.logo {
    color: var(--garo-white);
}

nav a {
    color: var(--garo-white);
}

nav a:hover {
    color: var(--garo-gold);
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-small-text {
    color: var(--garo-gold);
}


/* Primary hero button */

.primary-button {
    background-color: var(--garo-gold);
    border-color: var(--garo-gold);
    color: var(--garo-charcoal);
}

.primary-button:hover {
    background-color: var(--garo-gold-hover);
    border-color: var(--garo-gold-hover);
    color: var(--garo-charcoal);
}


/* Secondary hero button */

.secondary-button {
    background-color: transparent;
    border-color: var(--garo-white);
    color: var(--garo-white);
}

.secondary-button:hover {
    background-color: var(--garo-white);
    color: var(--garo-charcoal);
}


/* Hero slider dots */

.hero-dot {
    border-color: rgba(255, 255, 255, 0.90);
    background-color: rgba(255, 255, 255, 0.30);
}

.hero-dot.active {
    background-color: var(--garo-gold);
    border-color: var(--garo-gold);
}


/* ============================================================
   SERVICES
   ============================================================ */

#services {
    background-color: var(--garo-off-white);
}

.section-small-text {
    color: var(--garo-gold);
}

.section-heading h2 {
    color: var(--garo-charcoal);
}

.section-heading p {
    color: #5E5E5A;
}

.service-card {
    background-color: var(--garo-white);
    border-color: #D8D4CB;
}

.service-card h3 {
    color: var(--garo-charcoal);
}

.service-card p {
    color: #5E5E5A;
}

.service-card:hover {
    border-color: var(--garo-gold);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.10);
}


/* ============================================================
   PROJECTS
   ============================================================ */

#projects {
    background-color: var(--garo-white);
}


/* ============================================================
   PHOTO SUBMISSION AREA
   ============================================================ */

.photo-submit-area {
    background-color: var(--garo-off-white);
    border-color: #D8D4CB;
}

.photo-submit-area .section-small-text {
    color: var(--garo-gold);
}

.photo-submit-area h3 {
    color: var(--garo-charcoal);
}

.photo-submit-button {
    background-color: var(--garo-gold);
    color: var(--garo-charcoal);
}

.photo-submit-button:hover {
    background-color: var(--garo-gold-hover);
}


/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form-area button {
    background-color: var(--garo-gold);
    color: var(--garo-charcoal);
}

.contact-form-area button:hover {
    background-color: var(--garo-gold-hover);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background-color: var(--garo-charcoal);
}

.site-footer a:hover {
    color: var(--garo-gold);
}


/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thank-you-page {
    background-color: var(--garo-off-white);
}

.thank-you-box .section-small-text {
    color: var(--garo-gold);
}

.thank-you-divider {
    background-color: var(--garo-gold);
}

.thank-you-home-button {
    background-color: var(--garo-gold);
    color: var(--garo-charcoal);
}

.thank-you-home-button:hover {
    background-color: var(--garo-gold-hover);
}
/* ============================================================
   GARO'S CONSTRUCTION HEADER LOGO
   ============================================================ */

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: auto;
    height: 60px;
    object-fit: contain;
}


/* MOBILE LOGO */

@media (max-width: 768px) {

    .site-logo img {
        height: 48px;
    }

}