/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cosmic Color Palette */
    --void-black: #0a0a0a;
    --deep-space: #1a1a2e;
    --cosmic-purple: #16213e;
    --divine-blue: #0f3460;
    --kali-red: #e94560;
    --blood-red: #8b0000;
    --sacred-gold: #d4af37;
    --mantra-orange: #ff6b35;
    --void-grey: #2d2d2d;
    --ghost-white: #f0f0f0;
    
    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body 
{
    font-family: var(--font-body);
    background: var(--void-black);
    color: var(--ghost-white);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
    width: 100%; /* ADD THIS */
    max-width: 100vw; /* ADD THIS */
    cursor: default;
}

/* Remove any cursor trail effects */
* {
    cursor: inherit;
}

.homepage {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   HERO SECTION - MAIN
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/images/hero-background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Sophisticated Multi-Layer Overlay */
.cosmic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse 600px 800px at center,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.46) 50%,
            rgba(0, 0, 0, 0.59) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(10, 10, 30, 0.5) 0%,
            rgba(5, 5, 15, 0.75) 50%,
            rgba(0, 0, 0, 0.88) 100%
        );
    z-index: 1;
}

/* Animated Twinkling Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 200px 1px rgba(255,255,255,0.8),
        200px 100px 1px rgba(255,255,255,0.6),
        300px 300px 1px rgba(255,255,255,0.9),
        400px 150px 1px rgba(255,255,255,0.7),
        500px 250px 1px rgba(255,255,255,0.8),
        150px 400px 1px rgba(255,255,255,0.6),
        350px 500px 1px rgba(255,255,255,0.9),
        250px 50px 1px rgba(255,255,255,0.7),
        450px 350px 1px rgba(255,255,255,0.8),
        550px 450px 1px rgba(255,255,255,0.6),
        650px 200px 1px rgba(255,255,255,0.9),
        750px 100px 1px rgba(255,255,255,0.7),
        850px 300px 1px rgba(255,255,255,0.8),
        950px 250px 1px rgba(255,255,255,0.6),
        1050px 150px 1px rgba(255,255,255,0.9),
        1150px 350px 1px rgba(255,255,255,0.7),
        1250px 450px 1px rgba(255,255,255,0.8),
        1350px 200px 1px rgba(255,255,255,0.6);
    animation: twinkle 4s infinite ease-in-out;
}

.stars::after {
    animation-delay: 2s;
    box-shadow: 
        180px 280px 1px rgba(255,255,255,0.7),
        280px 180px 1px rgba(255,255,255,0.8),
        380px 380px 1px rgba(255,255,255,0.6),
        480px 230px 1px rgba(255,255,255,0.9),
        580px 330px 1px rgba(255,255,255,0.7);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

/* ===================================
   OM SYMBOL - Animated & Glowing
   =================================== */
.symbol-container {
    margin-bottom: 40px;
    animation: floatOm 6s ease-in-out infinite;
}

@keyframes floatOm {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.om-symbol {
    font-size: 100px;
    color: var(--sacred-gold);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.9),
        0 0 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.2);
    animation: pulseGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.4));
    display: inline-block;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.9),
            0 0 40px rgba(212, 175, 55, 0.6);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 1),
            0 0 60px rgba(212, 175, 55, 0.8),
            0 0 90px rgba(212, 175, 55, 0.4);
    }
}

/* ===================================
   KALI TITLE - Dramatic & Bold
   =================================== */
.site-title {
    margin: 30px 0;
}

.kali-name {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 700;
    letter-spacing: 20px;
    color: var(--kali-red);
    text-shadow: 
        0 0 30px rgba(233, 69, 96, 0.9),
        0 0 60px rgba(233, 69, 96, 0.6),
        0 0 90px rgba(233, 69, 96, 0.3),
        0 5px 40px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--sacred-gold);
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 5px 30px rgba(0, 0, 0, 0.9);
    margin-top: 15px;
    animation: fadeInUp 1.4s ease-out;
}

/* ===================================
   TAGLINE - Mystical & Elegant
   =================================== */
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 3px;
    margin: 40px auto;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.95),
        0 4px 40px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.6s ease-out;
}

/* ===================================
   SCROLL INDICATOR - Animated
   =================================== */
.scroll-indicator {
    margin-top: 60px;
    animation: fadeInUp 1.8s ease-out;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--sacred-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.arrow-down {
    font-size: 32px;
    color: var(--sacred-gold);
    animation: bounce 2s infinite;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.9),
        0 5px 20px rgba(0, 0, 0, 0.9);
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */
.introduction {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, var(--void-black) 100%);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.opening-verse {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--kali-red);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    font-weight: 300;
}

