/* Base Styles */
:root {
    --primary-color: #1a3d2a;
    --secondary-color: #8a5d9d;
    --accent-color: #d4af37;
    --bg-light: #f7f5fa;
    --bg-alt: #f0f8f4;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 15%;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

button, .primary-button, .submit-button, .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

button:hover, .primary-button:hover, .submit-button:hover, .cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 93, 157, 0.4);
}

button:active, .primary-button:active, .submit-button:active, .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(138, 93, 157, 0.4);
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

.wave-divider {
    bottom: 0;
}

.wave-divider.reverse {
    top: 0;
    transform: rotate(180deg);
}

/* Header Styles */
.header {
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo span {
    margin-left: 0.5rem;
}

.lotus-logo {
    transition: var(--transition);
}

.logo:hover .lotus-logo {
    transform: rotate(10deg);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-list li a {
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-list li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-text {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 0 0 50%;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-mandala {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 0;
    opacity: 0.15;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-alt);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.philosophy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 4rem;
}

.philosophy-text {
    flex: 0 0 55%;
    text-align: left;
}

.philosophy-visual {
    flex: 0 0 40%;
    position: relative;
}

.zen-list {
    margin-top: 2rem;
}

.zen-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.list-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.quote-block {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
}

.quote-author {
    display: block;
    text-align: right;
    font-style: italic;
    margin-top: 0.5rem;
    color: var(--text-light);
}

/* Practices Section */
.practices {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.practices-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.practice-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.practice-icon {
    margin-bottom: 1rem;
}

.practice-card img {
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Teachers Section */
.teachers {
    background-color: var(--bg-alt);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.teachers-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.teacher-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.teacher-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.teacher-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition);
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}

.teacher-info {
    flex: 0 0 60%;
    padding: 1.5rem;
    text-align: left;
}

.teacher-specialty {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.teacher-quote {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--secondary-color);
    font-style: italic;
    position: relative;
}

.quote-mini-icon {
    position: absolute;
    top: -10px;
    left: -10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--secondary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-text p {
    font-style: italic;
}

/* Schedule Section */
.schedule {
    background-color: var(--bg-alt);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.schedule-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.schedule-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.schedule-day {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: left;
}

.schedule-day h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.schedule-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5e5e5;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 3rem;
}

.contact-text {
    flex: 0 0 45%;
    text-align: left;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 1rem;
}

.contact-form {
    flex: 0 0 50%;
}

form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: 'Quicksand', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(138, 93, 157, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Chakras Section */
.chakras {
    background-color: var(--white);
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.chakras-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.chakras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.chakra-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.chakra-symbol {
    margin: 0 auto 1.5rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}

.footer-logo .lotus-logo path,
.footer-logo .lotus-logo circle {
    stroke: var(--white);
}

.footer-logo .lotus-logo circle {
    fill: var(--white);
}

.footer-logo span {
    margin-top: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-nav, .footer-schedule, .footer-legal {
    flex: 1 0 calc(33.333% - 2rem);
    min-width: 200px;
}

.footer-quote {
    flex: 0 0 100%;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-quote span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Thank You Page */
.thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    background-color: var(--bg-light);
}

.thankyou-content {
    max-width: 700px;
    padding: 3rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou h1 {
    margin-bottom: 1.5rem;
}

.thankyou p {
    margin-bottom: 2rem;
}

/* Policy Pages */
.policy-page {
    padding: 10rem 5% 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.policy-content h1 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.policy-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.policy-content .back-button {
    display: inline-block;
    margin-top: 2.5rem;
}

/* Media Queries */
@media (max-width: 1100px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content, .philosophy-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-text, .philosophy-text {
        flex: 0 0 100%;
        order: 1;
    }
    
    .hero-visual, .philosophy-visual {
        flex: 0 0 100%;
        order: 0;
    }
    
    .hero-mandala {
        display: none;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-text, .contact-form {
        flex: 0 0 100%;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .teacher-card {
        flex-direction: column;
    }
    
    .teacher-image, .teacher-info {
        flex: 0 0 100%;
    }
    
    .teacher-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Mobile navigation */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        padding-top: 100px;
        text-align: center;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .mobile-nav.active {
        transform: translateY(0);
    }
    
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .mobile-nav-list li a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .practices-grid, .teachers-grid, .testimonials-content, .schedule-grid, .chakras-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-nav, .footer-schedule, .footer-legal {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .practice-card, .schedule-day, .testimonial-card, .chakra-card {
        padding: 1.5rem;
    }
    
    form {
        padding: 1.5rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav-toggle, .mobile-nav {
        display: none;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .primary-button, .submit-button, .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}