:root {
    --sage: #a8e6cf;
    --dark-sage: #88c6b0;
    --sand: #fcf9f2;
    --rose: #ffd3b6;
    --text: #5d5d5d;
    --white: #ffffff;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--sand);
    color: var(--text);
    line-height: 1.8;
}

.container { width: 90%; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.zen-header { padding: 30px 0; background-color: var(--sand); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.5rem; color: var(--text); letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.flower-icon { color: var(--dark-sage); font-size: 1.8rem; }
.soft { font-weight: 300; }

.zen-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.zen-nav a { font-size: 0.95rem; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.zen-nav a:hover, .zen-nav a.active { color: var(--dark-sage); }

.btn-sage { background-color: var(--sage); color: var(--white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; }
.btn-sage:hover { background-color: var(--dark-sage); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(168, 230, 207, 0.4); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; color: var(--dark-sage); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.5s; opacity: 0.98; }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--text); }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--text); }

/* Hero */
.hero-zen {
    height: 700px; background-size: cover; background-position: center; position: relative;
    border-radius: 0 0 50% 50% / 30px; overflow: hidden;
}
.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 60px;
    max-width: 600px;
    margin: 150px auto 0;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.breath-text { font-family: var(--font-head); font-style: italic; color: var(--dark-sage); font-size: 1.2rem; display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--text); }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; color: #777; }

.btn-primary { background-color: var(--text); color: var(--white); padding: 15px 35px; border-radius: 50px; display: inline-block; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; }
.btn-primary:hover { background-color: var(--dark-sage); }

/* Classes */
.section-padding { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--text); }
.leaf-divider { color: var(--dark-sage); font-size: 1.5rem; margin-top: 10px; font-family: var(--font-head); }

.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.class-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: 0.3s; text-align: center; padding-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.class-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card-img { height: 250px; overflow: hidden; margin-bottom: 20px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.class-card:hover img { transform: scale(1.05); }
.class-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.class-card p { padding: 0 20px; color: #777; font-size: 0.95rem; margin-bottom: 20px; }
.time { display: inline-block; background: var(--sand); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; color: var(--dark-sage); }

/* About */
.page-title { text-align: center; padding: 60px 0; }
.page-title h1 { font-family: var(--font-head); font-size: 3rem; color: var(--dark-sage); }

.about-soft { display: flex; gap: 60px; align-items: center; }
.text-side { flex: 1; }
.text-side h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; }
.leaf-divider-left { color: var(--sage); font-size: 2rem; margin-bottom: 20px; }
.values { list-style: none; margin-top: 30px; }
.values li { margin-bottom: 10px; font-family: var(--font-head); font-size: 1.2rem; }
.image-side { flex: 1; }
.image-side img { width: 100%; border-radius: 50% 50% 0 0; }

/* Testimonials */
.feedback-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feedback-card { background: var(--white); padding: 40px; border-radius: 50% 50% 50% 0; text-align: center; border: 1px solid var(--sage); }
.lotus { font-size: 2.5rem; margin-bottom: 15px; }
.feedback-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; }
.feedback-card p { font-style: italic; color: #777; margin-bottom: 20px; }
.yogi { font-weight: bold; color: var(--dark-sage); }

/* Booking Form */
.booking-center { max-width: 600px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.intro-booking { text-align: center; margin-bottom: 40px; }
.intro-booking h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; }
.studio-info { margin-top: 20px; color: var(--dark-sage); font-weight: bold; }

.pastel-form .form-group { margin-bottom: 20px; }
.pastel-form label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #999; }
.pastel-form input, .pastel-form select, .pastel-form textarea { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px; background: var(--sand); font-family: var(--font-body); }
.pastel-form input:focus, .pastel-form select:focus, .pastel-form textarea:focus { outline: none; border-color: var(--sage); background: var(--white); }
.submit-btn { width: 100%; background-color: var(--sage); color: var(--white); border: none; padding: 15px; border-radius: 30px; font-size: 1.1rem; cursor: pointer; transition: 0.3s; font-family: var(--font-head); }
.submit-btn:hover { background-color: var(--dark-sage); }

/* Legal */
.legal-flow { max-width: 800px; margin: 0 auto; text-align: center; }
.legal-flow h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--text); margin-bottom: 10px; }
.legal-flow h3 { color: var(--dark-sage); margin-top: 40px; margin-bottom: 10px; font-family: var(--font-head); font-size: 1.5rem; }

/* Footer */
.zen-footer { background-color: var(--white); padding: 60px 0; text-align: center; margin-top: auto; }
.footer-center .brand { font-family: var(--font-head); font-size: 2rem; color: var(--text); margin-bottom: 10px; }
.links a { color: #999; margin: 0 15px; font-size: 0.9rem; }
.links a:hover { color: var(--dark-sage); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #ccc; }

@media (max-width: 900px) {
    .zen-nav { display: none; }
    .mobile-toggle { display: block; }
    .class-grid, .about-soft, .feedback-flow { grid-template-columns: 1fr; flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content { padding: 30px; margin-top: 50px; }
    .image-side { order: -1; margin-bottom: 30px; }
}