* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

/* Header */
header {
    background: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo img {
    height: 40px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: #ff6f91;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}
p {
    font-size: 1em;
    color: #666;
}
.btn {
    padding: 10px 20px;
    background: #ff6f91;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn:hover {
    background: #e65b7b;
}

/* Hero Section */
.hero {
  width: 100%;
    text-align: center;
    padding: 100px 20px;
    position: relative;

    margin: 0 auto;
    color: #333;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.about-content {
    flex: 1;
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    width: 100%;
    max-width: 300px;
}
.features {
    flex: 1;
}
.features ul {
    list-style: none;
}
.features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.features ul li i {
    color: #ff6f91;
}

/* Product Section */
.product {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.product-image {
    flex: 1;
}
.product-image img {
    width: 100%;
    max-height: 450px;
    height: 100%;
    border-radius: 20px;
}
.product-content {
    flex: 1;
    background: #ffe6ec;
    padding: 20px;
    border-radius: 10px;
}
.product-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.product-content .price {
    font-size: 2em;
    color: #ff6f91;
    margin-bottom: 20px;
}

/* Services Section (Slider) */
.services {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.services-slider {
    position: relative;
    overflow: hidden;
}
.services-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.service-slide {
    min-width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.service-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-item img {
    width: 100%;
    /* max-width: 100px; */
    object-fit: cover;
    height: 100%;
    max-height: 250px;
    /* border-radius: 50%; */
    margin-bottom: 10px;
}
.service-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6f91;
    color: #fff;
    border: none;
    padding: 10px 13px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.slider-dot.active {
    background: #ff6f91;
}

/* Gallery Section */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

/* Prices Section */
.prices {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.price-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.price-item img {
    width: 100%;
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
    height: 100%;
    border-radius: 25px;
    margin-bottom: 10px;
}
.price-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.price-item .price {
    font-size: 1.5em;
    color: #ff6f91;
    margin-bottom: 10px;
}

/* Chefs Section */
.chefs {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.chef-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.chef-item img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.chef-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Testimonials Section (Slider) */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.testimonial-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}
.testimonial-item p {
    font-style: italic;
}
.testimonial-item .author {
    font-weight: bold;
    margin-top: 10px;
}

/* Footer */
footer {
    background: #fff;
    color: #666;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #666;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #ff6f91;
}
.footer-grid h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-btn,
    .slider-dots{
        display: none;
    }
    .services-slides {
        display: flex
    ;
        transition: transform 0.5s ease;
        flex-direction: column;
    }
    .services-slider {
        position: relative;
        overflow: visible;
    }
    .service-item {
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        height: fit-content;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .about, .product, .testimonial-slide {
        flex-direction: column;
    }
    .service-slide {
        min-width: 100%;
        padding: 20px;
        display: flex
    ;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        flex-direction: column;
    }
}
    html,body{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    a{
        text-decoration: none;
        color: #000;
    }
    .f{
        display: flex;
    }
    .f-col{
       flex-direction: column;
    }
    .f-wrap{
        display: flex;
        flex-wrap: wrap;
    }
    .f-star{
        align-items:flex-start
    }
    .b.f {
        display: flex
    ;
    
        justify-content: space-around;
    }
    @media screen and (max-width:768px) {
        .f{
           flex-wrap: wrap;
        }
        .map img{
    width: 100%;
    }
    .map p{
    width: 100%;
    }
    .b.f{
        flex-direction: column;
    }
    }
    form#frm {
        display: flex
    ;
        max-width: 600px;
        /* gap: 10px; */
        gap: 20px;
        margin-top: 30px;
        margin: 0 auto;
        margin-top: 20px;
        flex-direction: column;
    }
    textarea,
    input{
        padding: 10px;
        border: 3px solid #e3a3cf;
        border-radius: 10px;
    }
    textarea{
        height: 200px;
    }
