/* 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 section background */
#main-prepare {
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.8)
        ),
        url("../img/hero-image-22.webp") left bottom/cover no-repeat fixed;
}

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

/* Carousel */

.carousel img {
    object-fit: cover;
    max-height: 600px;
}

/* Text shadow  */
.carousel-caption h2,
.carousel-caption p {
    color: whitesmoke;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.9);
}

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

#section-2-prep {
    margin: 100px 0;
}

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

/* ============================================ */
/* Section 3 */

#section-3-prep {
    margin-top: 100px;
}

#section-3-prep {
    border: none !important;
}
/* ============================================ */
/* Media queries for responsiveness */

@media (max-width: 768px) {

    /* Reduce fon size of carousel */
    .carousel-caption h2 {
        font-size: 1.4rem;
    }
    .carousel-caption p {
        font-size: 0.95rem;
    }

    /* Checklist group font reduce */
    .list-group {
        font-size: small;
    }
}
