@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: WHY BUILD CUSTOM
================================================== */

.custom-why-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.custom-why-section {
    background: #f8f6f1;
    padding: 100px 0;
}

.custom-why-image img {
    width: 100%;
    display: block;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.custom-benefits {
    margin-top: 35px;
}

.custom-benefit {
    padding: 12px 0;
    color: #0e211c;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.custom-benefit:last-child {
    border-bottom: none;
}

@media (max-width: 991.98px) {

    .custom-why-image {
        margin-bottom: 40px;
    }

}

/* ==================================================
SECTION 3: FEATURED CUSTOM HOMES
================================================== */

.custom-featured-section {
    background: #ffffff;
    padding: 100px 0;
}

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

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

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

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

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

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

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

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

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

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

/* ==================================================
SECTION 4: CUSTOM HOME PROCESS
================================================== */

.custom-process-section {
    background: #f8f6f1;
    padding: 100px 0;
}

.process-timeline {
    margin-top: 60px;
}

.process-step {
    text-align: center;
    height: 100%;
    padding: 25px 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #0e211c;
    color: #d6ab59;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.15rem;
    color: #0e211c;
    margin-bottom: 12px;
}

.process-step p {
    color: #4f5f59;
    line-height: 1.7;
    font-size: .92rem;
}

@media (max-width: 991px) {

    .process-step {
        margin-bottom: 35px;
    }

}

/* ==================================================
SECTION 5: CUSTOM HOME FEATURES
================================================== */

.custom-features-section {
    background: #ffffff;
    padding: 100px 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.features-grid div {
    width: calc(33.333% - 10px);
    background: #f8f6f1;
    border: 1px solid rgba(14,33,28,.10);
    padding: 20px;
    text-align: center;
    color: #0e211c;
    font-weight: 700;
    transition: all .3s ease;
    cursor: default;
}

.features-grid div:hover {
    background: #0e211c;
    color: #ffffff;
    border-color: #b88a3b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

@media (max-width: 767.98px) {
    .features-grid {
        margin-top: 35px;
    }

    .features-grid div {
        width: calc(50% - 8px);
    }
}

/* ==================================================
SECTION 6: WHY DREAM BUILDERS
================================================== */

.custom-why-db-section{
    background:#0e211c;
    padding:100px 0;
}

.custom-why-db-section .section-title{
    color:#fff;
}

.custom-why-db-section .section-lead{
    color:rgba(255,255,255,.80);
}

.trust-card{
    height:100%;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    padding:38px 30px;
    text-align:center;
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-6px);
    border-color:#b88a3b;
}

.trust-card h3{
    color:#d6ab59;
    font-size:1.3rem;
    margin-bottom:18px;
}

.trust-card p{
    color:rgba(255,255,255,.80);
    line-height:1.8;
    margin-bottom:0;
}

@media(max-width:767px){

    .trust-card{
        margin-bottom:25px;
    }

}

/* ==================================================
SECTION 7: SERVICE AREA
================================================== */

.custom-service-area-section {
    background: #f8f6f1;
    padding: 100px 0;
}

.custom-service-area-section .service-area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-service-area-section .service-area-grid div {
    width: calc(33.333% - 10px);
    background: #ffffff;
    border: 1px solid rgba(14,33,28,.10);
    padding: 18px;
    text-align: center;
    font-weight: 700;
    color: #0e211c;
    transition: .25s;
}

.custom-service-area-section .service-area-grid div:hover {
    background: #0e211c;
    color: #ffffff;
    border-color: #0e211c;
}

@media (max-width: 767.98px) {
    .custom-service-area-section .service-area-grid div {
        width: calc(50% - 8px);
    }
}

/* ==================================================
SECTION 8: FINAL CTA
================================================== */

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

    background-size: cover;
    background-position: center;
	background-attachment: fixed;
    padding: 110px 0;
	border-top: 1px solid rgba(214,171,89,.15);
}

.final-cta-section .section-eyebrow {
    color: #b88a3b;
    margin-bottom: 20px;
}

.final-cta-section .section-title {
    color: #ffffff;
    margin-bottom: 25px;
}

.final-cta-section .section-lead {
    color: rgba(255,255,255,.82);
    max-width: 760px;
    margin: 0 auto 45px;
}

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

/* Gold Button */

.db-btn-gold {
    display: inline-block;
    background: #b88a3b;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.db-btn-gold:hover {
    background: #a67b31;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Outline Button */

.db-btn-outline {
    display: inline-block;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.db-btn-outline:hover {
    background: #ffffff;
    color: #0e211c;
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {

    .final-cta-section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .db-btn-gold,
    .cta-buttons .db-btn-outline {
        width: 280px;
        text-align: center;
    }

}

/* ==================================================
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;
    }

}