/* ===============================
   HERO HEADER BLOCK — FINAL CLEAN VERSION
=============================== */

.hero-header-block { 
    position: relative;
    height: 468px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.hero-header-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    z-index: 1;
}

/* Inner wrapper */
.hero-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ===============================
   TITLE
=============================== */

.hero-header__title {
    font-family: "Merriweather", serif;
    font-size: 45px;
    line-height: 1.2;
    margin: 0;
    color: #BD9869;
}

/* ===============================
   DESCRIPTION — 16px desktop/tablet
=============================== */

.hero-header__desc,
.hero-header__desc p {
    font-family: "Open Sans", sans-serif !important;
    font-size: 16px !important;       /* DESKTOP + TABLET */
    line-height: 24px !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    text-align: center !important;
    color: #ffffff !important;
}

/* ===============================
   CTA BUTTON
=============================== */

.hero-header__button {
    display: inline-block;
    background: #fff;
    color: #4A1C60;
    padding: 14px 30px;
    border: 1px solid #BD9869;
    font-family: "Merriweather", serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 32px;
    transition: 0.25s;
}

.hero-header__button:hover {
    background: #BD9869;
    color: #fff;
}

/* ===============================
   TABLET ≤ 1024px — KEEP 16px
=============================== */

@media (max-width: 1024px) {
    .hero-header__title {
        font-size: 38px;
    }

    .hero-header__desc,
    .hero-header__desc p {
        font-size: 16px !important;   /* STILL 16px */
        line-height: 22px !important;
    }
}

/* ===============================
   MOBILE ≤ 767px — 14px ONLY
=============================== */

@media (max-width: 767px) {

    .hero-header-block {
        height: auto;
        padding: 80px 20px;
    }

    .hero-header__title {
        font-size: 32px;
    }

    .hero-header__desc,
    .hero-header__desc p {
        font-size: 16px !important;    /* MOBILE = 14px */
        line-height: 20px !important;
        max-width: 90% !important;
    }
}
