:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ffa502;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f9f9f9;
    --card-bg: #fff;
    --header-bg: #fff;
    --footer-bg: #2f3542;
    --footer-text: #f1f2f6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


header-right


/* Dark Mode Variables */

.hero
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--card-bg);
    line-height: 1.6;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--header-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.navtags ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navtags a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.navtags a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navtags a:hover::after {
    width: 100%;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 3rem 5%;
    background: #fff;
    text-align: center;
}
.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.why-choose-item {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
    transition: box-shadow 0.3s;
}
.why-choose-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.why-choose-item i {
    font-size: 2.5rem;
    color: var(--primary-color, #ff6b6b);
    margin-bottom: 1rem;
}
.why-choose-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}
.why-choose-item p {
    color: #666;
    font-size: 1rem;
}


.btn-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart:hover {
    background-color: var(--secondary-color);
}

.cart-count {
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Popular Menu Section */
.popular-menu {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
/***********/
.hideS {
    gap: 2rem;
    display:contents !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 3rem;
}
.hidden {
    display: non;
}


/************/




/******Animations******/
@keyframes navtags{
    0%{
        transform:translateX(-100px);
    }
    100%{
        transform:translateX(0px);
    }
}
.animate-1 {
    animation: navtags .3s ease;
}
.animate-2 {
    animation: navtags .6s ease;
}
.animate-3 {
    animation: navtags .9s ease;
}
.animate-4 {
    animation: navtags 1.2s ease;
}

/***********2 second animation************/
@keyframes bounce {
    0%,100% {
        transform:translateY(0)
    }
    50% {
        transform:translateY(-10px)
    }
}
.logo {
    animation: bounce 1s ease-out infinite;
}

#chatnow {
    height: 40px;
    width: 20px;
    top:0;
    z-index:99999;
}
/***********3 second animation************/

@keyframes fall {
    0% {
        transform:translateY(-50px) !important;
    }
    100% {
        transform:translateY(0) !important ;
    }
}
.fall-1 {
    animation: fall .4s ease-in;
}
.fall-2 {
    animation: fall .8 ease-in;
}
#fall-3 {
    animation:fall 1.2 ease-in !important;
}










@keyframes buttonBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

















.menu-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
}

.item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-details {
    padding: 1.5rem;
}

.item-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.item-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.item-description span {
    color: var(--primary-color);
    font-weight: 600;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-order {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-order:hover {
    background-color: var(--secondary-color);
}

.btn-view-all {
    display: block;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 5%;
    background-color: var(--card-bg);
    text-align: center;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-content h2 span {
    color: var(--primary-color);
}

.testimonials {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial {
    display: none;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial.active {
    display: block;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.customer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer span {
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-prev, .testimonial-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--secondary-color);
}

/* About Chef Section */
.about-chef {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.chef-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
}

.chef-content {
    flex: 1;
}

.chef-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.chef-content h2 span {
    color: var(--primary-color);
}

.chef-quote {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-left: 2rem;
}

.chef-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.chef-content p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter h2 span {
    color: var(--secondary-color);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.btn-subscribe {
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background-color: #e67e22;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section.about p {
    margin-bottom: 1.5rem;
    color: #dfe4ea;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links li {
    margin-bottom: 0.8rem;
}

.footer-section.links a {
    transition: var(--transition);
}

.footer-section.links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section.contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-section.contact a {
    transition: var(--transition);
}

.footer-section.contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-chef {
        flex-direction: column;
    }
    
    .chef-content {
        order: -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navtags {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .navtags.active {
        left: 0;
    }
    
    .navtags ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .header-right {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2, .testimonial-content h2, .chef-content h2, .newsletter h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .heading {
        padding: 1rem 5%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 5%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 1rem;
    }
    
    .btn-subscribe {
        border-radius: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
