/*
Theme Name: Saarathi Visual Identity Child
Theme URI: https://saarathi.org
Description: A contemplative child theme for Saarathi - life-giving conversations
Version: 1.0.0
Author: Saarathi
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saarathi-child
Domain Path: /languages
Template: twentytwentyfive
*/

/* Import parent theme styles */
@import url('../twentytwentyfive/style.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500;600&display=swap');

:root {
    --color-primary: #C85A3A;
    --color-secondary: #A8D5BA;
    --color-dark: #2D5A4A;
    --color-light: #F5F0E8;
    --color-text: #3D3D3D;
    --color-border: #E8DDD0;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.75rem;
    font-weight: 400;
}

p {
    line-height: 1.8;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

/* Header & Navigation */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 200px;
}

.site-logo-mark {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.site-logo span {
    display: flex;
    flex-direction: column;
}

.site-logo strong {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.site-logo small {
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    font-family: var(--font-sans);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    list-style: none;
}

.desktop-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item > a {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-dark);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: var(--color-primary);
}

/* Main Content */
.site-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F0E8 0%, #FFF8F0 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-attributes {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-attribute {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(200, 90, 58, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.hero-attribute::before {
    content: '○';
    color: var(--color-primary);
    font-weight: bold;
}

.hero-carousel {
    position: relative;
    display: flex;
    justify-content: center;
}

.carousel-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--color-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--color-primary);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.cta-button.secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.card p {
    color: #666;
    font-size: 0.95rem;
}

/* Dark Sections */
.section-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.section-dark .section-label {
    color: var(--color-secondary);
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header-inner {
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/* WordPress Specific */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.under-construction {
    text-align: center;
    padding: 4rem;
    background-color: #F5F0E8;
    border-radius: 12px;
    margin: 4rem 0;
}

.under-construction h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.under-construction p {
    color: #666;
    font-size: 1.1rem;
}
