@import url("https://use.typekit.net/esy2jpt.css");

/* 
Header, Button:
font-family: abril-fatface, serif;

Body:
font-family: montserrat, sans-serif;

Color:
Red: #D81E5B;
Yellow: #FDF0D5;
Pink: #EEAECA;
Blue: #94BBE9;
*/

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

/* *** HEADER *** */
body {
    position: relative;
}

header,
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 100vw; */
    padding: 2rem 6rem;
    height: 75px;
    background-image: linear-gradient(to right, #EEAECA, #94BBE9);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    /* box-shadow: 3px 3px 10px #D81E5B; */

}

header img,
footer img {
    width: 150px;
    cursor: pointer;
    transition: 1s;
}

header img:hover,
footer img:hover {
    scale: 1.1;
}

header nav {
    width: 30%;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    font-family: abril-fatface, serif;
    text-decoration: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: 1s;
}

header nav ul li:hover a {
    font-size: 2rem;
}

nav ul li i {
    color: #FFFFFF;
    transition: .7s;
}

nav ul li:hover i {
    scale: 1.3;
}

/* *** Banner *** */
.slider {
    /* width: 100vw; */
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
    top: 75px;
}

.list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
}

.list img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

.dots {
    position: absolute;
    color: #FFF;
    bottom: 10px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dots li {
    list-style: none;
    background-color: #FFF;
    width: 10px;
    height: 10px;
    margin: 20px;
    border-radius: 20px;
    transition: 1s;
    cursor: pointer;
}

.dots li.active {
    width: 30px;
}

/* *** Special Product *** */
.special {
    width: 70%;
    margin: 5rem auto;
    margin-top: 9rem;
    text-align: center;
}

h2 {
    font-family: abril-fatface, serif;
    font-size: 2rem;
    color: #D81E5B;
    margin: 2rem auto;
    text-align: center;
}

.listSpecial {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product {
    background-image: linear-gradient(#EEAECA, #94BBE9);
    border-radius: 20px;
    width: 33%;
    max-width: fit-content;
}


.product .imageSpecial {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .imageSpecial img {
    height: 300px;
    transition: .5s;
}

.product:hover img {
    transform: translateY(-50px);
}

.product .content {
    font-family: montserrat, sans-serif;
    background-color: #FFFFFF24;
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: -50px;
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    line-height: 2;
}

.price {
    color: #D81E5B;
    font-weight: 700;
}

.add {
    font-family: abril-fatface, serif;
    font-size: 1rem;
    background-color: #FDF0D5;
    color: #D81E5B;
    display: block;
    width: fit-content;
    padding: .5rem 1rem;
    margin: 0 auto;
    margin-top: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px #D81E5B;
    transition: .5s;
}

.add:hover {
    transform: translate(0, 4px);
    box-shadow: none
}

.button {
    font-family: abril-fatface, serif;
    text-decoration: none;
    background-color: #D81E5B;
    color: #FFFFFF;
    display: block;
    width: fit-content;
    padding: .5rem 1rem;
    margin: 1rem auto;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px #EEAECA;
    transition: .5s;
}

.button:hover {
    transform: translate(0, 4px);
    box-shadow: none
}

/* *** Gallery *** */
.galleryContainer {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left, #EEAECA, #94BBE9);
    position: relative;
}

h2.gallery {
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3rem;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
    column-gap: 2rem;
    width: 70%;
    margin: 0 auto;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 600px;
    position: relative;
    margin-top: 4rem;
}

.wrapper i.buttoNav {
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 999;
    transition: .5s;
}

.wrapper i.buttoNav:hover {
    scale: 1.2;
}

i#prev {
    left: 25px;
}

i#next {
    right: 25px;
}

.imageContainer {
    height: 100%;
    width: 800px;
    overflow: hidden;
}

.imageContainer .carousel {
    display: flex;
    height: 600px;
    width: 800px;
    overflow: hidden;
}

.carousel img {
    height: 600px;
    width: 800px;
    object-fit: cover;
    border-radius: 20px;
}

*/

/* *** Contact *** */
#contact {
    width: 70%;
    margin: 2rem auto;
    color: #D81E5B;
    line-height: 2;
}

.contactContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info {
    font-size: x-large;
}

.contactContainer img {
    width: 50%;
    border-radius: 20px;
}

/* *** MENU *** */
.menu {
    width: 70%;
    margin: 4rem auto;
}

h1 {
    font-family: abril-fatface, serif;
    font-size: xx-large;
    color: #D81E5B;
    text-transform: uppercase;
    text-align: center;
    margin-top: 7rem;
    margin-bottom: 2rem;

}

.products {
    display: flex;
    gap: 2rem;
    /* justify-content: center; */
}

.catergories button {
    font-family: abril-fatface, serif;
    display: block;
    width: 90px;
    background-color: #D81E5B;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px #EEAECA;
    padding: .5rem;
    margin-bottom: 1rem;
}

.catergories .activeCategories {
    background-color: #EEAECA;
    color: #FFFFFF;
    box-shadow: 0 4px #D81E5B;
    transition: .5s;
}

.catergories button:hover {
    transform: translate(0, 4px);
    box-shadow: none
}

.list1Container {
    width: 90%;
}

.list1 {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    gap: 2rem;
    text-align: center;
    line-height: 2;
}

.item1 {
    width: 100%;
}

.listPage {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.listPage li {
    font-family: abril-fatface, serif;
    text-decoration: none;
    background-color: #D81E5B;
    color: #FFFFFF;
    width: fit-content;
    padding: .5rem 1rem;
    margin: 1rem .5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px #EEAECA;
    transition: .5s;
}

.listPage .active {
    background-color: #EEAECA;
    color: #FFFFFF;
    box-shadow: 0 4px #D81E5B;
    transition: .5s;
}

.listPage li:hover {
    transform: translate(0, 4px);
    box-shadow: none
}

/* Top Arrow */
.topButton {
    display: none;
    width: 57px;
    font-size: 2rem;
    text-align: center;
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-image: linear-gradient(#EEAECA, #94BBE9);
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    padding: .7rem;
    transition: 1s;
    cursor: pointer;
}

.topButton:hover {
    scale: 1.1;
}

/* *** FOOTER *** */
footer {
    margin-top: 3rem;
}

footer nav {
    width: 10%;
}

footer nav i {
    font-size: 2rem;
}