/* ============================================ */
/* 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-advice {
    padding-top: 0;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.8)
        ),
        url("../img/camping-6.webp") left bottom/cover no-repeat fixed;
}

/* Section 1 */
#section-1-advice {
    color: whitesmoke;
    margin-bottom: 50px;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.6)
        ),
        url("../img/hero-image-4.webp") left bottom/cover no-repeat;
}

/* Cards */
.card-icon {
    color: var(--color-primary);
}

/* ============================================ */
/* Media queries for responsiveness */

@media (max-width: 576px) {
    .custom_background {
        background-color: rgba(47, 74, 46, 0.3);
    }   
}

@media (min-width: 768px) {
    .custom_background {
        background-color: rgba(47, 74, 46, 0.8);
    }   
}