@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --white-color: #fff;
    --dark-color:#252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

    --border-radius-s:8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    --site-max-width: 1300px;
} 

html{
    scroll-behavior:smooth;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border:none;
    background: none;
}
.hero-image-wrapper{
    width:80vh;
    zoom:90%;
}
img{
    width: 100%;
}
.section-content{
    max-width:var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section-title{
    text-align:center;
    padding:60px 0 100px;
    text-transform:uppercase;
    font-size:var(--font-size-xl);

}
.section-title::after{
    content:"";
    display:block;
    width: 80px;
    height: 5px;
    background: var(--secondary-color);
    margin:10px auto 0;
    border-radius:var(--border-radius-s);
}
header{
    background:var(--primary-color);
    position:fixed;
    width:100%;
    z-index: 5;
}

header .navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:20px;
}

.navbar .nav-menu{
    display: flex;
    gap: 10px;
}

.navbar .nav-logo .logo-text{
    color:var(--white-color);
    font-size:var(--font-size-xl);
    font-weight: var(--font-weight-semi-bold);
}
.navbar .nav-menu .nav-link{
    color:var(--white-color);
    padding: 10px 18px;
    border-radius:var(--border-radius-m);
    font-size: var(--font-size-m);
    transition:0.3s ease;
}
.navbar .nav-menu .nav-link:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}
button#menu-open-button{
    display:none;
}
button#menu-close-button{
    display:none;
}  

.hero-section{
    min-height :100vh;
    background: var(--primary-color);
}

.hero-section .section-content{
    display:flex;
    align-items:center;
    min-height:100vh;
    color:var(--white-color);
    justify-content: space-between;
}
.hero-section .hero-details .title{
    font-size:var(--font-size-xxl);
    color:var(--secondary-color);
    font-family:"Miniver", sans-serif;
}
.hero-section .hero-details .subtitle{
    margin-top:8px;
    font-size:var(--font-size-xl);
    max-width:70%;
    font-weight:var(--font-weight-semi-bold);
}
.hero-section .hero-details .description{
    max-width:70%;
    font-size:var(--font-size-m);
    margin:24px 0 40px;
}
.hero-section .hero-details .buttons{
    display:flex;
    gap:23px;
}
.hero-section .hero-details .button{
    padding: 10px 26px;
    background: var(--secondary-color);
    border:2px solid transparent;
    color:var(--primary-color);
    border-radius:var(--border-radius-m);
    font-weight:var(--font-weight-medium);
    transition:0.3s ease;
}
.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us{
    color:var(--white-color);
    border-color:var(--white-color);
    background:transparent;
}

.hero-section .hero-details .contact-us:hover{
    color:var(--primary-color);
    background:var(--secondary-color);
    border-color:var(--secondary-color);
}

.hero-section .hero-image-wrapper{
    max-width:500px;
    margin-right:30px;
}

.about-section{
    padding:120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap:50px;
}

.about-section .about-image-wrapper .about-image{
    width:400px;
    height:400px;
    object-fit:cover;
    border-radius:var(--border-radius-circle);
}

.about-section .about-details{
    max-width:50%;
}

.about-section .about-details .section-title{
    padding:0;
}
.about-section .social-link-list{
    display:flex;
    gap:20px;
    justify-content:center;
}

.about-section .social-link-list .social-link{
    color:var(--primary-color);
    font-size:var(--font-size-l);
    transition:0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color:var(--secondary-color);
}

.about-section .about-details .text{
    line-height:30px;
    margin:50px 0 30px;
    font-size:var(--font-size-m);
    text-align:center;

}

.menu-section{
    color:var(--white-color);
    background:var(--dark-color);
    padding:50px 0 100px;
}

.menu-section .menu-list{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    gap:110px;
}

.menu-section .menu-list .menu-item{
    display:flex;
    flex-direction:column;
    align-items: center;
    width:25%;
    justify-content: space-between;
    text-align:center;
}

.menu-section .menu-list .menu-item .menu-image{
    max-width: 83%;
    aspect-ratio: 1;
    zoom:25%;
    margin-bottom:15px;
    object-fit:contain;
}
.menu-section .menu-list .menu-item .name{
    margin :12px 0;
    font-size:var(--font-size-l); 
    font-weight:var(--font-weight-semi-bold);
}

.menu-section .menu-list .menu-item .text{
    font-size:var(--font-size-m);
}

.testimonials-section{
    padding:50px 0 100px;
    background:var(--light-pink-color);
}

.testimonials-section .slider-wrapper{
    overflow:hidden;
    margin:0 50px 60px;
}

.testimonials-section .testimonial{
    user-select: none;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:35px;
    text-align:center;
}

.testimonials-section .testimonial .user-image{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:var(--border-radius-circle);
    margin-bottom:50px;
}

.testimonials-section .testimonial .name{
    margin-bottom:16px;
    font-size:var(--font-size-m);
}

.testimonials-section .testimonial .feedback{
    line-height:25px;
}

.testimonials-section .swiper-pagination-bullet{
    width:15px;
    height:15px;
    opacity:1;
    background:var(--secondary-color);
}

