/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pink and Purple Palette */
    --primary-pink: #E91E63;
    --deep-pink: #C2185B;
    --light-pink: #F8BBD0;
    --primary-purple: #9C27B0;
    --deep-purple: #6A1B9A;
    --lavender: #E1BEE7;
    --rose-gold: #B76E79;
    
    /* Neutral Colors */
    --cream: #FFF8F0;
    --warm-white: #FFFBF5;
    --light-beige: #F5F1E8;
    --dark-text: #2C1810;
    --mid-text: #5D4E37;
    --soft-text: #8B7355;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    --gradient-soft: linear-gradient(135deg, var(--light-pink), var(--lavender));
    --gradient-overlay: linear-gradient(180deg, rgba(255,251,245,0) 0%, rgba(255,251,245,0.9) 100%);
}

body {
    font-family: 'Lora', serif;
    background: var(--cream);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Lotus Petals */
.floating-petals {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(ellipse at center, var(--light-pink), transparent);
    border-radius: 50% 0 50% 0;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.petal:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.petal:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.petal:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.petal:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 25s;
}

.petal:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 19s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.9rem;
    color: var(--mid-text);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('hero-bg.jpg') center/cover,
                linear-gradient(135deg, rgba(248, 187, 208, 0.2), rgba(225, 190, 231, 0.2));
    background-blend-mode: overlay;
    padding: 8rem 2rem 4rem;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--primary-pink) 0px, var(--primary-pink) 2px, transparent 2px, transparent 10px),
        repeating-linear-gradient(-45deg, var(--primary-purple) 0px, var(--primary-purple) 2px, transparent 2px, transparent 10px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--mid-text);
}

.shloka {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-pink);
    background: rgba(248, 187, 208, 0.1);
    backdrop-filter: blur(5px);
}

.sanskrit {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.translation {
    font-style: italic;
    color: var(--mid-text);
    font-size: 1rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--mid-text);
    margin: 2rem 0;
    max-width: 600px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
}

/* Fade in up animation */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    font-family: 'Noto Sans Devanagari', sans-serif;
    text-align: center;
    font-size: 1.3rem;
    color: var(--mid-text);
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 0;
    background: var(--warm-white);
    position: relative;
}

.philosophy::before {
    content: '❀';
    position: absolute;
    top: 5%;
    right: 10%;
    font-size: 6rem;
    opacity: 0.05;
    color: var(--primary-pink);
}

.philosophy::after {
    content: '✿';
    position: absolute;
    bottom: 10%;
    left: 8%;
    font-size: 5rem;
    opacity: 0.05;
    color: var(--primary-purple);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

.philosophy-card {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    margin-bottom: 1rem;
}

.lotus-icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

.hindi-small {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-pink);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--soft-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.philosophy-verse {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(248, 187, 208, 0.05);
    border-radius: 15px;
}

.philosophy-verse .sanskrit {
    font-size: 1.4rem;
}

.verse-reference {
    color: var(--soft-text);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pandavas Section */
.pandavas {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
}

.pandava-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    margin: 5rem 0;
    align-items: center;
}

.pandava-card.reverse {
    grid-template-columns: 1fr 450px;
}

.pandava-card.reverse .pandava-content {
    order: 1;
}

.pandava-card.reverse .pandava-image {
    order: 2;
}

.pandava-img-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
}

.pandava-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 99, 0.1) 100%);
    pointer-events: none;
}

.pandava-content {
    padding: 2rem;
}

.pandava-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--light-pink);
    font-weight: 700;
    line-height: 1;
    display: block;
}

.pandava-name {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 1rem 0;
}

.name-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.name-english {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--mid-text);
    font-weight: 600;
}

.pandava-archetype {
    font-size: 1.1rem;
    color: var(--soft-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

.pandava-shloka {
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 3px solid var(--primary-pink);
    background: rgba(248, 187, 208, 0.08);
}

.pandava-shloka .sanskrit {
    font-size: 1.05rem;
}

.pandava-traits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trait h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trait p {
    color: var(--mid-text);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--warm-white);
    position: relative;
}

.services::before {
    content: '🕉';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.03;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro .sanskrit {
    font-size: 1.3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card.featured {
    border: 2px solid var(--primary-pink);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lotus-bloom {
    font-size: 3rem;
    color: var(--primary-pink);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    text-align: center;
    font-weight: 600;
}

.service-desc {
    text-align: center;
    color: var(--soft-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--mid-text);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: 700;
}

.service-button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

.main-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

/* Final Section */
.final-section {
    padding: 6rem 0;
    background: var(--cream);
}

.final-verse {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.final-verse .sanskrit {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(248, 187, 208, 0.2), rgba(225, 190, 231, 0.2));
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: var(--mid-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--soft-text);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--mid-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
    color: var(--soft-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .philosophy-card:nth-child(4),
    .philosophy-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .pandava-card,
    .pandava-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .pandava-content,
    .pandava-image {
        order: 0 !important;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pandava-img-container {
        height: 450px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-button,
    .service-button,
    .floating-petals {
        display: none;
    }
}