/* --- Google Fonts Import (Used in HTML <head>) ---
   - Merriweather: For Headings (Classic, Trustworthy)
   - Roboto: For Body Text (Modern, Readable)
*/

:root {
    /* Ayurvedic/Earth Tones Palette */
    --color-primary: #38761D; /* Deep Olive Green - Trust & Nature */
    --color-secondary: #FFC000; /* Warm Gold/Saffron - Vitality & Light */
    --color-text: #333333; /* Dark Grey for readability */
    --color-light-bg: #F9F9F4; /* Very Light Cream/Off-White */
    --color-white: #ffffff;
    --color-accent: #A6CE39; /* Lighter Green Accent */
}

/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
}

nav a:hover, nav a.active {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* --- Hero Section --- */
/* Add this to your styles.css */
.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero-image-placeholder {
    height: 300px; /* Adjust as needed */
    background-color: #E0E0C0; /* Placeholder color, replace with an actual image */
    margin: 0 auto 2rem;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    border-radius: 8px;
}
/* You can remove the old .hero-image-placeholder CSS rule now */

.hero-section {
    background-color: var(--color-light-bg);
    text-align: center;
    padding: 4rem 0;
}

.hero-section h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    font-style: italic;
    border-bottom: 3px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 0.2em;
}

/* --- Main Content Sections --- */
section {
    padding: 3rem 0;
    text-align: center;
}

.why-choose-us {
    background-color: var(--color-white);
    text-align: left;
}

.why-choose-us h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.why-choose-us p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Founders Section --- */
.founders-info {
    background-color: var(--color-light-bg);
}

.founders-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.founder-card {
    display: inline-block;
    width: 45%;
    margin: 1rem 2%;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* This rule in styles.css will now apply to the <img> tag */
.founder-photo {
    width: 150px;
    height: 150px;
    /* Placeholder color can be removed once images are in place */
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover; /* Ensures the image fits well within the circle */
    display: block;
}

.founder-card h4 {
    font-size: 1.4rem;
    color: var(--color-primary);
}

/* --- Contact Box --- */
.contact-box-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0;
}

.contact-box h3 {
    color: var(--color-secondary);
    font-size: 2.2rem;
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-links .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.contact-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
    color: var(--color-white);
}

.call-btn {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.map-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: #999;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Basic Responsiveness (for smaller screens) --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav a {
        padding: 0.5rem 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-section h2 {
        font-size: 1.8rem;
    }

    .founder-card {
        width: 100%;
        margin: 1rem 0;
    }
    
    .contact-links .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}