/* 
   Ashtanga Healthcare - Botanical Luxury Design System
   Color Palette: Forest Green, Earthy Brown, Parchment White
*/

:root {
    --forest-green: #2D5A27;
    --leaf-green: #4A7C44;
    --earthy-brown: #5C4033;
    --parchment: #F4F1EA;
    --white: #FFFFFF;
    --dark-slate: #1B2B1B;
    --soft-gray: #E0DED7;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

h1, h2, h3, .brand {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--forest-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--forest-green);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--leaf-green);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(27, 43, 27, 0.6), rgba(27, 43, 27, 0.6)), url('../../assets/img/hero-bg.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
.main-footer {
    background: var(--parchment);
    padding: 60px 0 20px;
    margin-top: 50px;
    border-top: 1px solid var(--soft-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark-slate);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--forest-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--soft-gray);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
