/*
Theme Name: Twenty Twenty BringaMoolika Child
Theme URI: 
Description: Custom styles for Rishi Adivasi BringaMoolika landing page, overriding Twenty Twenty layout.
Author: Sibesh Pandey
Template: Rishi Adivasi
Version: 1.0.0
*/

/* --- AGGRESSIVE LAYOUT RESET FOR FULL-WIDTH TEMPLATE --- */
/* This is critical to override Twenty Twenty's container max-widths and padding */
.site,
.site-content,
.entry-content,
.entry-header, 
.entry-footer, 
.comments-area, 
.site-header, 
.site-footer,
.wrap { /* Add .wrap as it's a common Twenty Twenty wrapper */
    max-width: 100% !important; 
    padding: 0 !important; 
    margin: 0 !important;
}

body {
    padding-top: 0 !important; /* Reset body padding */
    overflow-x: hidden;
}

/* If the admin bar is visible, adjust the fixed nav */
body.admin-bar nav {
    top: 32px; /* Adjustment for WP Admin Bar */
}

/* --- YOUR CUSTOM CSS STARTS HERE --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #025b17;
    --primary-dark: #013d0f;
    --primary-light: #037a1f;
    --accent-color: #f9e514;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #F5F5DC;
    --light-bg: #fafaed;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}
/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: var(--primary-color);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 1rem 0;
}
nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--accent-color);
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 200px 2rem 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}
.cta-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #b89851;
}
/* Sections */
section {
    padding: 100px 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
/* Stats Section */
.stats {
    background: var(--white);
    padding: 80px 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}
/* Features */
.features {
    background: var(--light-bg);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}
/* How It Works */
.how-it-works {
    background: var(--white);
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
}
.step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.step p {
    color: var(--text-light);
}
/* Ingredients */
.ingredients {
    background: var(--primary-color);
    color: var(--white);
}
.ingredients .section-title {
    color: var(--white);
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.ingredient-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.ingredient-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.ingredient-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
/* Benefits */
.benefits {
    background: var(--light-bg);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    align-items: start;
    transition: all 0.3s;
}
.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.benefit-item p {
    color: var(--text-light);
}
/* Testimonials */
.testimonials {
    background: var(--white);
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}
.testimonial {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 2rem;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
/* Contact Form */
.contact-form {
    background: var(--primary-color);
}
.contact-form .section-title {
    color: var(--white);
}
.contact-form .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.contact-info {
    color: var(--white);
}
.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.contact-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.service-list {
    list-style: none;
    margin-top: 2rem;
}
.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.05rem;
}
.service-list li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}
.form-container {
    max-width: 100%;
    margin: 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}
.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}
.footer-contact p {
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.footer-contact strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    nav ul {
        display: none;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}