/* ===== HERO ===== */

.screen-hero {
    padding: 30px 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen-hero .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== KIDS AREA ===== */

.kids-area {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 400px;
    margin: 0 auto 15px;
}

/* ===== KID PHOTO ===== */

.kid-photo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kid-photo img {
    height: 310px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.kid-photo:hover img {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.16));
}

.kid-name {
    font-family: var(--hand);
    font-size: 20px;
    color: var(--ink);
    margin-top: 6px;
    text-align: center;
    opacity: 0.8;
}

/* ===== KID-1 (Артур, слева) ===== */

.kid-1 {
    left: 10px;
    bottom: 10px;
    transform: rotate(-3deg);
    z-index: 2;
}

.kid-1 img {
    transform: scale(1.15);
    transform-origin: bottom center;
}

/* ===== KID-2 (Настя, справа) ===== */

.kid-2 {
    right: 10px;
    bottom: 10px;
    transform: rotate(3deg);
    z-index: 3;
}

.kid-2 img {
    transform: scale(1.15);
    transform-origin: bottom center;
}

/* ===== DRAWN HEARTS (большие, влево-вверх) x3.5 ===== */

.drawn-hearts {
    position: absolute;
    top: -115px;
    left: -27%;
    transform: rotate(-15deg);
    z-index: 1;
    pointer-events: none;
    width: 315px;
    height: 315px;
    overflow: visible;
}

.drawn-hearts-img {
    width: 315px !important;
    height: 315px !important;
    max-width: 315px !important;
    max-height: 315px !important;
    object-fit: contain;
    opacity: 0.45;
    user-select: none;
    pointer-events: none;
    display: block;
}

/* ===== SMALL HEARTS (вправо-вниз) ===== */

.small-hearts-wrap {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    bottom: 120px;
    right: -3%;
    transform: rotate(10deg);
    width: 70px;
    height: 70px;
    overflow: visible;
}

.small-hearts-img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: contain;
    opacity: 0.55;
    user-select: none;
    pointer-events: none;
    display: block;
}

/* ===== QUESTION ===== */

.question {
    font-family: var(--hand);
    font-size: 22px;
    color: var(--ink);
    text-align: center;
    margin-bottom: 12px;
}

/* ===== COUPLE PHOTO ===== */

.couple-photo {
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    position: relative;
    padding: 10px;
}

.couple-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.couple-photo:hover img {
    transform: scale(1.01);
}

/* ========== MEDIA ========== */

@media (max-width: 360px) {
    .kids-area {
        height: 320px;
        max-width: 340px;
    }

    .kid-photo img {
        height: 240px;
    }

    .kid-1 img {
        transform: scale(1.12);
    }

    .kid-name {
        font-size: 16px;
    }

    .kid-1 {
        left: 5px;
    }

    .kid-2 {
        right: 5px;
    }

    .drawn-hearts {
        left: -22%;
        top: -70px;
        width: 245px;
        height: 245px;
    }

    .drawn-hearts-img {
        width: 245px !important;
        height: 245px !important;
        max-width: 245px !important;
        max-height: 245px !important;
    }

    .small-hearts-wrap {
        right: -2%;
        bottom: 90px;
        width: 56px;
        height: 56px;
    }

    .small-hearts-img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
    }

    .question {
        font-size: 19px;
    }

    .couple-photo {
        max-width: 280px;
        margin: 15px auto;
    }
}

@media (max-width: 470px) {
    .kids-area {
        height: 320px;
        max-width: 340px;
    }

    .kid-photo img {
        height: 240px;
    }

    .kid-1 img {
        transform: scale(1.12);
    }

    .kid-name {
        font-size: 16px;
    }

    .kid-1 {
        left: 5px;
    }

    .kid-2 {
        right: 5px;
    }

    .drawn-hearts {
        left: -22%;
        top: -70px;
        width: 245px;
        height: 245px;
    }

    .drawn-hearts-img {
        width: 245px !important;
        height: 245px !important;
        max-width: 245px !important;
        max-height: 245px !important;
    }

    .small-hearts-wrap {
        right: -2%;
        bottom: 90px;
        width: 56px;
        height: 56px;
    }

    .small-hearts-img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
    }
}

@media (min-width: 768px) {
    .screen-hero {
        padding: 40px 0 45px;
    }

    .kids-area {
        height: 480px;
        max-width: 560px;
    }

    .kid-photo img {
        height: 380px;
    }

    .kid-1 img {
        transform: scale(1.15);
    }

    .kid-name {
        font-size: 24px;
        margin-top: 8px;
    }

    .kid-1 {
        left: 15px;
    }

    .kid-2 {
        right: 15px;
    }

    .drawn-hearts {
        left: -27%;
        top: -125px;
        width: 385px;
        height: 385px;
    }

    .drawn-hearts-img {
        width: 385px !important;
        height: 385px !important;
        max-width: 385px !important;
        max-height: 385px !important;
    }

    .small-hearts-wrap {
        right: -5%;
        bottom: 130px;
        width: 84px;
        height: 84px;
    }

    .small-hearts-img {
        width: 84px !important;
        height: 84px !important;
        max-width: 84px !important;
        max-height: 84px !important;
    }

    .question {
        font-size: 28px;
    }

    .couple-photo {
        max-width: 460px;
        margin: 25px auto;
    }
}

@media (min-width: 1024px) {
    .kids-area {
        height: 550px;
        max-width: 640px;
    }

    .kid-photo img {
        height: 440px;
    }

    .kid-1 img {
        transform: scale(1.15);
    }

    .kid-name {
        font-size: 26px;
        margin-top: 10px;
    }

    .kid-1 {
        left: 20px;
    }

    .kid-2 {
        right: 20px;
    }

    .drawn-hearts {
        left: -28%;
        top: -145px;
        width: 490px;
        height: 490px;
    }

    .drawn-hearts-img {
        width: 490px !important;
        height: 490px !important;
        max-width: 490px !important;
        max-height: 490px !important;
    }

    .small-hearts-wrap {
        right: -7%;
        bottom: 140px;
        width: 96px;
        height: 96px;
    }

    .small-hearts-img {
        width: 96px !important;
        height: 96px !important;
        max-width: 96px !important;
        max-height: 96px !important;
    }

    .question {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .couple-photo {
        max-width: 500px;
        margin: 30px auto;
    }
}

@media (min-width: 1400px) {
    .kids-area {
        height: 620px;
        max-width: 720px;
    }

    .kid-photo img {
        height: 500px;
    }

    .kid-1 img {
        transform: scale(1.15);
    }

    .kid-name {
        font-size: 28px;
    }

    .kid-1 {
        left: 25px;
    }

    .kid-2 {
        right: 25px;
    }

    .drawn-hearts {
        left: -30%;
        top: -165px;
        width: 595px;
        height: 595px;
    }

    .drawn-hearts-img {
        width: 595px !important;
        height: 595px !important;
        max-width: 595px !important;
        max-height: 595px !important;
    }

    .small-hearts-wrap {
        right: -9%;
        bottom: 150px;
        width: 104px;
        height: 104px;
    }

    .small-hearts-img {
        width: 104px !important;
        height: 104px !important;
        max-width: 104px !important;
        max-height: 104px !important;
    }

    .question {
        font-size: 36px;
    }

    .couple-photo {
        max-width: 540px;
        margin: 35px auto;
    }
}