/* Fonts matches the design closely with modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --bg-color: var(--bg-color);
    --primary-main: var(--primary-main);
    --accent-main: var(--accent-main);
    --top-bar: #5c4cd5;
    --text-dark: #4d574e;
    --text-muted: #757c76;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    padding-top: 90px;
    /* Offset for navbar */
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--top-bar);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.top-bar-btn {
    background: var(--white);
    color: var(--top-bar);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #28b431;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #4a5d48;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-icon svg {
    width: 35px;
    fill: var(--primary-dark);
}

.logo-badge {
    background: #ffcc00;
    /* Solid yellow as per image */
    padding: 8px 15px;
    border-radius: 0;
    /* Rectangular like the image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.logo-badge:hover {
    transform: scale(1.02);
}

.logo-badge-text {
    color: #000000;
    /* Black text as per image */
    font-weight: 900;
    font-size: 0.9rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-pill {
    background-color: var(--primary-dark);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 30px;
    /* space on left for links, right for button */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-light);
}

.btn-buy {
    background-color: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.btn-buy:hover {
    background-color: #92b52d;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box {
    background-color: var(--primary-light);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    width: 100px;
    font-weight: 600;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.user-btn {
    background-color: var(--primary-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8% 2rem;
    min-height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #4a544a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-explore {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(166, 201, 54, 0.4);
    transition: transform 0.3s;
}

.btn-explore:hover {
    transform: translateY(-2px);
}

/* --- Hero Graphics Right Side --- */
.hero-graphic {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    z-index: 5;
}

.circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 35px solid var(--primary-light);
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.circle-2 {
    position: absolute;
    width: 480px;
    height: 480px;
    border: 35px solid #234c2a;
    border-radius: 50%;
    clip-path: polygon(100% 30%, 100% 100%, 0 100%, 0 70%);
    z-index: 1;
}

.bowl-img {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: contain;
    z-index: 3;
    animation: floating 6s ease-in-out infinite;
    mix-blend-mode: multiply;
    /* Helps hide any harsh white background if generated */
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- Floating Leaves --- */
.floating-leaf {
    position: absolute;
    width: 50px;
    z-index: 0;
    opacity: 0.8;
    filter: blur(1px);
}

.leaf-1 {
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation: float1 10s infinite alternate;
}

.leaf-2 {
    bottom: 15%;
    left: 10%;
    transform: rotate(-20deg) scale(0.8);
    filter: blur(2px);
    animation: float1 8s infinite alternate-reverse;
    width: 40px;
}

.leaf-3 {
    top: 40%;
    left: 45%;
    transform: rotate(120deg) scale(0.7);
    animation: float1 12s infinite alternate;
}

.leaf-4 {
    top: 10%;
    right: 15%;
    transform: rotate(-60deg);
    width: 60px;
    filter: blur(3px);
    opacity: 0.6;
}

.leaf-5 {
    bottom: 25%;
    right: -2%;
    transform: rotate(10deg);
    width: 80px;
    animation: float1 7s infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(30px) rotate(20deg);
    }
}

/* --- Therapy Cards --- */
.therapy-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.therapy-card:hover::before {
    transform: scaleX(1);
}

.therapy-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--bg-color);
    color: var(--primary-light);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    /* Centered icon */
    transition: all 0.3s;
}

.therapy-card:hover .therapy-icon {
    background-color: var(--primary-light);
    color: #fff;
}

.therapy-card h3 {
    color: var(--primary-main);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}

.therapy-card p {
    color: #757c76;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .nav-center,
    .nav-actions {
        display: none;
    }

    /* Very basic hiding for tablet/mobile to keep focus on desktop view */
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-graphic {
        margin-top: 3rem;
        width: 100%;
        height: 400px;
    }

    .circle-1,
    .circle-2 {
        width: 300px;
        height: 300px;
        border-width: 20px;
    }

    .bowl-img {
        width: 250px;
        height: 250px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--primary-main);
    color: #eaf1e8;
    padding: 5rem 8% 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd8c8;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cbd8c8;
}

.footer-col i {
    width: 25px;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: #aebfad;
    font-size: 0.9rem;
}