.intro-paragraph {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    line-height: 2;
    color: var(--ghost-white);
    opacity: 0.9;
}

/* ===================================
   COSMIC POWERS SECTION
   =================================== */
.cosmic-powers {
    padding: var(--spacing-xl) 0;
    background: var(--void-black);
    position: relative;
}

.cosmic-powers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ghost-white);
    opacity: 0.6;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.power-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--deep-space) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.power-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(233, 69, 96, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.power-card:hover::before {
    opacity: 1;
}

.power-card:hover {
    transform: translateY(-10px);
    border-color: var(--sacred-gold);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

.power-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.power-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--kali-red);
    text-align: center;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.power-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--sacred-gold);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.power-content {
    margin-top: var(--spacing-md);
}

.power-intro {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.power-intro em {
    color: var(--sacred-gold);
    font-style: italic;
}

.power-quote {
    border-left: 3px solid var(--kali-red);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ghost-white);
    opacity: 0.9;
    background: rgba(233, 69, 96, 0.05);
    padding: var(--spacing-md);
    border-radius: 0 4px 4px 0;
}

.power-description {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 2;
}

.power-description strong {
    color: var(--sacred-gold);
    font-weight: 600;
}

.power-insight {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.05);
    border-left: 2px solid var(--sacred-gold);
    font-style: italic;
    color: var(--ghost-white);
    opacity: 0.85;
    line-height: 1.9;
}

/* ===================================
   JOURNEY INVITATION
   =================================== */
.journey-invitation {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 100%);
    text-align: center;
}

.invitation-content {
    max-width: 800px;
    margin: 0 auto;
}

.invitation-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
}

.invitation-text {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    line-height: 2;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    margin-top: var(--spacing-lg);
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--kali-red), var(--blood-red));
    color: white;
    font-family: var(--font-title);
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, var(--blood-red), var(--kali-red));
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--void-black);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-mantra {
    font-size: 2rem;
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-translation {
    font-style: italic;
    color: var(--ghost-white);
    opacity: 0.7;
    margin-bottom: var(--spacing-xs);
}

.footer-meaning {
    font-size: 0.9rem;
    color: var(--ghost-white);
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--ghost-white);
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .powers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kali-name {
        font-size: 60px;
        letter-spacing: 15px;
    }
    
    .subtitle {
        font-size: 24px;
        letter-spacing: 5px;
    }
    
    .om-symbol {
        font-size: 70px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .opening-verse {
        font-size: 1.8rem;
    }
    
    .invitation-title {
        font-size: 2.2rem;
    }
    
    .power-card {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .kali-name {
        font-size: 50px;
        letter-spacing: 10px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .om-symbol {
        font-size: 60px;
    }
    
    .mystical-aura,
    .sacred-symbols {
        display: none; /* Hide complex graphics on mobile */
    }
}

/* ===================================
   MYSTICAL VISUAL ELEMENTS
   =================================== */

/* Cosmic Energy Aura */
.mystical-aura {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.3;
}

.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--kali-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: expandRing 4s ease-out infinite;
}

.aura-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    border-color: var(--sacred-gold);
    animation-delay: 0s;
}

.aura-ring:nth-child(2) {
    width: 250px;
    height: 250px;
    border-color: var(--kali-red);
    animation-delay: 1s;
}

.aura-ring:nth-child(3) {
    width: 300px;
    height: 300px;
    border-color: var(--sacred-gold);
    animation-delay: 2s;
}

@keyframes expandRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Sacred Trishul Symbol */
.trishul-symbol {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 180px;
    height: 300px;
    z-index: 4;
    opacity: 0.25;
    filter: drop-shadow(0 0 20px var(--sacred-gold));
    animation: trishulGlow 5s ease-in-out infinite;
}

.trishul-symbol::before {
    content: '🔱';
    font-size: 150px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--sacred-gold);
}

@keyframes trishulGlow {
    0%, 100% {
        opacity: 0.2;
        filter: drop-shadow(0 0 20px var(--sacred-gold));
    }
    50% {
        opacity: 0.4;
        filter: drop-shadow(0 0 40px var(--sacred-gold));
    }
}

