@charset "utf-8";
/* ==================================================
HOME PAGE
HEADER + HERO SECTION
Dream Builders Bloomington
================================================== */

/* =========================
HEADER
========================= */

.mobile-contact {
    display: none;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 24px 40px;
}

.site-logo img {
    width: 145px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 14px;
}

.main-nav a:hover {
    color: #b88a3b;
}

.header-actions {
    white-space: nowrap;
	text-align: right;
}

.header-location {
    color: #d6ab59;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-top: 6px;
	
	text-shadow:
        0 2px 8px rgba(0,0,0,.55);
}

.header-location:before {
    content: "⌖";
    margin-right: 6px;
}

.header-phone {
    color: #ffffff;
    font-weight: 700;
    margin-right: 16px;
    text-decoration: none;
	
	text-shadow:
        0 2px 10px rgba(0,0,0,.65);
}

.header-phone:hover {
    color: #b88a3b;
}

.header-cta {
    background: #b88a3b;
    color: #ffffff;
    padding: 13px 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.header-cta:hover {
    background: #d0a24d;
    color: #ffffff;
}

/* =========================
HERO
========================= */

.hero-slider {
    position: relative;
    height: 78vh;
    min-height: 650px;
    overflow: hidden;
    background: #0e211c;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: cover;
    background-position: center center;

    opacity: 0;
    transform: scale(1.03);

    transition:
        opacity 1.4s ease,
        transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(8,25,21,.78) 0%,
            rgba(8,25,21,.72) 20%,
            rgba(8,25,21,.55) 35%,
            rgba(8,25,21,.25) 55%,
            rgba(8,25,21,.08) 75%,
            rgba(8,25,21,0) 100%
        );
}

.hero-container {
	position: relative;
    z-index: 5;

    height: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hero-content {
    padding-top: 120px;
    padding-left: 120px;
    max-width: 850px;
}

.hero-eyebrow {
    color: #d6ab59;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 35px;
	text-shadow:
        0 2px 6px rgba(0,0,0,.40);
}

.hero-eyebrow:after {
    content: "";
    display: block;
    width: 110px;
    height: 3px;
    background: #d6ab59;
    margin-top: 12px;
}

.hero-content h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 28px;
    max-width: 850px;
	text-shadow:
		0 3px 12px rgba(0,0,0,.45);
}

.hero-description {
    color: rgba(255,255,255,.92);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 40px;
	 text-shadow:
        0 2px 8px rgba(0,0,0,.40);
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
	min-width: 250px;
	margin-right: 0;

    padding: 0 40px;
   

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;

    text-decoration: none;
}

.hero-btn-primary {
    background: #b88a3b;
    color: #ffffff;
}

.hero-btn-primary:hover {
    background: #d0a24d;
    color: #ffffff;
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,.70);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

/* =========================
SLIDER DOTS
========================= */

.hero-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;
}

.hero-dot {
    width: 12px;
    height: 12px;

    border: 1px solid #ffffff;
    border-radius: 50%;

    background: transparent;

    margin: 0 6px;

    cursor: pointer;
}

.hero-dot.active {
    background: #ffffff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .hero-content h1 {
        font-size: 4.5rem;
    }

}

@media (max-width: 991.98px) {

    .site-logo img {
        width: 145px;
    }

    .hero-slider {
        min-height: 720px;
    }

    .hero-container {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 120px;
		padding-left: 50px;
    }

    .hero-content h1 {
        font-size: 3.75rem;
    }

}

/* =========================
HERO STATS BAR
========================= */

.hero-stats-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;

    display: flex;
    justify-content: center;

    background: rgba(8,25,21,.88);
    border-top: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 25%;
    max-width: 310px;

    padding: 28px 30px;
    color: #ffffff;
}

.hero-stat-icon {
    color: #d6ab59;
    font-size: 2rem;
    line-height: 1;
}

