:root {
    /* Color palette */
    --mango-yellow: #FFD166;
    --chilli-red: #EF476F;
    --fresh-green: #06D6A0;
    --warm-orange: #FF9F1C;
    --cream: #FFF9F0;
    --dark-charcoal: #2B2D42;
    --light-gray: #F0F0F0;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-charcoal);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--mango-yellow), var(--chilli-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    margin: 0 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--chilli-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--chilli-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--chilli-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #d6304f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--chilli-red);
    border: 2px solid var(--chilli-red);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--chilli-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-product {
    background-color: var(--fresh-green);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-product:hover {
    background-color: #05a680;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 100%;
    height: 3px;
    background-color: var(--dark-charcoal);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--cream), var(--mango-yellow));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hero-content {
    flex: 1 1 400px;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.image-placeholder {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.image-placeholder:hover .image-overlay {
    opacity: 1;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-1,
.decoration-2,
.decoration-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background-color: var(--chilli-red);
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background-color: var(--fresh-green);
    bottom: -50px;
    left: -50px;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background-color: var(--warm-orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Our Achcharu Section */
.our-achcharu {
    padding: 4rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--chilli-red);
    margin-bottom: 1.5rem;
}

/* Price List Section */
.price-list {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.price-list table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-list th,
.price-list td {
    padding: 1.2rem;
    text-align: left;
}

.price-list th {
    background-color: var(--chilli-red);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-list td {
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
}

.price-list tr:hover td {
    background-color: #f8f9fa;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-content {
    flex: 1 1 400px;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Order Section */
.order-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--mango-yellow), var(--warm-orange));
    color: var(--white);
}

.order-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.order-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--chilli-red);
    width: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark-charcoal);
}

.contact-item p {
    color: #555;
    font-size: 0.95rem;
}

.contact-social {
    flex: 1 1 250px;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--chilli-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--mango-yellow), var(--chilli-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social .social-icons {
    justify-content: flex-start;
}

.footer-social .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-icon:hover {
    background-color: var(--chilli-red);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        display: none;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        margin: 0;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        margin-top: 1.5rem;
    }
    
    .hero-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .order-section h2 {
        font-size: 1.8rem;
    }
    
    .order-section p {
        font-size: 1rem;
    }
}