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

:root {
    --primary-color: #C8A2C8;
    --text-color: #333;
    --background-color: #fff;
    --card-background: #fafafa;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('assets/lotus-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0; /* Remove margin since we want full height */
}

.hero.lavender-bg {
    min-height: 50vh; /* Keep about page hero at half height */
    margin-top: 60px; /* Keep navbar margin for about page */
    background: linear-gradient(rgba(200, 162, 200, 0.1), rgba(200, 162, 200, 0.2)), url('assets/lavendar-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero.lavender-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 162, 200, 0.3);
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.about-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

.session-info {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.session-content {
    max-width: 900px;
    margin: 0 auto;
}

.session-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #333;
}

.support-areas {
    margin: 3rem 0;
}

.support-areas p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #f8f5ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(200, 162, 200, 0.2);
}

.support-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.support-item span {
    font-size: 1.1rem;
    color: #444;
}

.session-result {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 3rem;
    color: #333;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .session-info {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.wisdom-quote {
    margin: 2rem auto;
    max-width: 600px;
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

.wisdom-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--primary-color);
}

/* Practitioner Section */
.practitioner-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.practitioner-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.practitioner-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.practitioner-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.practitioner-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.practitioner-info .bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.credential-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.credential-item span {
    font-size: 1.1rem;
    color: #555;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .practitioner-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .practitioner-image img {
        max-width: 200px;
    }

    .practitioner-info h3 {
        font-size: 1.8rem;
    }

    .practitioner-info .bio {
        font-size: 1rem;
    }

    .credential-item span {
        font-size: 1rem;
    }
}

.specialties {
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.additional-services {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
}

blockquote {
    font-style: italic;
    color: #666;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
}

/* Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.info-item p {
    margin: 0;
    color: #555;
}

.additional-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .info-item {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--card-background);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.footer-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    color: #777;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh; /* Keep full height on mobile */
        padding: 6rem 1rem;
    }
    
    .hero.lavender-bg {
        min-height: 40vh; /* Keep about page hero shorter on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .practitioner-card {
        grid-template-columns: 1fr;
    }

    .practitioner-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .session-info {
        padding: 1.5rem;
    }

    .wisdom-quote {
        font-size: 0.9rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('assets/lotus-bg.jpg') center/cover fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 4rem;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('assets/lotus-bg.jpg') center/cover;
    padding: 120px 2rem 4rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.healing-methods {
    display: grid;
    gap: 3rem;
}

.method-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.method-content ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.method-content ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.method-content h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.info-box {
    background: rgba(200, 162, 200, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.session-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.session-content ul {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.session-content ul li {
    color: var(--primary-color);
    font-weight: 500;
}

.detailed-bio .bio-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bio-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 900px;
}

.bio-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.bio-content h3:first-child {
    margin-top: 0;
}

.bio-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.conditions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.conditions-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.conditions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.philosophy-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E6D1E6 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    color: white;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 10px 30px rgba(200, 162, 200, 0.2);
}

.philosophy-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

.wisdom-banner {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('assets/lotus-bg.jpg') center/cover;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.wisdom-banner blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.wisdom-banner cite {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-style: normal;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 1rem 3rem;
    }

    .method-card, .session-card, .bio-card {
        padding: 1.5rem;
    }

    .session-content ul {
        flex-direction: column;
        gap: 1rem;
    }

    .conditions-list {
        grid-template-columns: 1fr;
    }

    .wisdom-banner blockquote {
        font-size: 1.2rem;
    }
} 

.quote-section {
    display: none;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-container blockquote {
    position: relative;
    text-align: center;
    padding: 2rem;
    margin: 0;
}

.quote-container blockquote p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-container blockquote cite {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: normal;
    display: block;
    margin-top: 1rem;
}

.quote-container blockquote::before,
.quote-container blockquote::after {
    content: '"';
    position: absolute;
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-container blockquote::before {
    left: 0;
    top: -1rem;
}

.quote-container blockquote::after {
    right: 0;
    bottom: -2rem;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .quote-container blockquote p {
        font-size: 1.5rem;
    }
    
    .quote-container blockquote::before,
    .quote-container blockquote::after {
        font-size: 4rem;
    }
} 

.lavender-bg {
    background: linear-gradient(rgba(200, 162, 200, 0.1), rgba(200, 162, 200, 0.2)), url('assets/lavendar-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 

/* Healing Methods Section */
.healing-methods {
    background-color: var(--background-color);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

}

.method-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 162, 200, 0.15);
}

.method-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-content h3 i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.method-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.method-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.method-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-card {
        padding: 2rem;
    }

    .method-content h3 {
        font-size: 1.4rem;
    }

    .method-content p {
        font-size: 1rem;
    }

    .method-content ul li {
        font-size: 1rem;
    }
} 