/*
Theme Name: Maya Capsule Theme
Theme URI: https://example.com/maya-capsule-theme
Author: Your Name
Author URI: https://example.com
Description: A custom Bengali WordPress theme inspired by the Maya Capsule herbal infertility remedy website. It uses Bootstrap 5, Font Awesome, and a modern layout suitable for Elementor page builder.  
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maya-capsule-theme
Tags: bootstrap, bengali, herbal, custom, blog, e‑commerce
*/

/* Import Bengali font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;700&display=swap');

/* Global Styles */
body {
    font-family: 'Noto Sans Bengali', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: #2E7D32;
}

.navbar-brand:hover {
    color: #4CAF50;
}

/* The nav links themselves get their classes via filters in functions.php */
.navbar-nav .nav-link {
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #2E7D32;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Slightly lighter overlay so that the hero illustration remains visible */
    background-color: rgba(0, 0, 0, 0.3);
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: #2E7D32;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #4CAF50;
}

/* Section Headings */
.section-title {
    font-weight: 700;
    color: #2E7D32;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Section Background */
.section-bg {
    padding: 4rem 0;
}

/* Card Styles */
.feature-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card i {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
}

.testimonial h6 {
    font-weight: 700;
    margin-top: 1rem;
    color: #2E7D32;
}

/* Footer */
.footer {
    background-color: #2E7D32;
    color: #fff;
    padding: 2rem 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
}