/* General Styles */
:root {
    --primary-color: #FF6B6B; /* A vibrant red, inspired by Indian spices */
    --secondary-color: #4ECDC4; /* A calming teal, for balance */
    --accent-color: #FFD166; /* A warm yellow/gold */
    --dark-text: #2C3E50; /* Dark blue-grey for headings */
    --light-text: #7F8C8D; /* Lighter grey for body text */
    --background-light: #F8F9FA; /* Light background */
    --background-dark: #34495E; /* Dark background for footer/header elements */
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background-light);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--background-dark);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center; /* Align items vertically in the middle */
    gap: 9px; /* Increased space between icon and text */
}

.logo-icon {
    height: 32px; /* Increased size of the SVG icon */
    width: auto;
    color: var(--white); /* Changed color to white for better contrast */
    padding-bottom: 9px; /* Added 3px bottom padding */
    filter: drop_shadow(1px 1px 2px rgba(0,0,0,0.2)); /* Slightly softer shadow */
}

.logo {
    text-decoration: none; /* Remove underline from the logo link */
}

.logo h1 {
    font-family: 'Noto Sans Devanagari', sans-serif; /* Using a suitable font for a logo-like appearance */
    font-size: 1.8em; /* Increased font size for more impact */
    font-weight: 450; /* Increased font weight */
    color: var(--white); /* Changed color to white for better contrast */
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4); /* Slightly softer shadow */
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: 15px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    color: var(--white);
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    background-color: var(--background-dark);
    position: absolute;
    top: 70px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-bottom: 10px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    margin: 10px 10px 10px 0;
    text-align: center;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn.primary:hover {
    background-color: #e65a5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.btn.secondary:hover {
    background-color: #42b8b0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.btn.tertiary {
    background-color: var(--accent-color);
    color: var(--dark-text);
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.btn.tertiary:hover {
    background-color: #e6bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 209, 102, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5em, 7vw, 3.5em); /* Fluid font size for hero heading */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.location-info, .timing-info {
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--accent-color);
}

.location-info i, .timing-info i {
    margin-right: 10px;
}

/* Section Titles */
.section-title {
    font-size: clamp(2em, 5vw, 2.8em); /* Fluid font size for section titles */
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-item {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-item h3 {
    font-size: clamp(1.4em, 3vw, 1.6em); /* Fluid font size for product titles */
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.product-item p {
    color: var(--light-text);
    padding: 0 20px;
    margin-bottom: 15px;
}

.product-item .hindi-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: var(--secondary-color);
    font-size: 1em;
    display: block;
    padding-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center; /* Center align content within the section */
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
    margin-top: 40px;
    text-align: left; /* Reset text alignment for columns */
}

.about-text-column {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Minimum width before wrapping */
}

.about-image-column {
    flex: 1; /* Takes less space */
    min-width: 280px; /* Minimum width before wrapping */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items within this column */
}

.about-image {
    width: 100%;
    max-width: 600px; /* Reduced size */
    max-height: 450px; /* Added max-height */
    object-fit: cover; /* Ensure image covers the area */
    margin: 0 auto 30px auto; /* Centered margin */
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns in a single row */
    gap: 20px; /* Further reduced gap */
    margin: 40px auto; /* Centered with auto margins */
    max-width: 1100px; /* Further reduced max-width for more whitespace */
    text-align: center;
}

.feature-item {
    background-color: var(--white);
    padding: 15px; /* Reduced padding */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5em;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.contact-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        max-width: 100%; /* Allow full width on small screens */
        margin: 40px auto; /* Ensure centering */
    }

    .about-text-column, .about-image-column {
        flex: none; /* Remove flex basis on small screens */
        width: 100%;
        text-align: center;
    }

    .about-image {
        margin: 30px auto; /* Center image on small screens */
    }

    .about-features {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        margin-top: 40px; /* Add margin to separate from content wrapper */
    }

    header .container {
        flex-direction: row; /* Keep logo and toggle in a row */
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        display: none; /* Hide main navigation on mobile */
    }

    .menu-toggle {
        display: block; /* Show hamburger menu on mobile */
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero .subtitle {
        font-size: 1em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        margin: 10px 0;
    }

    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    .products-grid, .about-features, .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .logo img {
        height: 50px;
    }

    nav a {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-subtitle {
        font-size: 0.9em;
    }
}
