:root {
    --sattu-primary: #8B6914;
    --sattu-secondary: #D4A017;
    --sattu-dark: #5C4033;
    --sattu-light: #FDF5E6;
    --sattu-green: #2E7D32;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
}

.top-bar a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #fff !important;
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--sattu-primary) !important;
    background: var(--sattu-light);
}

.btn-sattu {
    background: var(--sattu-primary);
    color: white !important;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-sattu:hover {
    background: var(--sattu-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.85), rgba(139, 105, 20, 0.85)), url('../images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-section .display-3 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.btn-hero {
    background: var(--sattu-secondary);
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--sattu-secondary);
    transition: all 0.3s;
}

.btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--sattu-primary);
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--sattu-dark);
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--sattu-secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

.text-sattu {
    color: var(--sattu-primary) !important;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--sattu-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--sattu-primary);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .price {
    color: var(--sattu-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Benefits */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    min-width: 60px;
    height: 60px;
    background: var(--sattu-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

/* Recipe Cards */
.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.recipe-card .card-header {
    background: var(--sattu-primary);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.recipe-card .card-body {
    padding: 1.5rem;
}

.recipe-card ul {
    padding-left: 1.2rem;
}

.recipe-card ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Stats */
.stat-box {
    background: var(--sattu-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    background: var(--sattu-dark);
    transform: scale(1.05);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-info-box {
    background: var(--sattu-light);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-box i {
    color: var(--sattu-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--sattu-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 105, 20, 0.25);
}

.btn-submit {
    background: var(--sattu-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--sattu-dark);
}

/* Footer */
.footer {
    background: #2c1810 !important;
}

.footer h5 {
    color: var(--sattu-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--sattu-secondary);
}

.footer p {
    color: #aaa;
    margin-bottom: 0.8rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--sattu-secondary);
    transform: translateY(-3px);
}

.btn-amazon {
    background: #FF9900;
    color: #232F3E;
    font-weight: 600;
    border: none;
}

.btn-amazon:hover {
    background: #e68900;
}

.btn-flipkart {
    background: #2874F0;
    color: white;
    font-weight: 600;
    border: none;
}

.btn-flipkart:hover {
    background: #1c5fd1;
}

/* About Page */
.about-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-box {
    background: var(--sattu-light);
    border-left: 5px solid var(--sattu-primary);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.2rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .navbar-brand img {
        height: 45px;
    }
}
