/* ============================================ */
/* Color variables */

:root {
    --color-primary: rgb(47, 74, 46);
    --color-primary-dark: rgb(36, 58, 35);
    --color-accent: rgb(196, 122, 44);
    --color-accent-light: rgb(226, 164, 94);
    --color-bg-main: rgb(243, 233, 198);
    --color-bg-soft: rgb(250, 245, 228);
    --color-text-main: rgb(30, 42, 30);
    --color-text-light: rgb(243, 233, 198);
    --color-border: rgb(212, 200, 158);
}

/* ============================================ */

#main-places {
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.8)
        ),
        url("../img/tentmen.webp") left bottom/cover no-repeat fixed;

    padding-top: 0;
}

/* ============================================ */
/* Section 1  */

/* margin-bottom: 50px; */

/* Hero */

#section_banner {
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.9)
        ),
        url("../img/places_hero-2.webp") left top/cover no-repeat;
    height: 500px;
}

.header_places h1 {
    color: whitesmoke;
    margin-bottom: 20px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ============================================ */
/* Section 2 */

/* Cads */

#cards_row h3, p {
    color: var(--color-text-light);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* ============================================ */
/* Section 3 */
#section-iframe {
    padding: 0;
}

/* Iframe */
.map-container {
    height: 400px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 320px) {
    #section_banner {
        height: 600px;
    }
}