/* Floating Energy Orbs */
.energy-orbs {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sacred-gold), transparent);
    animation: floatOrb 8s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 30%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 50%;
    right: 15%;
    animation-duration: 9s;
    animation-delay: 1s;
    background: radial-gradient(circle, var(--kali-red), transparent);
}

.orb:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 70%;
    right: 25%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.orb:nth-child(4) {
    width: 18px;
    height: 18px;
    top: 35%;
    right: 40%;
    animation-duration: 8s;
    animation-delay: 1.5s;
    background: radial-gradient(circle, var(--kali-red), transparent);
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(-50px, -80px);
        opacity: 0.7;
    }
    50% {
        transform: translate(30px, -150px);
        opacity: 0.5;
    }
    75% {
        transform: translate(-80px, -100px);
        opacity: 0.8;
    }
}

/* Lotus Petals Pattern */
.lotus-pattern {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 200px;
    height: 200px;
    z-index: 3;
    opacity: 0.15;
    animation: rotateLotus 40s linear infinite;
}

.lotus-pattern::before {
    content: '🪷';
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px var(--sacred-gold));
}

@keyframes rotateLotus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sacred Geometry Grid */
.sacred-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    opacity: 0.08;
    background-image: 
        linear-gradient(var(--sacred-gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--sacred-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.12; }
}

/* Cosmic Dust Particles */
.cosmic-dust {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: radial-gradient(2px 2px at 20% 30%, var(--sacred-gold), transparent),
                      radial-gradient(2px 2px at 60% 70%, var(--kali-red), transparent),
                      radial-gradient(1px 1px at 50% 50%, white, transparent),
                      radial-gradient(1px 1px at 80% 10%, var(--sacred-gold), transparent);
    background-size: 200% 200%;
    background-position: 50% 50%;
    animation: dustFloat 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes dustFloat {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.2;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.4;
    }
}
/* ===================================
   ALTERNATIVE: THIRD EYE ON RIGHT SIDE
   Replace the .third-eye-center section in style.css with this
   if you prefer the eye on the right instead of center
   =================================== */

.third-eye-center {
    position: absolute;
    top: 30%;
    right: 15%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 5;
    pointer-events: none;
}

/* Rest of the Third Eye styling remains the same */
.eye-outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 2px solid var(--sacred-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateClockwise 40s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.eye-middle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px dashed var(--kali-red);
    border-radius: 50%;
    opacity: 0.25;
    animation: rotateCounterClockwise 30s linear infinite;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.eye-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(233, 69, 96, 0.2) 40%,
        transparent 70%
    );
    animation: pulseEyeGlow 4s ease-in-out infinite;
}

.eye-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.9))
            drop-shadow(0 0 20px rgba(233, 69, 96, 0.6));
    animation: eyeBlink 8s ease-in-out infinite;
    z-index: 10;
}

/* Mobile - hide on right, show smaller in center */
@media (max-width: 768px) {
    .third-eye-center {
        top: 50%;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        opacity: 0.5;
    }
}
/* ===================================
   SACRED TEACHINGS SECTION (Blog Posts)
   Add this to your existing style.css
   =================================== */

.sacred-teachings {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 50%, var(--void-black) 100%);
    position: relative;
}

.sacred-teachings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.teaching-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.teaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.teaching-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.teaching-card:hover::before {
    opacity: 1;
}

.teaching-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.teaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.teaching-card:hover .teaching-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.teaching-content {
    padding: var(--spacing-lg);
}

.teaching-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.teaching-title a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.teaching-title a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.teaching-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--sacred-gold);
    opacity: 0.8;
}

.meta-date {
    font-style: italic;
}

.teaching-excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.teaching-excerpt p {
    margin-bottom: var(--spacing-sm);
}

.read-more-link {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--kali-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--sacred-gold);
    transform: translateX(5px);
}

.read-more-link:hover::after {
    width: 100%;
}

