/* Strona główna (LP): hero z tłem graficznym + HTML (RWD)
   Pełna wysokość viewportu — jak wcześniejszy Revolution „fullscreen”,
   żeby cover nie ucinał grafiki do „pół strony”. */

.home-hero {
    position: relative;
    overflow: hidden;
    background-color: #f5f6f8;
    background-image: url("../../img/mojwynajem_header_komp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 65% center;
    /* Wysokość sekcji = viewport (tło wypełnia cały ekran pod menu) */
    min-height: 100vh;
}

.home-hero-inner {
    box-sizing: border-box;
    min-height: 100vh;
    width: 100%;
    padding: 104px 0 56px;
    display: flex;
    align-items: center;
}

.home-hero-col {
    max-width: 640px;
}

.home-hero-title {
    margin: 0 0 20px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.2;
    color: #2f2f2f;
}

.home-hero-title strong {
    font-weight: 700;
}

.home-hero-lead {
    margin: 0 0 28px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(15px, 1.9vw, 20px);
    line-height: 1.55;
    font-weight: 400;
    color: #5c5c5c;
    max-width: 520px;
}

.home-hero-cta {
    display: inline-block;
    padding: 14px 28px;
    margin-bottom: 12px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    border: none;
    border-radius: 0;
    background: #6aa83a;
    background: linear-gradient(to bottom, #8bc653 0%, #5f9a32 45%, #4d8428 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.home-hero-cta:hover,
.home-hero-cta:focus {
    color: #fff !important;
    text-decoration: none;
    filter: brightness(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.home-hero-note {
    margin: 0;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #3d3d3d;
}

@media (max-width: 991px) {
    .home-hero {
        background-position: 78% center;
    }

    .home-hero-inner {
        padding: 96px 0 48px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        background-image: url("../../img/mojwynajem_header_rwd_1.png");
        background-position: center center;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .home-hero-inner {
        min-height: 100vh;
        min-height: 100dvh;
        /* Równy padding + wyśrodkowanie w pionie — bez flex-end, który spychał treść na sam dół */
        padding: 92px 16px 40px;
        align-items: center;
        justify-content: center;
    }

    .home-hero-col {
        max-width: none;
        width: 100%;
        text-align: center;
        transform: translateY(-50px);
    }

    .home-hero-title {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
    }

    .home-hero-lead {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
    }
}

@media (max-width: 480px) {
    .home-hero-cta {
        width: 100%;
        text-align: center;
    }
}
