@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans 3", sans-serif;
}
html{
    scroll-behavior: smooth;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 5;
    border-bottom:  3px solid #f0eeee;
}

.navbar{
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 10px;
    margin: 0 auto;
}

.nav-left, .nav-menu, .nav-right{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

a{
    text-decoration: none;
    color: rgba(71, 143, 202, 0.741);
}
.nav-left .nav-logo .logo{
    font-size: 3rem;
    font-weight: 800;
   
}

.nav-left .nav-menu{
    list-style: none;
}

.nav-left .nav-menu li a{
    padding: 8px 12px;
    font-size: 1rem;
    transition: 0.5s linear;
}

.nav-left .nav-menu li a:hover{
    text-decoration: underline;
    text-underline-offset: 10px;
    font-weight: 600;
    
}

.nav-right p{
    font-size: 1rem;
}

.nav-right .order-now, .submit{
    background-color: rgba(71, 143, 202, 0.741);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.5s linear;
}

.nav-right .order-now:hover, .submit:hover{
    background-color: transparent;
    color: rgba(71, 143, 202, 0.741);
    border: 1px solid rgba(71, 143, 202, 0.741);
}

.hero-section{
    min-height: 100vh;
    background:rgba(224, 174, 227, 0.442);
}

.hero-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 100px;
    min-height: 100vh;
}

.section-content{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;

}

.hero-section .section-content .hero-details h1{
    max-width: 70%;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-image img{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.hero-section .section-content .hero-details p{
    max-width: 70%;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-section .section-content .hero-details .order-now{
    padding: 10px 20px;
    border: 2px solid rgba(71, 143, 202, 0.741);
    background: transparent;
    color: rgba(71, 143, 202, 0.741);
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-section .section-content .hero-details .order-now:hover{
    
    border: 1px solid transparent;
    background: rgba(71, 143, 202, 0.741);
    color: #fff;
    
}

.about-us{
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    padding: 120px 0px;
    display: flex;
    align-items: center;
}

.about-us .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-us .section-content .about-image img{
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
}

.about-us .about-details{
    max-width: 50%;
}

.section-title{
    text-align: center;
    padding: 60px 0px 100px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after{
    content: '';
    display: block;
    background: rgba(71, 143, 202, 0.741);
    height: 5px;
    width: 100px;
    border-radius: 30px;
    margin: 10px auto 0;
}

.about-details .section-title{
    padding: 0;  
}

.about-details p{
    font-size: 1.1rem;
    line-height: 30px;
    text-align: center;
    margin: 50px 0 30px;
}

.menu-section{
    background-color: rgba(71, 143, 202, 0.741);
    color: #fff;
    padding: 50px 0 100px;
}

.menu-section .menu-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-section .menu-list .menu-item{
    width: 30%;
    text-align: center;
    height: 400px;
}

.menu-section .menu-list .menu-item img{
    width: 100%;
    height: 88%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.menu-item{
    border-radius: 20px;
    overflow: hidden;
}

.menu-section .section-title::after{
    background-color: #fff;
}

.theme-section{
    background-color: #fff;
    color: rgba(71, 143, 202, 0.741);
}

.theme-section .section-title::after{
    background-color: rgba(71, 143, 202, 0.741);
}

.theme-section .menu-list{
    gap: 10px;
}

.theme-section .menu-list .menu-item img{
    cursor: zoom-in;
    transition: 1s linear;
    border-radius: 8px;
    height: 100%;
}

.theme-section .menu-list .menu-item img:hover{
    transform: scale(1.1);
}

.theme-section .menu-list .menu-item{
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.contact-form {
    font-family: "Source Sans 3", sans-serif;
}

.contact-us{
    background-color: rgba(224, 174, 227, 0.442);
    padding-bottom: 100px;
}

.contact-us .section-content{
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;

}

.contact-form{
    max-width: 50%;
}

.contact-form form{
    width: 100%;
}

.contact-form form input, textarea{
   width: 100%;
   height: 50px;
   padding: 0 12px;
   border: 1px solid #ccc;
   outline: none;
   margin-bottom: 30px;
   border-radius: 10px;
   font-size: 1rem;
}

textarea{
    height: 100px;
    resize: vertical;
}


.contact-us .contact-details{
    width: 40%;
    display: flex;
    flex-direction: column;
}

.contact-us .contact-details div{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.footer{
    background-color: rgba(71, 143, 202, 0.741);
    color: #efff;
    padding: 20px 30px;
}

.footer .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .section-content .footer-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== TABLETS ===== */
@media (max-width: 992px) {
    .hero-section .section-content,
    .about-us .section-content,
    .contact-us .section-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-section .section-content .hero-details h1,
    .hero-section .section-content .hero-details p {
        max-width: 100%;
    }

    .about-us .about-details {
        max-width: 100%;
    }

    .contact-form,
    .contact-us .contact-details {
        width: 100%;
    }

    .menu-section .menu-list .menu-item {
        width: 45%;
    }
}

/* ===== PHONES ===== */
@media (max-width: 600px) {
    header {
        position: relative;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        gap: 10px;
    }

    .nav-left .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section .section-content {
        padding-top: 40px;
    }

    .hero-section .section-content .hero-details h1 {
        font-size: 2rem;
    }

    .hero-image img{
        width: 220px;
        height: 220px;
    }


    .menu-section .menu-list .menu-item {
        width: 100%;
    }

    .about-us .section-content {
        flex-direction: column;
        text-align: center;
    }

    .about-us .section-content .about-image img {
        width: 250px;
        height: 250px;
    }
}