.view-all-teachings {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.no-teachings {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-teachings-message {
    font-size: 1.3rem;
    color: var(--ghost-white);
    opacity: 0.7;
    font-style: italic;
}

/* ===================================
   HEADER STYLES
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.om-mini {
    font-size: 28px;
    color: var(--sacred-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.brand-name {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--kali-red);
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.4);
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--ghost-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--sacred-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--sacred-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav-list {
    list-style: none;
    padding: var(--spacing-md);
}

.mobile-nav-link {
    display: block;
    padding: var(--spacing-sm) 0;
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.mobile-nav-link:hover {
    color: var(--sacred-gold);
    padding-left: var(--spacing-sm);
}

/* Mobile Navigation Active State */
.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN - Teachings
   =================================== */
@media (max-width: 1024px) {
    .teachings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-md);
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .teachings-grid 
    {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .teaching-card {
        margin: 0 auto;
        max-width: 100%;;
    }
    .teaching-image {
        height: 220px; /* Slightly taller for mobile */
    }
    .teaching-content {
        padding: var(--spacing-md);
    }
    .header-container {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .teaching-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .teaching-excerpt {
        font-size: 1rem;
        line-height: 1.7;
    }
    .brand-name {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .om-mini {
        font-size: 24px;
    }
}

@media (max-width: 480px) 
{   .container 
    {
        padding: 0 var(--spacing-sm); /* Tighter padding */
    } 
    .teaching-image 
    {
        height: 200px;
    }
    .teachings-grid 
    {
        gap: var(--spacing-sm);
    }
    .teaching-image 
    {
        height: 200px;
    }
    .teaching-content 
    {
         padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .teaching-title {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }
    .teaching-excerpt {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }
    .section-title {
        font-size: 2rem;
    }
    .read-more-link {
        font-size: 0.85rem;
    }
}

/* Ensure body has top padding for fixed header */
body {
    padding-top: 80px;
}

body.homepage {
    padding-top: 0;
}
/* ===================================
   SINGLE POST PAGE STYLES
   Add this to your existing style.css or include as separate file
   =================================== */

.single-post {
    background: var(--void-black);
}

.post-article {
    padding-bottom: var(--spacing-xl);
}

/* Post Header */
.post-header {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, var(--deep-space) 0%, var(--void-black) 100%);
}

.post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.post-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.container-small {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.post-main-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--ghost-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    font-size: 1rem;
    color: var(--sacred-gold);
    opacity: 0.9;
}

.post-date-full,
.post-author {
    font-style: italic;
}

/* Post Body */
.post-body {
    padding: var(--spacing-xl) 0;
    background: var(--void-black);
}

.post-content-wrapper {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.post-content-wrapper p {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.post-content-wrapper h2,
.post-content-wrapper h3,
.post-content-wrapper h4 {
    font-family: var(--font-title);
    color: var(--sacred-gold);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.post-content-wrapper h2 {
    font-size: 2.2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: var(--spacing-sm);
}

.post-content-wrapper h3 {
    font-size: 1.8rem;
}

.post-content-wrapper h4 {
    font-size: 1.4rem;
}

.post-content-wrapper blockquote {
    border-left: 4px solid var(--kali-red);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--ghost-white);
    background: rgba(233, 69, 96, 0.05);
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    border-radius: 0 8px 8px 0;
}

.post-content-wrapper blockquote p:last-child {
    margin-bottom: 0;
}

.post-content-wrapper ul,
.post-content-wrapper ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.post-content-wrapper li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.9;
}

.post-content-wrapper a {
    color: var(--kali-red);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.post-content-wrapper a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-lg) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.post-content-wrapper code {
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--sacred-gold);
    font-size: 0.95em;
}

.post-content-wrapper pre {
    background: var(--void-grey);
    padding: var(--spacing-md);
    border-radius: 8px;
    overflow-x: auto;
    margin: var(--spacing-md) 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.post-content-wrapper pre code {
    background: none;
    padding: 0;
}

/* Post Footer */
.post-footer {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.post-categories {
    margin-bottom: var(--spacing-md);
}

.categories-label {
    font-family: var(--font-title);
    color: var(--sacred-gold);
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

.category-tag {
    color: var(--kali-red);
    text-decoration: none;
    margin-right: var(--spacing-xs);
    transition: all 0.3s ease;
}

.category-tag:hover {
    color: var(--sacred-gold);
}

.post-navigation {
    margin-top: var(--spacing-md);
}

.back-to-blog {
    display: inline-block;
    font-family: var(--font-title);
    color: var(--sacred-gold);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) 0;
}

.back-to-blog:hover {
    color: var(--kali-red);
    transform: translateX(-5px);
}

/* Responsive Design for Post */
@media (max-width: 768px) {
    .post-header {
        min-height: 400px;
    }
    
    .post-main-title {
        font-size: 2rem;
    }
    
    .post-content-wrapper {
        font-size: 1.1rem;
    }
    
    .post-content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .post-content-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .post-content-wrapper blockquote {
        font-size: 1.1rem;
        padding-left: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .post-header {
        min-height: 350px;
    }
    
    .post-main-title {
        font-size: 1.8rem;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}
/* ===================================
   BLOG LISTING PAGE STYLES
   Add this to your existing style.css
   =================================== */

.blog-page {
    background: var(--void-black);
}

/* Blog Page Header */
.blog-page-header {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--cosmic-purple) 50%, var(--void-black) 100%);
    text-align: center;
    position: relative;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title-main {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    position: relative;
}

.page-subtitle-main {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--ghost-white);
    opacity: 0.8;
    font-style: italic;
    position: relative;
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: var(--spacing-xl) 0;
    background: var(--void-black);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-post-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.blog-post-content {
    padding: var(--spacing-lg);
}

.blog-post-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.blog-post-title a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.blog-post-meta {
    margin-bottom: var(--spacing-md);
}

.blog-post-date {
    font-size: 0.9rem;
    color: var(--sacred-gold);
    font-style: italic;
    opacity: 0.8;
}

.blog-post-excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.blog-post-excerpt p {
    margin-bottom: var(--spacing-sm);
}

.blog-read-more {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--kali-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: var(--sacred-gold);
    transform: translateX(5px);
}

.blog-read-more:hover::after {
    width: 100%;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.pagination-btn {
    font-family: var(--font-title);
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--void-grey), var(--cosmic-purple));
    color: var(--ghost-white);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.pagination-btn:hover {
    background: linear-gradient(135deg, var(--kali-red), var(--blood-red));
    border-color: var(--kali-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.pagination-info {
    font-family: var(--font-body);
    color: var(--sacred-gold);
    font-size: 1.1rem;
    padding: 0 var(--spacing-md);
}

/* No Posts Message */
.no-posts-message {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-posts-message p {
    font-size: 1.3rem;
    color: var(--ghost-white);
    opacity: 0.7;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-page-header {
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
    }
    
    .page-title-main {
        font-size: 2.5rem;
    }
    
    .page-subtitle-main {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: var(--spacing-md);
    }
    
    .blog-post-title {
        font-size: 1.3rem;
    }
    
    .pagination-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .pagination-info {
        font-size: 1rem;
    }
}
/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cosmic Color Palette */
    --void-black: #0a0a0a;
    --deep-space: #1a1a2e;
    --cosmic-purple: #16213e;
    --divine-blue: #0f3460;
    --kali-red: #e94560;
    --blood-red: #8b0000;
    --sacred-gold: #d4af37;
    --mantra-orange: #ff6b35;
    --void-grey: #2d2d2d;
    --ghost-white: #f0f0f0;
    
    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: var(--font-body);
    background: var(--void-black);
    color: var(--ghost-white);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
}

.homepage {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   NAVIGATION HEADER - MYSTICAL THEME
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.om-mini {
    font-size: 22px;
    color: var(--sacred-gold);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    animation: pulseOm 3s ease-in-out infinite;
}

@keyframes pulseOm {
    0%, 100% { 
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    }
    50% { 
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
    }
}

.brand-name {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--kali-red);
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.4);
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ghost-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 0;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--sacred-gold);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--sacred-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-list {
    list-style: none;
    padding: var(--spacing-md);
}

.mobile-nav-link {
    display: block;
    padding: var(--spacing-sm) 0;
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.mobile-nav-link:hover {
    color: var(--sacred-gold);
    padding-left: var(--spacing-sm);
}

/* ===================================
   HERO SECTION - MAIN
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/images/hero-background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Sophisticated Multi-Layer Overlay */
.cosmic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse 600px 800px at center,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.46) 50%,
            rgba(0, 0, 0, 0.59) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(10, 10, 30, 0.5) 0%,
            rgba(5, 5, 15, 0.75) 50%,
            rgba(0, 0, 0, 0.88) 100%
        );
    z-index: 1;
}

/* Animated Twinkling Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 200px 1px rgba(255,255,255,0.8),
        200px 100px 1px rgba(255,255,255,0.6),
        300px 300px 1px rgba(255,255,255,0.9),
        400px 150px 1px rgba(255,255,255,0.7),
        500px 250px 1px rgba(255,255,255,0.8),
        150px 400px 1px rgba(255,255,255,0.6),
        350px 500px 1px rgba(255,255,255,0.9),
        250px 50px 1px rgba(255,255,255,0.7),
        450px 350px 1px rgba(255,255,255,0.8),
        550px 450px 1px rgba(255,255,255,0.6),
        650px 200px 1px rgba(255,255,255,0.9),
        750px 100px 1px rgba(255,255,255,0.7),
        850px 300px 1px rgba(255,255,255,0.8),
        950px 250px 1px rgba(255,255,255,0.6),
        1050px 150px 1px rgba(255,255,255,0.9),
        1150px 350px 1px rgba(255,255,255,0.7),
        1250px 450px 1px rgba(255,255,255,0.8),
        1350px 200px 1px rgba(255,255,255,0.6);
    animation: twinkle 4s infinite ease-in-out;
}

.stars::after {
    animation-delay: 2s;
    box-shadow: 
        180px 280px 1px rgba(255,255,255,0.7),
        280px 180px 1px rgba(255,255,255,0.8),
        380px 380px 1px rgba(255,255,255,0.6),
        480px 230px 1px rgba(255,255,255,0.9),
        580px 330px 1px rgba(255,255,255,0.7);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

/* ===================================
   OM SYMBOL - Animated & Glowing
   =================================== */
.symbol-container {
    margin-bottom: 40px;
    animation: floatOm 6s ease-in-out infinite;
}

@keyframes floatOm {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.om-symbol {
    font-size: 100px;
    color: var(--sacred-gold);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.9),
        0 0 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.2);
    animation: pulseGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.4));
    display: inline-block;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.9),
            0 0 40px rgba(212, 175, 55, 0.6);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 1),
            0 0 60px rgba(212, 175, 55, 0.8),
            0 0 90px rgba(212, 175, 55, 0.4);
    }
}

