/**
 * Theme Name: Ayushakti Ayurvedic Hospital
 * Theme URI: https://ayushvedic.com
 * Author: Ayushvedic
 * Author URI: https://ayushvedic.com
 * Description: A custom theme for Ayushakti Ayurvedic Hospital
 * Version: 1.0.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: ayushakti_ayurvedic_hospital
 * Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 * Requires at least: 5.0
 * Tested up to: 6.0
 * Requires PHP: 7.0
 *
 * Elementor tested up to: 3.12.0
 * Elementor Pro tested up to: 3.12.0
 */


/* 
* Note: Most styles are now located in /assets/css/custom.css
* This stylesheet is kept minimal for WordPress theme requirements.
*/

/* Reset and Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
}

a {
    color: #6b8e23;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #556b2f;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #3a5a40;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 20px;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    margin: 0;
}

.site-description {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 20px;
    position: relative;
}

.main-navigation a {
    color: #3a5a40;
    font-weight: 500;
    padding: 10px 0;
}

.main-navigation a:hover {
    color: #6b8e23;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6b8e23;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #556b2f;
    color: #fff;
}

/* Footer */
.site-footer {
    background-color: #3a5a40;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Blog */
.blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.blog-meta > div {
    margin-right: 20px;
}

/* Testimonials */
.testimonial {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }
    
    .main-navigation {
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}