/* ========================================
   AANTRA MARGA - THE INNER PATH
   Premium Meditation Website Styles
   ======================================== */

/* ========================================
   CSS RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #faf9f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 1024px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   CONTAINERS & LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 1.25rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4a4a;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8b6f47;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8b6f47;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6f5536;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #8b6f47;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid #8b6f47;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #8b6f47;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    margin-top: 5rem;
    padding: 6rem 0 4rem;
    background-color: #faf9f7;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    padding: 3rem 0;
    text-align: center;
    background-color: #f5f3f0;
}

.social-proof-text {
    font-size: 0.875rem;
    color: #6a6a6a;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.user-avatars {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8dfd3 0%, #c9baa8 100%);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 6rem 0;
    background-color: #faf9f7;
}

.section-alt {
    background-color: #f5f3f0;
}

.section-dark {
    background-color: #2a2838;
    color: #e8e6e3;
}

.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

.section-dark .paragraph,
.section-dark .paragraph-large {
    color: #d1cfc9;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-content {
    max-width: 100%;
}

.paragraph-large {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.paragraph {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 1.75rem;
}

.subsection-title {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-dark .subsection-title {
    color: #ffffff;
}

/* ========================================
   MEDITATION IMAGE
   ======================================== */
.meditation-image {
    margin: 3rem 0;
    text-align: center;
}

.meditation-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ========================================
   CHAKRA PREVIEW GRID
   ======================================== */
.chakra-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.chakra-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chakra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.chakra-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.chakra-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.chakra-card p {
    font-size: 0.9375rem;
    color: #6a6a6a;
    margin-bottom: 0;
}

/* ========================================
   CTA BOX
   ======================================== */
.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8dfd3 100%);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* ========================================
   CHAKRAS PAGE
   ======================================== */
.chakras-hero {
    margin-top: 5rem;
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8dfd3 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   CHAKRA SECTIONS
   ======================================== */
.chakra-section {
    padding: 5rem 0;
    transition: background-color 0.5s ease;
}

.chakra-root { background-color: #faf9f7; }
.chakra-sacral { background-color: #fef6f0; }
.chakra-solar { background-color: #fffbf0; }
.chakra-heart { background-color: #f0faf5; }
.chakra-throat { background-color: #f0f5fa; }
.chakra-third-eye { background-color: #f5f0fa; }
.chakra-crown { background-color: #faf0fa; }

.chakra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chakra-content.reverse {
    direction: rtl;
}

.chakra-content.reverse > * {
    direction: ltr;
}

.chakra-name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.chakra-subtitle {
    font-size: 1.5rem;
    color: #6a6a6a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.chakra-meta {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.chakra-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ========================================
   KUNDALINI IMAGE
   ======================================== */
.kundalini-image {
    margin: 2rem 0 3rem;
    text-align: center;
}

.kundalini-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #1a1a1a;
    color: #b8b8b8;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #888;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: #888;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8b6f47;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.875rem;
    color: #666;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content,
    .chakra-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chakra-content.reverse {
        direction: ltr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .chakra-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chakra-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .paragraph-large {
        font-size: 1.0625rem;
    }
    
    .container,
    .container-narrow {
        padding: 0 1.25rem;
    }
}
