/* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Roboto+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

:root {
    --background-white: #fafbfd;
    --background-soft-pink: #F1E1D5;
    --background-pink: #E7AF9D;
    --text-black: #292929;
    --yellow-soft: #ffffc0;
}


html {
    scroll-behavior: smooth;
    background-color: var(--background-white);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* === Navbar style === */
nav {
    height: 80px;
    background: var(--background-pink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px 0px 50px;
    position: relative;
    z-index: 1;
}

nav .logo {
    font-size: 25px;
    color: white;
    font-weight: 600;
    display: flex;
}

.text-navbar {
    font-size: 23px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 5px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: white;
    color: #1b1b1b;
}

nav .menu-btn i {
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

#menu-click {
    display: none;
}

.title-header {
    font-family: 'Satisfy';
    font-size: 100px;
    text-align: center;
    color: var(--text-black);
}

.title-header, .space2{
    margin-bottom: 2%;
}

.subtile-text {
    font-family: 'Caveat', cursive;
    font-size: 40px;
}

.icon-chef {
    margin-right: 5px;
}

/* === End Navbar style === */

/* === Home content === */
#Home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--background-soft-pink)
}

.main-home-content{
    display: flex;
    justify-content: center;
    gap: 10%;
    margin-left: 30px;
    margin-right: 20px;
}

.img-content {
    display: flex;
    justify-content: center;
}

.img-rol {
    width: 90%;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-us {
    font-size: 18px;
    font-weight: 500;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 20px;
    margin-top: 5%;
    color: white;
    background-color: #ee707d;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.btn-us:hover {
    cursor: pointer;
    background-color: #f6939d;
}

.buttons-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.icon-media {
    font-size: 50px;
}

.icon-face {
    color: #3A589E;
}

.icon-insta {
    color: #FE0193;
}

.icon-whats {
    color: #3EC34F;
}

/* === End Home content === */

/* === Menu content === */
#Menu {
    margin-top: 4%;
}

.menu-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-menu-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5%;
    width: 85%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    border-radius: 5px;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    margin-top: 4%;
    margin-bottom: 4%;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    border-radius: 10px;
    color: var(--text-black);
    font-size: 20px;
    background-color: var(--background-soft-pink);
}

.card-item-title p {
    transition: all 0.5s;
}

.card-item-price p {
    transition: all 0.5s;
}

.card-item-description p {
    transition: all 0.5s;
}

.img-item {
    width: 60%;
    margin-bottom: 5%;
    margin-top: 20%;
    transition: all 0.5s;
}

.card-item-description {
    display: flex;
    opacity: 0%;
    font-size: 14px; 
    text-align: center;
    margin: 5%;
}

.card-item:hover img {
    transform: translateY(-90px);
}

.card-item:hover p {
    transform: translateY(-90px);
}

.card-item:hover .card-item-description {
    transition: all 0.5s;
    opacity: 100%;
}

/* === End Menu content === */

/* === About content ===  */
#About {
    margin-top: 4%;
}

.icon-heart {
    font-size: 25px;
    color: red;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-info-content {
    width: 80%;
    display: flex;
    flex-direction: row;
}

.info-about {
    margin-left: 4%;
}

.text-about {
    text-align: justify;
}

.card-about-container {
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-item-about {
    width: 180px;
    border: 1px solid #EF9A9A;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    color: #D32F2F;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #EF9A9A;
    background-color: #FFEBEE;
    padding: 5px 10px;
}

.card-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.icon-about {
    font-size: 30px;
    color: #D32F2F;
    margin-bottom: 5px;
}

.main-description {
    color: #D32F2F;
    font-size: 15px;
    text-align: center;
}

.button-container-about {
    margin-top: 5%;
    margin-bottom: 5%;
}

.button-contact-about {
    text-decoration: none;
    cursor: pointer;
    background-color: #ee707d;
    color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* === End About content ===  */

/* === Contact content ===  */

#Contact {
    margin-top: 4%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    width: 80%;
    align-items: center;
}

.info-contact {
    width: 100%;
}

.separator-contact {
    margin-top: 5%;
    margin-bottom: 5%;
}

.location-contact {
    display: flex;
    justify-content: center;
}

.location-card-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    background-color: var(--background-soft-pink);
    padding: 5%;
}

.img-location-contact {
    width: 90%;
    border-radius: 20px;
}

.fa-github {
    color: #0a0a0a;
}

.fa-linkedin {
    color: #0A66C2;
}

.fa-briefcase {
    color: #4a2500;
}


/* === End Contact content ===  */

/* === Foother === */
footer {
    margin-top: 5%;
    background-color: var(--background-pink);
    padding: 35px;
    text-align: center;
    color: var(--text-black);
    font-weight: bold;
}

.social-medias-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon-media-foother {
    font-size: 35px;
}
/* === End Foother === */

/* === Responsive desing === */
@media (max-width: 940px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #111;
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
    }

    nav .menu-btn i {
        display: block;
    }

    nav ul li {
        margin: 40px 0;
    }

    nav ul li a {
        font-size: 20px;
        display: block;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #E7AF9D;
        background: none;
    }

    .img-content {
        display: none;
    }

    .contact-container {
        flex-direction: column;
    }

    .location-contact {
        margin-top: 10%;
    }

    .location-card-contact {
        margin-left: 0px;
        width: 80%;
    }

    .info-contact {
        text-align: center;
    }
}

@media (max-width: 570px) {

    .main-home-content {
        flex-direction: column-reverse;
    }

    .buttons-media {
        flex-direction: row;
        justify-content: center;
    }

    .title-header {
        font-size: 80px;
    }

    .img-about img {
        margin: 0;
        width: 100%;
    }

    .text-navbar {
        font-size: 20px;
        text-align: center;
    }

    .subtile-text, .text-contact-card {
        text-align: center;
    }

    .location-card-contact {
        width: 100%;
    }
    
}

@media (max-width: 1418px) {
    #About {
        height: auto;
    }

    .about-info-content {
        flex-direction: column;
        align-items: center;
    }

    .card-about-container {
        display: flex;
        justify-content: space-around;
    }

    .info-about {
        margin-top: 2%;
    }

    .button-container-about {
        display: flex;
        justify-content: center;
    }
}