.hero-stat strong {
    display: block;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-stat small {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .hero-stats-bar {
        position: relative;
        flex-wrap: wrap;
    }

    .hero-stat {
        width: 50%;
        max-width: none;
        padding: 22px;
    }

    .hero-dots {
        bottom: 30px;
    }
}

@media (max-width: 767.98px) {

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

}

@media (max-width: 575.98px) {

    .hero-slider {
        height: 88vh;
        min-height: 650px;
    }

    .hero-container {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
		padding-left: 25px;
		padding-right: 25px;
    }

    .hero-buttons {
        display: block;
    }

    .hero-btn {
        width: 100%;
        margin-bottom: 12px;
        margin-right: 0;
    }
	
	.hero-stats-bar {
        display: none;
    }

}

/* ==================================================
SECTION 2: SERVICES OVERVIEW
================================================== */

.services-overview {
    background: #f6f1e8;
}

.services-card-row {
    margin-top: 55px;
}

.service-card {
    height: 100%;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    margin-bottom: 30px;
    transition: all .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.service-card-image {
    height: 400px;
    overflow: hidden;
    background: #0e211c;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 30px;
}

.service-card-body h3 {
    color: #0e211c;
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.service-card-body p {
    color: #4f5f59;
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .service-card-image {
        height: 245px;
    }
}

/* ==================================================
SECTION 3: FEATURED SERVICE PROJECTS
================================================== */

.services-featured-projects {
    background: #ffffff;
    padding: 100px 0;
}

.featured-service-row {
    margin-top: 55px;
}

.featured-service-card {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.featured-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8,25,21,.05) 0%,
            rgba(8,25,21,.45) 45%,
            rgba(8,25,21,.88) 100%
        );
}

.featured-service-card:hover img {
    transform: scale(1.06);
}

.featured-service-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;
}

.featured-service-content span {
    display: block;
    color: #d6ab59;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-service-content h3 {
    color: #ffffff;
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.featured-service-content p {
    color: #ffffff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.db-btn-outline {
    border: 1px solid #b88a3b;
    color: #0e211c;
    background: transparent;
}

.db-btn-outline:hover {
    background: #b88a3b;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .featured-service-card {
        height: 360px;
        margin-bottom: 25px;
    }
}

/* ==================================================
SECTION 4: PROCESS PREVIEW
================================================== */

.services-process-preview {
    background: #f8f6f1;
    padding: 100px 0;
}