.testimonials-section .swiper-slide-button{
    color:var(--secondary-color);
    transition:0.3s ease;
    margin-top:-50px;
}

.testimonials-section .swiper-slide-button:hover{
    color:var(--primary-color);
}

.gallery-section{
    padding:50px 0 100px;
}

.gallery-section .gallery-list{
    display:flex;
    flex-wrap:wrap;
    gap:32px;
}

.gallery-section .gallery-list .gallery-item{
    width:calc(100%/3 - 32px);
    border-radius:var(--border-radius-s);
    overflow:hidden;
}

.gallery-section .gallery-item .gallery-image{
    width:100%;
    height:100%;
    cursor:zoom-in;
    transition:0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image{
    transform:scale(1.3);
}

.contact-section{
    background:var(--light-pink-color);
    padding:50px 0 100px;
}

.contact-section .section-content{
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap:48px;
}

.contact-section .contact-info-list .contact-info{
    display:flex;
    gap:20px;
    margin:20px 0;
    align-items:center;
}

.contact-section .contact-info-list .contact-info i{
    font-size:var(--font-size-m);
}

.contact-section .contact-form{
    max-width:50%;

}

.contact-section .contact-form .form-input{
    width:100%;
    height:50px;
    background:var(--white-color);
    border:1px solid var(--medium-gray-color);
    border-radius:var(--border-radius-s);
    padding:0 12px;
    outline:none;
    margin-bottom:16px;
}

.contact-section .contact-form textarea .form-input{
    height:100px;
    padding:12px;
    resize:vertical;

}

.contact-section .contact-form .form-input:focus{
    border-color:var(--secondary-color);
}

.contact-section .contact-form .submit-button{
    padding:10px 26px;
    margin-top:10px;
    color:var(--white-color);
    font-size:var(--font-size-m);
    font-weight:var(--font-weight-semi-bold);
    background:var(--primary-color);
    border-radius:var(--border-radius-m);
    border:1px solid var(--primary-color);
    transition:0.3s ease;
}

.contact-section .contact-form .submit-button:hover{
    background:transparent;
    color:var(--primary-color);
}

.footer-section{
    background:var(--dark-color);
    padding:20px 0;
}

.footer-section .section-content{
    display:flex;
    align-items:center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link){
    color:var(--white-color);
    transition:0.2s ease;
}

.footer-section .social-link-list{
    display:flex;
    gap:25px;
}

.footer-section .social-link-list .social-link{
    font-size:var(--font-size-l);

}

.footer-section .social-link-list .social-link:hover, .footer-section .policy-text .policy-link:hover{
    color:var(--secondary-color);
}

.footer-section .policy-text .separator{
    margin:0 5px;
    color:var(--white-color);
}


@media screen and (max-width:1024px){
    .menu-section .menu-list .menu-item{
        width: 83%;
        margin-left:10px;
    }
    .menu-section .menu-list{
        gap:60px;
    }
}

@media screen and (max-width: 900px){
    :root{
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }
    body.show-mobile-menu header::before{
        content:"";
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,0.2);
        backdrop-filter: blur(5px);
    }
    button#menu-close-button, button#menu-open-button{
        font-size:var(--font-size-l);
        display:block;
    }
    .navbar #menu-close-button{
        position:absolute;
        top:30px;
        right:30px;
    }
    .navbar #menu-open-button{
        color:var(--white-color);
    }

    .navbar .nav-menu{
        display: block;
        position:fixed;
        top:0;
        left:-300px;
        width:300px;
        display:flex;
        flex-direction:column;
        align-items:center;
        padding-top: 100px;
        background: var(--white-color);
        height:100%;
        transition:left 0.2s ease;
    }
    
    body.show-mobile-menu .navbar .nav-menu{
        left:0;
    }

    .navbar .nav-menu .nav-link{
        color:var(--dark-color);
        font-size:var(--font-size-l);
        display:block;
        margin-top:17px;
    }
    .hero-section .section-content{
        gap:50px;
        flex-direction:column-reverse;
        text-align:center;
        justify-content: center;
        padding:30px 20px 20px;
    }
    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details, .contact-section .contact-form{
        max-width:100%;
    }
    .hero-section .hero-details .buttons{
        justify-content: center;
    }
    .hero-section .hero-image-wrapper{
        max-width:270px;
        margin-right:0;
    }
    .about-section .section-content{
        flex-direction:column-reverse;
        gap:70px;
    }
    .about-section .about-image-wrapper .about-image{
        width:100%;
        height:100%;
        max-width:250px;
        aspect-ratio: 1;
    }
    .gallery-section .gallery-list .gallery-item{
        gap:30px;
    }
    .gallery-section .gallery-list .gallery-item{
        width:calc(100% / 2 - 30px);
    }
    .contact-section .section-content{
        flex-direction:column-reverse;
        align-items:center;
    }
}

@media screen and (max-width:640px){
    .testimonials-section .slider-wrapper{
        margin:0 0 30px;
    }

    .testimonials-section .swiper-slide-button{
        display:none;
    }
    .gallery-section .gallery-item .gallery-image{
        width:100%;
    }
    .footer-section .section-content{
        flex-direction: column;
        gap:20px;
    }
}