body {
    background-color: #FAFAFA;
}

.padding-container {
    padding: 100px 0px;
}

.padding-container.bg-white {
    background-color: white;
}

.poster {
    background-image: url("/Assets/Images/destinations-poster.png");
    /* height: 850px; */
    height: 650px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 80px 24px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.poster p {
    color: #0974BA;
    font-family: "CuristicSemiBold";
    font-size: clamp(16px, 2.4vw + 10px, 30px);
    line-height: 1.25;
    margin-bottom: 0px;
    padding-inline: 8px;
    max-width: 100%;
}

.poster h1 {
    color: #0974BA;
    font-family: "CuristicExtraBold";
    font-size: clamp(48px, 12vw, 184px);
    line-height: 0.95;
    margin-bottom: 0px;
    max-width: 100%;
    white-space: nowrap;
}

.destination-name {
    color: black;
    font-family: "CuristicExtraBold";
    font-size: 44px;
    line-height: 53.64px;
    margin-bottom: 30px;
}

.destination-paragraph {
    color: black;
    font-family: "CuristicRegular";
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 30px;
}

.explore-more {
    color: #0974BA;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 21.94px;
    text-decoration: none;
}

.destination-img {
    border-radius: 24px;
    width: 100%;
}

@media (max-width: 991px) {
    .poster {
        height: 520px;
        padding-top: 56px;
        padding-inline: 20px;
    }

    .poster h1 {
        font-size: clamp(52px, 14vw, 120px);
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .poster {
        height: auto;
        min-height: 420px;
        padding: 48px 16px 72px;
    }

    .poster h1 {
        font-size: clamp(36px, 11vw, 56px);
        line-height: 1;
    }

    .poster p {
        font-size: clamp(15px, 4.2vw, 20px);
        line-height: 1.35;
        padding-inline: 4px;
    }

    .padding-container {
        padding: 50px 0px;
    }

    .destination-name {
        margin: 20px 10px 15px 10px;
        font-size: 35px;
    }

    .destination-paragraph {
        margin: 0px 10px 20px 10px;
        font-size: 20px;
    }

    .explore-more {
        margin: 0px 10px 0px 10px;
    }
}