/**** Importation de la police Lato ****/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/**** Reset ****/

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/**** Style général de la page ****/

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Lato", sans-serif;
    animation-play-state: paused !important;
    overflow-x: hidden;
    color: #2b2c34;
}

.nav {
    opacity: 0;
    transform: translateY(-30px);
    animation: appear 0.4s 2s ease-out forwards;
}

/**** Animation appear ****/

@keyframes appear {
    100% {
        opacity: 1;
        transform: none;
    }
}

header,
footer,
.home,
#presentation__chief__section {
    background-color: #141414;
}

li {
    font-size: 18px;
}

.home {
    background-image: url(img/sushi.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: calc(100vh - 45px);
}

.home p {
    color: #e45858;
    opacity: 0;
    transform: translateX(400px);
    animation: appear 0.4s 0.4s ease-out forwards;
}

.home h1 {
    opacity: 0;
    text-shadow: 2px 2px 0 #181818;
    transform: translateX(-400px);
    animation: appear 0.4s 0.8s ease-out forwards;
}

.home h2 {
    opacity: 0;
    text-shadow: 4px 4px 0 #181818;
    transform: translateX(400px);
    animation: appear 0.4s 1.2s ease-out forwards;
}

.button {
    display: inline-block;
    background-color: #6246ea;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
    color: #ffffff;
}

.link__btn {
    opacity: 0;
    transform: translateY(30px);
    animation: appear 0.4s 1.6s ease-out forwards;
}

.button:hover {
    box-shadow: 0 1px 4px 4px rgba(0, 31, 206, 0.986);
}

.main__content {
    flex-grow: 1;
    background-color: #ffffff;
}

.card {
    background-color: #d1d1e9;
    color: #2b2c34;
}

#presentation__products__section,
.background {
    background-color: #ffffff;
}

#presentation__chief__section,
.background__1 {
    background-color: #d1d1e9;
}

#presentation__products__section article div {
    transition: box-shadow 0.4s ease-in-out;
}

#presentation__products__section article div:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.69);
}

#presentation__chief__section article {
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

#presentation__chief__section article:hover {
    transform: scale(1.02);
}

.preview {
    background-color: #e45858;
}

.preview__1 {
    background-color: #6246ea;
}

.image__description {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.5rem;
}

iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 6px;
}

i {
    padding-right: 10px;
}

/**** responsive design ****/

@media screen and (max-width: 576px) {

    .image__description {
        width: 80px;
        height: 80px;
    }

    .accordion-item .accordion-body .lead {
        font-size: 16px;
    }
}