/* Base Styles */
:root {
    --primary-color: #336655;
    --accent-color: #673AB7;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-color: #ffffff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gochi Hand', cursive;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 70px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider.reverse {
    transform: rotate(180deg);
    top: 0;
    bottom: auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(103, 58, 183, 0.3);
}

.btn-primary:hover {
    background-color: #5e35b1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.accent {
    color: var(--accent-color);
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Gochi Hand', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo-svg {
    margin-right: 10px;
}

.nav-list {
    display: flex;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 700;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item:not(:hover) .nav-link {
    opacity: 0.7;
}

.nav:hover .nav-item:not(:hover) .nav-link {
    filter: blur(1px);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background-color: var(--bg-color);
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* Practices Section */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.practice-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.practice-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(103, 58, 183, 0.1);
    border-radius: 50%;
}

/* Benefits Section */
.benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    flex: 1;
    min-width: 300px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    margin-right: 15px;
    min-width: 40px;
}

.benefit-text h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* Mandala Section */
.mandala-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.mandala-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.mandala-description {
    flex: 1;
    min-width: 300px;
}

.mandala-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.mandala-point {
    min-width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 15px;
}

/* Mudras Section */
.mudras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mudra-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.mudra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mudra-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

/* Yoga Styles Section */
.styles-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.style-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.style-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.style-benefits {
    margin: 20px 0;
}

.style-benefits li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
    padding-left: 25px;
}

.style-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.style-purpose {
    font-style: italic;
    margin-top: 15px;
    color: var(--accent-color);
}

/* Chakras Section */
.chakras-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.chakra-visualization {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.chakras-description {
    flex: 1;
    min-width: 300px;
}

.chakra-item {
    margin-bottom: 20px;
}

.chakra-item h3 {
    margin-bottom: 5px;
}

.sahasrara {
    color: #8B00FF;
}

.ajna {
    color: #0000FF;
}

.vishuddha {
    color: #00FFFF;
}

.anahata {
    color: #00FF00;
}

.manipura {
    color: #FFFF00;
}

.svadhisthana {
    color: #FFA500;
}

.muladhara {
    color: #FF0000;
}

/* Schedule Section */
.schedule-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.schedule-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.schedule-table {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.schedule-day {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-day h3 {
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.schedule-class {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.time {
    font-weight: 700;
    color: var(--primary-color);
}

.schedule-note {
    text-align: center;
    margin-top: 40px;
}

.schedule-note p {
    margin-bottom: 20px;
}

/* Practice Journals Section */
.journal-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.journal-description {
    flex: 1;
    min-width: 300px;
}

.journal-benefits {
    margin-top: 20px;
}

.journal-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.journal-benefit svg {
    margin-right: 15px;
}

.journal-template {
    flex: 1;
    min-width: 300px;
}

.journal-page {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.journal-entry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.journal-before, .journal-practice, .journal-after {
    padding: 15px;
    background-color: rgba(103, 58, 183, 0.05);
    border-radius: 10px;
}

.journal-download {
    margin-top: 40px;
    text-align: center;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-email {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.contact-email svg {
    margin-right: 10px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(103, 58, 183, 0.2);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-item h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Gochi Hand', cursive;
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-links li, .footer-policies li {
    margin-bottom: 10px;
}

.footer-links a, .footer-policies a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .footer-policies a:hover {
    opacity: 1;
    color: var(--light-text);
    padding-left: 5px;
}

.footer-poses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-pose {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-pose span {
    margin-top: 5px;
    font-size: 0.9rem;
}

.footer-subscribe {
    display: flex;
    margin-top: 15px;
}

.footer-subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Lato', sans-serif;
}

.footer-subscribe button {
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content, .hero-image,
    .about-text, .about-image,
    .benefits-list, .benefits-image,
    .mandala-image, .mandala-description,
    .chakra-visualization, .chakras-description,
    .journal-description, .journal-template,
    .contact-info, .contact-form-container {
        flex: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .nav-list {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 120px 0 70px;
    }

    section {
        padding: 50px 0;
    }

    .wave-divider svg {
        height: 40px;
    }

    .journal-entry {
        display: block;
    }

    .journal-before, .journal-practice, .journal-after {
        margin-bottom: 20px;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-poses {
        grid-template-columns: 1fr;
    }

    .footer-subscribe {
        flex-direction: column;
    }

    .footer-subscribe input {
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .footer-subscribe button {
        border-radius: 5px;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .practice-card, .mudra-card, .style-card, .schedule-day, .contact-form {
        padding: 20px;
    }
}