@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Shadows+Into+Light&display=swap');

:root {
    --text-color-grey: rgb(106, 100, 100);
    --primary-color: rgba(176,92,47,1);
    --background-primary-color: rgba(176,92,47,0.8);
    --background-secondary-color: rgba(255,248,236,0.65);
}

.hero {
    background: url('https://tsiokatimo-adventure-media.s3.eu-west-3.amazonaws.com/4DADFE50-535E-4EC6-80BB-C3FBA195E9F8_1_102_o.webp') center/cover no-repeat;
    color: var(--text-color-grey);
    padding: 120px 0;
}

.overlay {
    background: var(--background-secondary-color);
    padding: 80px 20px;
}

.section-padding {
    padding: 80px 0;
}

.photo {
    height: 250px;
    object-fit: cover;
}

h2 {
    /* font-family: "Lora", sans-serif;
    font-weight: 600; */
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-color);
}

h3 {
    font-family: "Lora", sans-serif;
    color: var(--text-color-grey);
}

p {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;;
}

.text-grey {
    color: var(--text-color-grey);
}

#contact {
    background-color: var(--background-secondary-color);
}

.navbar {
    background-color: var(--background-primary-color);
}

footer {
    background-color: var(--background-primary-color);
}

#itinerary h6 {
    padding-bottom: 10px;
    border-bottom: solid 0.2px rgba(106, 100, 100, 0.8);
}

.logo-nom {
    max-width: 400px;
}

.logo {
    max-width: 150px;
}

.subtitle {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 0px !important;
}

.icon {
    max-width: 50px;
}

@media (max-width: 480px) { /* petit mobile */
    #itinerary p {
        font-size: 0.5rem;
    }
    #itinerary h6 {
        font-size: 0.7rem;
    }
    .icon {
        max-width: 30px;
    }
    #pros p {
        font-size: 0.5rem;
    }
    .logo-nom {
    max-width: 300px;
    }
    .logo {
        max-width: 100px;
    }
}