@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: CONTACT DETAILS + FORM
================================================== */

.contact-main-section {
    background: #f6f1e8;
    padding: 100px 0;
}

.contact-info-box {
    margin-top: 35px;
    background: #ffffff;
    padding: 35px;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
}

.contact-info-item {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.contact-info-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    color: #0e211c;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-item a,
.contact-info-item span {
    color: #4f5f59;
    font-size: 1rem;
    line-height: 1.7;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #b88a3b;
}

.contact-form-card {
    background: #ffffff;
    padding: 45px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.contact-form-card h3 {
    color: #0e211c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form-card label {
    display: block;
    color: #0e211c;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid rgba(14,33,28,.18);
    padding: 13px 14px;
    margin-bottom: 22px;
    font-size: 1rem;
    color: #1f2925;
    background: #ffffff;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #b88a3b;
}

.contact-form-card textarea {
    resize: vertical;
}

@media (max-width: 991.98px) {
    .contact-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .contact-main-section {
        padding: 70px 0;
    }

    .contact-info-box,
    .contact-form-card {
        padding: 30px 24px;
    }
}

/* ==================================================
SECTION 3: WHAT HAPPENS NEXT
================================================== */

.contact-next-section {
    background: #ffffff;
    padding: 95px 0;
}

.next-step-row {
    margin-top: 55px;
}

.next-step-card {
    height: 100%;
    background: #f6f1e8;
    padding: 38px 28px;
    text-align: center;
    border-top: 4px solid #b88a3b;
}

.next-step-card span {
    display: block;
    color: #b88a3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.next-step-card h3 {
    color: #0e211c;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.next-step-card p {
    color: #4f5f59;
    font-size: .94rem;
    line-height: 1.75;
    margin-bottom: 0;
}

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

/* ==================================================
SECTION 4: SERVICE AREA
================================================== */

.contact-service-area {
    background: #f8f6f1;
    padding: 95px 0;
}

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

.service-grid div {
    width: calc(33.333% - 10px);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: #0e211c;
}

@media (max-width: 767.98px) {

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

}

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

}