/* Importing Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
/*Colors*/
--white-color:#fff;
--dark-color:#000;

/*Standard Sceme
--primary-color:#1f211e;
--lightprimary-color: #565656;
--darksec-color: #c6007e;
--lightsec-color: #d5a5d9;
--light-color: #cbcbcb;*/

/*Alternate Colors 1 --alt1-*/
--primary-color: #3a445d;
--lightprimary-color: #5e5768;
--darksec-color: #928779;
--lightsec-color: #d4d2a5;
--light-color: #fcdebe;

/*Alternate Colors 2 --alt2-*/
--alt2primary-color: #0a0908;
--alt2lightprimary-color: #22333b;
--alt2darksec-color: #5e503f;
--alt2lightsec-color: #a9927d;
--alt2light-color: #f2f4f3;

/*Advanced Sceme*/
--adv-primary-color: #1c2321;
--adv-lightprimary-color: #c4c4c4;
--adv-darksec-color: #b92266;
--adv-lightsec-color: #dd2c85;
--adv-light-color: #fce4e3;
--adv-dark3rd-color: #d8cbc7;
--adv-med3rd-color: #e5a3aa;
--adv-light3rd-color: #fcf1f1;


/*Font Size*/
--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*/
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;

/*Border Radius*/
--border-radius-s: 8px;
--border-radius-m: 30px;
--border-radius-circle: 50%;

/* Site max width*/
--site-max-width: 1300px;
}

/*Styling for whole site*/


ul { 
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);

}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content:"";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--darksec-color);

}

/*Navbar styling*/
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--dark-color);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-family: "Indie Flower";
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border: 2px solid transparent;
    
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;

}

.navbar .nav-menu .nav-link:hover{
    color: var(--dark-color);
    border-color: var(--white-color);
    background: var(--lightsec-color);
    /*font-weight: var(--font-weight-medium);*/

}

.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(--lightsec-color);
    font-weight: var(--font-weight-bold);
    font-family: "Indie Flower", sans-serif;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--lightsec-color);
    border-radius: var(--border-radius-m);
    background: var(--lightprimary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

/*.hero-section .hero-details .contact-us:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}*/

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

.hero-section .hero-image-wrapper .hero-image {
    object-fit: cover;
    border-radius: var(--border-radius-m);
}

/*Service Section*/
.service-section {
    padding: 120px 0;
    background: var(--lightsec-color);
}

.service-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.service-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.service-title::after {
    content:"";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--white-color);

}

.service-section .service-image-wrapper .service-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}
.service-section .service-details .service-title {
    padding: 0;
}

.service-section .service-details {
    max-width: 50%;
}

.service-section .service-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

/*AboutSection*/
.about-section {
    padding: 120px 0;
    background: var(--light-color);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;

}

.about-section .social-link-list .deko-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .social-link-list .social-link {
    color: var(--darksec-color);
    font-size: var(--font-size-l);
    border: 2px solid transparent;
    /*border-radius: var(--border-radius-m);*/
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
    border-color: var(--light-color);
}

/*Menu Section*/

.menu-section {
    padding: 120px 0;
    color: var(--primary-color);
    background: var(--white-color);
}
/*.menu-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}*/
.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 83%;
    aspect-ratio: 1;
    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-semibold);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);

}

.menu-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.menu-title::after {
    content:"";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--lightsec-color);

}

/*Testimonials*/
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--lightsec-color);
}

.testimonials-section .testimonial {
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-m);
}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;
}

/*Responsice for 1024px*/
@media screen and (max-width: 1024px) {

    .menu-section .menu-list {
        gap: 60px;
    }

    .meun-section .menu-list .menu-item {
        width: calc(100% / 3 - 60px);
    }
}

/*Responsive*/
@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;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(4px);
        background: rgba(0,0,0,0.2);

    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 50px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .close_btn0_ci {
        background-image: linear-gradient(to right, var(--lightsec-color), var(--lightsec-color)), url("images/menu_btn_close0.png");
        background-blend-mode: overlay;
        background-size: contain;
        width: 20px;
        height: 20px;        
    }

    .navbar .open_btn0_ci {
        background-image: linear-gradient(to right, var(--lightsec-color), var(--lightsec-color)), url("images/menu_btn_open0.png");
        background-blend-mode: overlay;
        background-size: contain;
        width: 20px;
        height: 20px;        
    }


    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--dark-color);
        transition: left 0.2s ease;

    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link{
        color: var(--light-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details {
        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 {
        gap:70px;
        flex-direction: column;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .service-section .section-content {
        gap:70px;
        flex-direction: column;
    }

    .service-section .service-image-wrapper .service-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list {
        gap: 30px;
    }

    .meun-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
    }

    .menu-section .menu-list .menu-item .menu-image {
        max-width: 200px;
    }

}

/*Responsive for 640px*/
@media screen and (max-width: 640px) {
    .menu-section .menu-list {
        gap: 60px;
    }
    
    .menu-section .menu-list .menu-item {
        width: 100%;
    }
}