.service-process-steps {
    background: #ffffff;
    padding: 45px;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.service-process-step {
    display: flex;
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.service-process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-process-step span {
    color: #b88a3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
    min-width: 48px;
}

.service-process-step h3 {
    color: #0e211c;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.service-process-step p {
    color: #4f5f59;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .service-process-steps {
        margin-top: 40px;
    }
}

/* ==================================================
SECTION 5: WHY CHOOSE DREAM BUILDERS
================================================== */

.services-why-section {
    background: #0e211c;
    padding: 95px 0;
}

.services-why-section .section-title {
    color: #ffffff;
}

.services-why-section .section-lead {
    color: rgba(255,255,255,.78);
}

.services-why-row {
    margin-top: 55px;
}

.services-why-card {
    height: 100%;
    text-align: center;
    padding: 38px 28px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

.services-why-icon {
    color: #d6ab59;
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-why-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.services-why-card p {
    color: rgba(255,255,255,.76);
    font-size: .94rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .services-why-card {
        margin-bottom: 25px;
    }
}

/* ==================================================
SECTION 6: PROJECT TYPES
================================================== */

.project-types-section {
    background: #f8f6f1;
    padding: 95px 0;
}

.project-types-row {
    margin-top: 55px;
}

.project-type-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-left: 4px solid #b88a3b;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.project-type-card h3 {
    color: #0e211c;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.project-type-card p {
    color: #4f5f59;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .project-type-card {
        margin-bottom: 25px;
    }
}

/* ==================================================
SECTION 7: FINAL CTA
================================================== */

.services-cta-section {
    background:
        linear-gradient(
            rgba(8,25,21,.76),
            rgba(8,25,21,.76)
        ),
        url('../images/main_slider/Wayport_dusk.png');

    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.services-cta-section .section-eyebrow {
    color: #d6ab59;
}

.services-cta-section h2 {
    color: #ffffff;
    font-size: 3.4rem;
    margin-bottom: 25px;
}

.services-cta-section p {
    color: rgba(255,255,255,.84);
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 760px;
    margin: 0 auto 42px;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.services-phone-btn {
    border: 1px solid rgba(255,255,255,.55);
    color: #ffffff;
}

.services-phone-btn:hover {
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .services-cta-section {
        padding: 85px 0;
    }

    .services-cta-section h2 {
        font-size: 2.35rem;
    }

    .services-cta-buttons {
        display: block;
    }

    .services-cta-buttons .db-btn {
        width: 100%;
        margin-bottom: 12px;
    }
}

/* ==================================================
FOOTER
================================================== */

.site-footer {
    background: #081915;
    color: rgba(255,255,255,.78);
    padding: 80px 0 30px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 350px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-contact {
    line-height: 1.9;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-contact p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #d6ab59;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 55px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 35px;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 60px 0 25px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom p {
        margin-bottom: 10px;
    }
}
/* ==================================================
FOOTER SOCIAL
================================================== */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-social i {
    width: 24px;
    margin-right: 10px;
    color: #d6ab59;
    font-size: 17px;
}

.footer-social a:hover {
    color: #d6ab59;
}
.mobile-menu-toggle {
    display: none;
}


@media (max-width: 991.98px) {

    .mobile-contact {
        display: block;
        position: absolute;
        top: 180px;
        left: 25px;
        z-index: 20;
        text-align: left;
    }

    .mobile-contact a {
        display: block;
		margin-bottom: 8px;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        font-size: 1.15rem;
        text-shadow: 0 2px 8px rgba(0,0,0,.8);
    }

    .mobile-contact span {
        display: block;
        margin-top: 4px;
        color: #c79a3b;
        font-size: .85rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0,0,0,.8);
    }
	
	.site-header {
        padding: 18px 0;
    }

    .site-logo img {
        width: 175px;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 28px;
        right: 22px;
        z-index: 50;
        background: rgba(8,25,21,.65);
        color: #ffffff;
        border: 1px solid rgba(255,255,255,.35);
        font-size: 1.6rem;
        line-height: 1;
        padding: 8px 13px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 95px;
        left: 20px;
        right: 20px;
        z-index: 45;
        background: rgba(8,25,21,.95);
        padding: 20px;
        text-align: center;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav a {
        display: block;
        margin: 0;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .header-actions {
        display: none;
		position: absolute;
        top: 40px;
        right: 85px;
        text-align: right;
    }

    .header-location {
        display: none;
    }

    .hero-content {
        padding-left: 28px;
        padding-right: 28px;
        padding-top: 210px;
        max-width: 100%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 3.4rem;
        line-height: 1.05;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1.15rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero-buttons {
        display: block;
    }

    .hero-btn {
        width: 100%;
        margin-bottom: 14px;
    }

    .hero-stats-bar {
        display: none;
    }
}
/* =========================
MOBILE HERO FIX
========================= */

@media (max-width: 575.98px) {

    .site-header {
        padding: 14px 0;
    }

    .site-logo img {
        width: 150px;
    }

    .header-actions {
        display: none;
    }

    .header-phone {
        font-size: 1.05rem;
		display: block;
    }
	
	.header-location {
		font-size: .8rem;
	}

    .mobile-menu-toggle {
        top: 58px;
        right: 22px;
        font-size: 1.35rem;
        padding: 7px 11px;
    }

    .hero-slider {
        height: auto;
        min-height: 1150px;
    }

    .hero-content {
        padding-top: 280px;
        padding-left: 28px;
        padding-right: 28px;
        max-width: 100%;
        text-align: left;
    }

    .hero-eyebrow {
        font-size: .82rem;
        line-height: 1.6;
        letter-spacing: .18em;
        margin-bottom: 24px;
    }

    .hero-eyebrow:after {
        width: 95px;
    }

    .hero-content h1 {
        font-size: 3.05rem;
        line-height: 1.05;
        max-width: 100%;
        margin-bottom: 26px;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 34px;
    }

    .hero-buttons {
        margin-bottom: 90px;
		display: block;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
        margin-bottom: 14px;
    }

    .hero-dots {
        bottom: 20px;
		z-index: 10;
    }
	
	.mobile-contact {
        display: block;
        position: absolute;
        top: 180px;
        left: 25px;
        z-index: 20;
        text-align: left;
    }

}