/* ===================================
   KALI TITLE - Dramatic & Bold
   =================================== */
.site-title {
    margin: 30px 0;
}

.kali-name {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 700;
    letter-spacing: 20px;
    color: var(--kali-red);
    text-shadow: 
        0 0 30px rgba(233, 69, 96, 0.9),
        0 0 60px rgba(233, 69, 96, 0.6),
        0 0 90px rgba(233, 69, 96, 0.3),
        0 5px 40px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--sacred-gold);
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 5px 30px rgba(0, 0, 0, 0.9);
    margin-top: 15px;
    animation: fadeInUp 1.4s ease-out;
}

/* ===================================
   TAGLINE - Mystical & Elegant
   =================================== */
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 3px;
    margin: 40px auto;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.95),
        0 4px 40px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.6s ease-out;
}

/* ===================================
   SCROLL INDICATOR - Animated
   =================================== */
.scroll-indicator {
    margin-top: 60px;
    animation: fadeInUp 1.8s ease-out;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--sacred-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.arrow-down {
    font-size: 32px;
    color: var(--sacred-gold);
    animation: bounce 2s infinite;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.9),
        0 5px 20px rgba(0, 0, 0, 0.9);
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===================================
   SACRED TEACHINGS SECTION (Blog)
   =================================== */
.sacred-teachings {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 50%, var(--void-black) 100%);
    position: relative;
}

