
: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;
}

/* 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%;
}



.btn-primary{
    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-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;
}



/***********2 second animation************/
@keyframes bounce {
    0%,100% {
        transform:translateY(0)
    }
    50% {
        transform:translateY(-10px)
    }
}
.logo {
    animation: bounce 1s ease-out infinite;
}
/***********3 second animation************/

@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;
}


/* --- About Page Specific Styles --- */

/* Basic Reset for About Page Content (if not already in global CSS) */
.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif; /* Adjust to your site's font */
    line-height: 1.6;
    color: var(--text-color); /* Assuming you have CSS variables for colors */
    background-color: var(--background-color);
}

.about-page-content h1,
.about-page-content h2,
.about-page-content h3 {
    color: var(--heading-color); /* Assuming you have CSS variables for colors */
    text-align: center;
    margin-bottom: 25px;
}

.about-page-content h1 {
    font-size: 2.8em;
    margin-top: 40px;
    margin-bottom: 30px;
}


about-section why-choose-me
.about-page-content h2 {
    font-size: 2.2em;
    padding-top: 40px;
}

.about-page-content h3 {
    font-size: 1.5em;
    margin-top: 15px;
}

.about-page-content section {
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: var(--card-background-color, #fff); /* Fallback to white */
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

/* About Hero Section */
.about-hero {
    display: flex;
    flex-direction: column; /* Stack on small screens */
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color:  var(--secondary-background-color, #f9f9f9);
    border-radius: 10px;
    box-shadow: none; /* No shadow for the hero section */
}

.about-hero-content {
    text-align: center;
    max-width: 700px;
}

.about-hero-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--light-text-color, #555);
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Why Choose Me & Values Sections */
.why-choose-me .content-wrapper,
.values .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.why-choose-item,
.value-item {
    background-color: var(--card-background-color, #fff);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover,
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-item h3,
.value-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color, #e74c3c); /* Example primary color */
}

.value-item i {
    font-size: 3em;
    color: var(--accent-color, #f39c12); /* Example accent color */
    margin-bottom: 15px;
}

/* Image Gallery Section */
.about-image-showcase {
    background-color: var(--secondary-background-color, #f9f9f9);
    padding-bottom: 80px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    width: 100%;
    height: 250px; /* Fixed height for consistent gallery look */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-hero {
        flex-direction: row; /* Side-by-side on larger screens */
        text-align: left;
    }

    .about-hero-content {
        text-align: left;
    }

    .about-hero-image {
        flex-basis: 50%; /* Adjust as needed */
        text-align: right;
    }

    .why-choose-me .content-wrapper,
    .values .content-wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }

    .image-gallery {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
    }
}

@media (min-width: 1024px) {
    .about-hero {
        gap: 80px;
    }

    .about-page-content h1 {
        font-size: 3.5em;
    }

    .about-page-content h2 {
        font-size: 2.8em;
    }

    .why-choose-me .content-wrapper,
    .values .content-wrapper {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    }
}

/* --- Dark Mode Support (assuming you have a theme toggle) --- */
html[data-theme='dark'] .about-page-content {
    background-color: var(--dark-background-color);
    color: var(--dark-text-color);
}

html[data-theme='dark'] .about-page-content h1,
html[data-theme='dark'] .about-page-content h2,
html[data-theme='dark'] .about-page-content h3 {
    color: var(--dark-heading-color);
}

html[data-theme='dark'] .about-hero {
    background-color: var(--dark-secondary-background-color);
}

html[data-theme='dark'] .about-hero-content p {
    color: var(--dark-light-text-color);
}

html[data-theme='dark'] .about-hero-image img,
html[data-theme='dark'] .gallery-item {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

html[data-theme='dark'] .why-choose-item,
html[data-theme='dark'] .value-item {
    background-color: var(--dark-card-background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

html[data-theme='dark'] .why-choose-item:hover,
html[data-theme='dark'] .value-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

html[data-theme='dark'] .value-item i {
    color: var(--dark-accent-color, #f7d794); /* Adjust for dark mode */
}








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: non;
    }
    
    .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;
    }
}