@font-face {
    font-family: baskerville-italic;
    src: url('../assets/font/LibreBaskerville-Italic.ttf');
}

@font-face {
    font-family: baskerville;
    src: url('../assets/font/LibreBaskerville-Regular.ttf');
}

* {
    font-family: 'baskerville';
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
}

.accueil {
    background-image: url("../assets/picture/lavande.webp");
    opacity: 0.9;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 100vh;
}

html {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
}

/*----------HEADER PART--------------*/
li {
    list-style: none;
}

ul>li>a {
    text-decoration: none;
    color: 	#9370DB;
    font-size: 1.5rem;
    padding: 5px;
}

li>a:hover {
    font-weight: bold;
}

nav {
    width: 100%;
    background-color: transparent;
    color: white !important;

}
h3{
    font-size:35px;
    color:#9370DB;
    font-family: 'baskerville-italic';
}

.titre {
    display: flex;
    justify-content: center;
    margin: auto;
    font-size: 50px;
    width: 100%;
    color:black;
    font-weight: 900;
    margin-top: 30px;
}

.slogan {
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 30px;
    font-size: 25px;
    width: 100%;
    color: 	black;
}

.logo>img {
    height: 100px;
}

.header {
    display: flex;
    background-color: transparent;
    color: beige !important;
    
}

ul>li {
    display: flex;
    justify-content: center;

}

li {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    vertical-align: middle;

}

ul {
    display: flex;
    justify-content: center;
    margin: auto;
}

.carousel {

    height: 400px;
    width: 400px;
}

/*-------REVIEW----------*/
.reviewForm {
    display: flex;
    flex-direction: column;
    width: 30%;
}

/*------- Mosaic --------*/

.container-fluid {
    display: flex !important;
}

.cards {
    width: 60rem;
    margin: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.cards img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out; 
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none !important;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fef4e8;
    text-align: center;
    padding: 20px;
    z-index: 2 !important;
    transition-delay: 0.2s;
    font-size: 40px;
}

.cards:hover .overlay {
    opacity: 1;
    z-index: 2 !important;
    transition-delay: 0s;
}

.card:hover {
    transform: translate3d(0, -10px, 0);
    z-index: 3 !important;
}

.cards:hover img {
    transform: scale(1.05);
}

@media only screen and (max-width: 700px) {
    .container-fluid {
        flex-direction: column;
    }
    .cards {
        max-width: 100%;
    }
}

/* @media (min_width: 600px) {
    .container {
        display: flex !important;
        flex-direction: column !important;
    }
} */


/* PROMOTION */

.banner {
    opacity: 90% !important;
    width: 100%;
    background-color: #fef4e8;
    /*https://i0.wp.com/media.giphy.com/media/5ERaOy5fQEIAU/giphy.gif*/
    background-size: cover;
    font-size: 80px;
    color: #e6c3f8;
    text-align: center;
    padding: 40px 15px;
}

.big-text {
    font-size: 130px;
    font-weight: 800;
    animation-delay: 1s;
}

.banner a {
    display: inline-block;
    background: #fff;
    color: #e6c3f8;
    text-transform: uppercase;
    padding: 15px;
    text-decoration: none;
    font-size: 40px;
    transition: .3s;
}

.banner a:hover {
    background: #333;
    color: #fff;
    padding: 15px 20px;
}



/*-----------------*/