.sacred-teachings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ghost-white);
    opacity: 0.6;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.teaching-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.teaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.teaching-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.teaching-card:hover::before {
    opacity: 1;
}

.teaching-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--void-grey);
}

.teaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.teaching-card:hover .teaching-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.teaching-content {
    padding: var(--spacing-lg);
}

.teaching-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.teaching-title a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.teaching-title a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.teaching-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--sacred-gold);
    opacity: 0.8;
}

.meta-date {
    font-style: italic;
}

.teaching-excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.teaching-excerpt p {
    margin-bottom: var(--spacing-sm);
}

.read-more-link {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--kali-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: var(--sacred-gold);
    transform: translateX(5px);
}

.read-more-link:hover::after {
    width: 100%;
}

.view-all-teachings {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.no-teachings {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-teachings-message {
    font-size: 1.3rem;
    color: var(--ghost-white);
    opacity: 0.7;
    font-style: italic;
}

/* ===================================
   MYSTICAL VISUAL ELEMENTS
   =================================== */
.third-eye-center {
    position: absolute;
    top: 30%;
    right: 15%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 5;
    pointer-events: none;
}

.eye-outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 2px solid var(--sacred-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateClockwise 40s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes rotateClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.eye-middle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px dashed var(--kali-red);
    border-radius: 50%;
    opacity: 0.25;
    animation: rotateCounterClockwise 30s linear infinite;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

@keyframes rotateCounterClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.eye-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(233, 69, 96, 0.2) 40%,
        transparent 70%
    );
    animation: pulseEyeGlow 4s ease-in-out infinite;
}

@keyframes pulseEyeGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.eye-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.9))
            drop-shadow(0 0 20px rgba(233, 69, 96, 0.6));
    animation: eyeBlink 8s ease-in-out infinite;
    z-index: 10;
}

