/* Yoga Studio - Pastel & Zen */
:root {
    --sage: #A8B8A8;
    --lavender: #C8B8DB;
    --cream: #F8F4F0;
    --peach: #F5D7C8;
    --dark: #4A5759;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 184, 168, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--sage);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--sage);
    color: var(--white);
    border-radius: 25px;
}

.nav-cta:hover {
    background: var(--lavender);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle .line {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    color: var(--sage);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--lavender);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 184, 168, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-ghost:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--sage);
    color: var(--sage);
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

.image-float {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.image-float img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--dark);
    opacity: 0.7;
}

/* Classes */
.classes {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--cream);
    color: var(--sage);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.7;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.class-card {
    background: var(--white);
    border: 2px solid var(--cream);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.class-card:hover {
    transform: translateY(-5px);
    border-color: var(--sage);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.class-card.featured {
    border-color: var(--lavender);
    background: linear-gradient(135deg, rgba(200, 184, 219, 0.1), rgba(168, 184, 168, 0.1));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: var(--lavender);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.class-level {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.class-level.gentle {
    background: rgba(168, 184, 168, 0.2);
    color: var(--sage);
}

.class-level.moderate {
    background: rgba(200, 184, 219, 0.2);
    color: var(--lavender);
}

.class-level.dynamic {
    background: rgba(245, 215, 200, 0.3);
    color: #C87B63;
}

.class-duration {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.6;
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.class-card p {
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.class-schedule {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.schedule-item {
    padding: 6px 14px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--dark);
}

/* Philosophy */
.philosophy {
    padding: 100px 0;
    background: var(--cream);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.large-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 25px;
}

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 20px;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.7;
}

.philosophy-images {
    position: relative;
    height: 500px;
}

.phil-img-1,
.phil-img-2 {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.phil-img-1 {
    width: 70%;
    top: 0;
    left: 0;
}

.phil-img-2 {
    width: 50%;
    bottom: 0;
    right: 0;
}

.phil-img-1 img,
.phil-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--cream);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.price-card.highlighted {
    border-color: var(--sage);
    background: linear-gradient(135deg, rgba(168, 184, 168, 0.05), rgba(200, 184, 219, 0.05));
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--sage);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sage);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.6;
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    color: var(--dark);
    opacity: 0.8;
    position: relative;
    padding-left: 25px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--sage);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sage), var(--lavender));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-content .btn {
    background: var(--white);
    color: var(--dark);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.info-group {
    margin-bottom: 30px;
}

.info-group h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sage);
}

.info-group p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.7;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    padding: 10px 20px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--sage);
    color: var(--white);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-success,
.form-error {
    display: none;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.form-success {
    background: rgba(168, 184, 168, 0.2);
    color: var(--sage);
}

.form-error {
    background: rgba(201, 123, 99, 0.2);
    color: #C87B63;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.form-row textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .philosophy-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .classes-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .benefits-grid,
    .classes-grid,
    .pricing-grid,
    .philosophy-values {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
