:root {
    --primary-color: #d94f04; /* Saffron/spice orange */
    --primary-hover: #b34303; /* Darker saffron */
    --accent-color: #8b0000; /* Chili red */
    --highlight-color: #ffb107; /* Turmeric yellow */
    --dark-bg: #2c2f33; /* Deep charcoal */
    --light-bg: #fff8e1; /* Parchment cream */
    --text-color: #2c2f33; /* Dark charcoal text */
    --border-color: #e0d4b8; /* Light spice beige */
}

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

body {
    font-family: 'Noto Serif', serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 30px;
}

.header.scrolled {
    background: rgba(235, 237, 239, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 44px;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    max-height: 110px;
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
   prjtransition: color 0.3s ease;
    color: #f8f9fa;
}

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

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

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

.hero-section {
    padding: 0;
    position: relative;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.45);
    border-radius: 10px;
    padding: 2rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 80%;
    height: auto;
    margin: 0 auto 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Cards */
.product-card {
    position: relative;
    background: url('../images/hero.jpg') center center/cover no-repeat;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7); /* White overlay for readability */
    z-index: 1;
}
.product-card > * {
    position: relative;
    z-index: 2;
}

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

.product-card

 img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: var(--light-bg);
    padding: 5rem 0;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #fff;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Testimonials */
.testimonials-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-card .stars {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-control {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 79, 4, 0.25);
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 79, 4, 0.3);
}

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

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Cart */
.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        max-width: 90%;
        height: auto;
    }
    
    .product-card img {
        height: 150px;
    }
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Transitions */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

.custom-caption {
    left: 3%;
    right: auto;
    bottom: 5%;
    top: auto;
    text-align: left;
    background: rgba(0,0,0,0.45);
    border-radius: 10px;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    max-width: 500px;
}
@media (max-width: 768px) {
    .custom-caption {
        left: 2%;
        bottom: 2%;
        padding: 1rem 1.2rem;
        max-width: 95vw;
    }
}

.product-card-cinnamon {
    background-image: url('../images/hero6.jpeg');
}
.product-card-cardamom {
    background-image: url('../images/Cardamom.jpeg');
}
.product-card-cloves {
    background-image: url('../images/Cloves.jpeg');
}
.product-card-pepper {
    background-image: url('../images/black.jpeg');
}

/* About Page Styles */
.about-main h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}
.about-main p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-main h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}
.contact-main form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 2rem;
}
.contact-main label {
    font-weight: 500;
    color: var(--primary-color);
}
.contact-main .btn-custom {
    margin-top: 1rem;
}