@keyframes eyeBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

/* Energy Orbs */
.energy-orbs {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sacred-gold), transparent);
    animation: floatOrb 8s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    right: 30%;
    animation-duration: 7s;
}

.orb:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 50%;
    right: 15%;
    animation-duration: 9s;
    animation-delay: 1s;
    background: radial-gradient(circle, var(--kali-red), transparent);
}

.orb:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 70%;
    right: 25%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.orb:nth-child(4) {
    width: 18px;
    height: 18px;
    top: 35%;
    right: 40%;
    animation-duration: 8s;
    animation-delay: 1.5s;
    background: radial-gradient(circle, var(--kali-red), transparent);
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(-50px, -80px);
        opacity: 0.7;
    }
    50% {
        transform: translate(30px, -150px);
        opacity: 0.5;
    }
    75% {
        transform: translate(-80px, -100px);
        opacity: 0.8;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-page-header {
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--cosmic-purple) 50%, var(--void-black) 100%);
    text-align: center;
    position: relative;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--void-black);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-quote {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.3), rgba(26, 26, 46, 0.3));
    border-left: 3px solid var(--sacred-gold);
    border-radius: 8px;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--sacred-gold);
    line-height: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.contact-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--kali-red);
    margin-bottom: var(--spacing-sm);
}

.contact-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Form */
.contact-form-section {
    margin: var(--spacing-xl) 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: var(--spacing-xl);
}

.form-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--sacred-gold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.contact-form {
    margin-top: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--ghost-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--kali-red);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--kali-red), var(--blood-red));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, var(--blood-red), var(--kali-red));
}

.form-note {
    margin-top: var(--spacing-md);
    text-align: center;
}

.form-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Alternative Contact */
.alternative-contact {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.alt-contact-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--sacred-gold);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.alt-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.3), rgba(26, 26, 46, 0.3));
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.alt-contact-item:hover {
    border-color: var(--kali-red);
    transform: translateX(5px);
}

.alt-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alt-content h4 {
    font-family: var(--font-title);
    color: var(--sacred-gold);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.alt-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.alt-content a {
    color: var(--kali-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.alt-content a:hover {
    color: var(--sacred-gold);
}

/* Responsive - Contact Page */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    .alt-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

/* ===================================
   HORIZONTAL SCROLLING CAROUSEL
   =================================== */

.blog-carousel-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 50%, var(--void-black) 100%);
    position: relative;
    overflow: hidden;
}

.blog-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-lg);
    will-change: transform;
    padding: 0 var(--spacing-lg);
}

.carousel-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.carousel-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.carousel-card:hover::before {
    opacity: 1;
}

.carousel-card-inner {
    position: relative;
    z-index: 2;
}

.carousel-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--void-grey);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card:hover .carousel-image img {
    transform: scale(1.1);
}

.carousel-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--deep-space));
    position: relative;
}

.placeholder-om {
    font-size: 80px;
    color: var(--sacred-gold);
    opacity: 0.3;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.carousel-content {
    padding: var(--spacing-lg);
}

.carousel-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.carousel-title a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.carousel-title a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.carousel-meta {
    margin-bottom: var(--spacing-md);
}

.carousel-date {
    font-size: 0.9rem;
    color: var(--sacred-gold);
    font-style: italic;
    opacity: 0.8;
}

.carousel-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.carousel-read-more {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: var(--kali-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.carousel-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.carousel-read-more:hover {
    color: var(--sacred-gold);
    transform: translateX(5px);
}

.carousel-read-more:hover::after {
    width: 100%;
}

.carousel-controls {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background: linear-gradient(135deg, var(--void-grey), var(--cosmic-purple));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--sacred-gold);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--kali-red), var(--blood-red));
    border-color: var(--kali-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

/* Blog Page Header */
.blog-page {
    background: var(--void-black);
}

.blog-page-header {
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--cosmic-purple) 50%, var(--void-black) 100%);
    text-align: center;
    position: relative;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title-main {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    position: relative;
}

.page-subtitle-main {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--ghost-white);
    opacity: 0.8;
    font-style: italic;
    position: relative;
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: var(--spacing-xl) 0;
    background: var(--void-black);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-post-card {
    background: linear-gradient(135deg, var(--void-grey) 0%, var(--cosmic-purple) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--kali-red);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--void-grey);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.blog-post-content {
    padding: var(--spacing-lg);
}

.blog-post-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.blog-post-title a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--sacred-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.blog-post-meta {
    margin-bottom: var(--spacing-md);
}

.blog-post-date {
    font-size: 0.9rem;
    color: var(--sacred-gold);
    font-style: italic;
    opacity: 0.8;
}

.blog-post-excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.blog-read-more {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--kali-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kali-red), var(--sacred-gold));
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: var(--sacred-gold);
    transform: translateX(5px);
}

