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

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: #5a4a3a;
    background: linear-gradient(135deg, #f7f1e8 0%, #ede7d9 100%);
    overflow-x: hidden;
}

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

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 50% 0;
    animation: float 20s infinite linear;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 50%;
    right: 15%;
    animation-delay: -7s;
}

.leaf-3 {
    top: 80%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes float {
    from {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.header {
    background: rgba(247, 241, 232, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 195, 74, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #8bc34a;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.logo span {
    font-size: 0.9rem;
    color: #a68b5b;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #5a4a3a;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8bc34a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #8bc34a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8bc34a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="petals" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dcc49c" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23petals)"/></svg>') repeat;
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #6d4c41;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8d6e63;
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8bc34a;
}

.feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 0.9rem;
    color: #5a4a3a;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #8bc34a, #689f38);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 195, 74, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #6d4c41;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8bc34a, transparent);
    margin: 0 auto;
}

.about-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a4a3a;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wellness-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 195, 74, 0.2);
}

.wellness-card i {
    font-size: 2.5rem;
    color: #8bc34a;
    margin-bottom: 1rem;
}

.wellness-card h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #6d4c41;
    margin-bottom: 0.5rem;
}

.services-section {
    padding: 6rem 0;
}

.services-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-ritual {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-ritual:hover {
    transform: translateY(-10px);
    border-color: #8bc34a;
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.2);
}

.service-ritual.featured {
    background: linear-gradient(135deg, #8bc34a, #689f38);
    color: white;
}

.ritual-icon {
    width: 90px;
    height: 90px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #8bc34a;
}

.service-ritual.featured .ritual-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.ritual-icon i {
    font-size: 2.5rem;
    color: #8bc34a;
}

.service-ritual.featured .ritual-icon i {
    color: white;
}

.service-ritual h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #6d4c41;
}

.service-ritual.featured h4 {
    color: white;
}

.service-ritual p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ritual-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8bc34a;
}

.ritual-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff9800;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.zen-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.zen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zen-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #6d4c41;
    margin-bottom: 2rem;
}

.zen-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.zen-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zen-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #5a4a3a;
}

.zen-feature i {
    color: #8bc34a;
    font-size: 1.2rem;
    width: 20px;
}

.zen-visual {
    display: flex;
    justify-content: center;
}

.zen-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.2), rgba(139, 195, 74, 0.05));
    border: 3px solid rgba(139, 195, 74, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-section {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card, .location-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 195, 74, 0.2);
}

.contact-card h4, .location-card h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #6d4c41;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-detail, .location-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail i, .location-info i {
    font-size: 1.5rem;
    color: #8bc34a;
    width: 30px;
    text-align: center;
}

.contact-detail div, .location-info div {
    flex: 1;
}

.contact-detail span, .location-info span {
    display: block;
    color: #8d6e63;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-detail strong, .location-info strong {
    color: #5a4a3a;
    font-size: 1.1rem;
}

.footer {
    background: linear-gradient(135deg, #6d4c41, #5a4a3a);
    color: #f7f1e8;
    padding: 3rem 0;
}

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

.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #8bc34a;
    margin-bottom: 0.5rem;
}

.footer-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #dcc49c;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content,
    .zen-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-carousel {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem;
    }
}