@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
    --primary-dark: #004d40;
    --accent-pink: #ffc0cb;
    --light-gray: #f5f5f5;
    --soft-gray: #e0e0e0;
    --malachite: #0bda51;
    --white: #ffffff;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1rem;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-mandala-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    opacity: 0.1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    background: rgba(0, 77, 64, 0.05);
    border-radius: 8px;
}

.nav-links a:hover::after {
    width: 50%;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    overflow: hidden;
}

.hero-mandala {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 1.5rem 0 2.5rem;
    color: var(--primary-dark);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-pink);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 77, 64, 0.2);
}

.cta-button:hover::after {
    transform: scaleX(1);
}

.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: 120px;
}

.wave-divider-inverted {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: -1px;
}

.wave-divider-inverted svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 64, 0.1);
}

.lotus-icon, .sacred-geometry, .mandala-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.programs-section {
    padding: 6rem 0;
    background: #f2f7f2;
}

.asana-sequence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.asana-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asana-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 77, 64, 0.15);
}

.asana-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.asana-card h3 {
    padding: 1rem;
    text-align: center;
}

.asana-card p {
    padding: 0 1rem 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.teachers-section {
    padding: 6rem 0;
    background: var(--white);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.teacher-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 64, 0.1);
}

.teacher-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 3px solid var(--accent-pink);
}

.specialization {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.approach {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.journal-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.journal-template {
    max-width: 800px;
    margin: 0 auto;
}

.journal-page {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journal-entry {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.lotus-bullet {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mandala-symbolism {
    text-align: center;
}

.symbolism-mandala {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--soft-gray);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 10px rgba(0, 77, 64, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-pink);
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.footer-item:hover {
    text-shadow: 0 0 10px var(--accent-pink);
}

.footer-item.empty-item {
    visibility: hidden;
}

.footer-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-item a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-item a:hover {
    color: var(--accent-pink);
    padding-left: 10px;
}

.footer-grid > .footer-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.footer-grid > .footer-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.footer-grid > .footer-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.footer-grid > .footer-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.footer-grid > .footer-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.footer-grid > .footer-item:nth-child(6) { grid-column: 3; grid-row: 2; }
.footer-grid > .footer-item:nth-child(7) { grid-column: 1; grid-row: 3; }
.footer-grid > .footer-item:nth-child(8) { grid-column: 2; grid-row: 3; }
.footer-grid > .footer-item:nth-child(9) { grid-column: 3; grid-row: 3; }

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-mandala {
        width: 400px;
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-mandala {
        width: 300px;
        height: 300px;
    }
    
    .benefits-grid,
    .asana-sequence,
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid > .footer-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .footer-item.empty-item {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .hero-mandala {
        width: 200px;
        height: 200px;
    }
    
    .benefit-card,
    .teacher-card,
    .journal-page {
        padding: 1.5rem;
    }
    
    .symbolism-mandala {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-content {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .benefit-card,
    .teacher-card,
    .journal-page {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
}