/* ================================
   BRICKFOLIO – HOME HEADER STYLES
================================ */

/* PAGE HEADER */
.page-header.home-header {
    width: 100%;
    background-color: #0f2a2f;
    background-image: none !important;
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
    padding: 0 !important;
}

/* Remove theme overlays */
.page-header.home-header::before,
.page-header.home-header::after {
    display: none !important;
}

/* WRAPPER - Two-column layout */
.home-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 3rem;
    padding: 4rem 6%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* LEFT IMAGE */
.home-header-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: static !important;
}

.home-header-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* RIGHT CONTENT */
.home-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static !important;
    background: none !important;
    text-align: left;
    padding: 0 !important;
    margin: 0;
}

/* HEADINGS */
.home-header-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

/* INTRO TEXT */
.header-intro {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #ffffff;
}

/* BENEFITS LIST */
.header-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.header-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #ffffff;
}

.header-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #6ac6b9;
    font-weight: bold;
    font-size: 1.2em;
}

/* CTA BUTTON */
.home-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #6ac6b9;
    color: #0f2a2f;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.home-cta:hover {
    background-color: #57b3a7;
}

/* ================================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 1024px) {
    .home-header-wrapper {
        padding: 3rem 4%;
        gap: 2rem;
    }

    .home-header-image {
        min-height: 350px;
    }

    .home-header-content h1 {
        font-size: 2.3rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .home-header-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .home-header-image {
        min-height: 300px;
    }

    .home-header-content h1 {
        font-size: 2rem;
    }

    .home-header-content {
        text-align: left;
    }
}