.blog-read-more:hover::after {
    width: 100%;
}

.no-posts-message {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-posts-message p {
    font-size: 1.3rem;
    color: var(--ghost-white);
    opacity: 0.7;
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--void-black);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-mantra {
    font-size: 2rem;
    color: var(--sacred-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-translation {
    font-style: italic;
    color: var(--ghost-white);
    opacity: 0.7;
    margin-bottom: var(--spacing-xs);
}

.footer-meaning {
    font-size: 0.9rem;
    color: var(--ghost-white);
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--ghost-white);
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .teachings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-md);
    }
    
    .carousel-card {
        width: 340px;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 55px;
    }
    
    body.homepage {
        padding-top: 0;
    }
    
    .header-container {
        padding: 0.6rem var(--spacing-md);
    }
    
    .brand-name {
        font-size: 18px;
        letter-spacing: 4px;
    }
    
    .om-mini {
        font-size: 20px;
    }
    
    .kali-name {
        font-size: 60px;
        letter-spacing: 15px;
    }
    
    .subtitle {
        font-size: 24px;
        letter-spacing: 5px;
    }
    
    .om-symbol {
        font-size: 70px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .teachings-grid {
        grid-template-columns: 1fr;
    }
    
    .teaching-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .third-eye-center {
        opacity: 0.3;
        width: 200px;
        height: 200px;
    }
    
    .carousel-card {
        width: 300px;
    }
    
    .carousel-image {
        height: 200px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .kali-name {
        font-size: 50px;
        letter-spacing: 10px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .om-symbol {
        font-size: 60px;
    }
    
    .teaching-image {
        height: 200px;
    }
    
    .teaching-content {
        padding: var(--spacing-md);
    }
    
    .teaching-title {
        font-size: 1.3rem;
    }
    
    .carousel-card {
        width: 280px;
    }
    
    .carousel-content {
        padding: var(--spacing-md);
    }
    
    .carousel-title {
        font-size: 1.3rem;
    }
}

/* Ensure body padding for fixed header */
body {
    padding-top: 60px;
}

body.homepage {
    padding-top: 0;
}
:root {
    /* Colors */
    --void-black: #0a0a0a;
    --void-grey: #151515;
    --deep-space: #111116;
    --cosmic-purple: #2a1b3d;
    --kali-red: #d32f2f;
    --blood-red: #8a0000;
    --sacred-gold: #d4af37;
    --ghost-white: #f0f0f0;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 60px;

    /* Fonts */
    --font-title: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}
/* ========================================
   MOBILE RESPONSIVE FIX - TEACHINGS GRID
   ======================================== */

@media screen and (max-width: 768px) {
    .teachings-grid,
    .blog-posts-grid,
    .carousel-track {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .teaching-card,
    .blog-post-card,
    .carousel-card {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .teaching-image,
    .blog-post-image,
    .carousel-image {
        height: 200px !important;
    }
    
    .teaching-content,
    .blog-post-content,
    .carousel-content {
        padding: 20px !important;
    }
    
    .teaching-title,
    .blog-post-title,
    .carousel-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    .teaching-excerpt,
    .blog-post-excerpt,
    .carousel-excerpt {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .teachings-grid,
    .blog-posts-grid {
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .teaching-card,
    .blog-post-card {
        max-width: 100% !important;
    }
    
    .teaching-image,
    .blog-post-image {
        height: 180px !important;
    }
    
    .teaching-content,
    .blog-post-content {
        padding: 15px !important;
    }
    
    .teaching-title,
    .blog-post-title {
        font-size: 1.2rem !important;
    }
    
    .teaching-excerpt,
    .blog-post-excerpt {
        font-size: 0.95rem !important;
    }
    
    .read-more-link,
    .blog-read-more {
        font-size: 0.85rem !important;
    }
}

/* Fix horizontal scroll */
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}