/* ==========================================================================
   Buy a Home — Hero Section (700px height)
   ========================================================================== */

.me-buy-hero {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://monexpertimmobilier.ca/wp-content/uploads/2026/07/Buy-a-home-hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 24px 80px;
    overflow: hidden;
}

.me-buy-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.me-buy-hero-container {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.me-buy-hero-eyebrow {
    display: block;
    color: #d8a94f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.me-buy-hero-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.me-buy-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 0 32px;
}

.me-buy-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #d8a94f;
    color: #16233b;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.me-buy-hero-btn:hover,
.me-buy-hero-btn:focus-visible {
    background-color: #c79939;
    transform: translateY(-1px);
}

.me-buy-hero-btn-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.me-buy-hero-btn:hover .me-buy-hero-btn-arrow {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 1024px) {
    .me-buy-hero { height: 600px; padding: 150px 24px 70px; }
    .me-buy-hero-title { font-size: 36px; }
}

/* Mobile */
@media (max-width: 782px) {
    .me-buy-hero {
        height: 520px;
        padding: 130px 20px 60px;
        text-align: center;
    }
    .me-buy-hero-container { text-align: center; }
    .me-buy-hero-title { font-size: 28px; }
    .me-buy-hero-subtitle { font-size: 14px; margin: 0 auto 26px; }
    .me-buy-hero-btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .me-buy-hero-title { font-size: 24px; }
}