/* GLOBAL */

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

body{
    font-family: "Segoe UI", sans-serif;
    background:#F8F6F1;
    color:#2F3A33;
    line-height:1.8;
}

.container{
    width:90%;
    /* max-width:1500px; */
    margin:auto;
}

section{
    padding:80px 0;
}

h1,h2,h3{
    font-weight:600;
}

h2{
    color:#B98534;
    margin-bottom:25px;
    font-size:2.2rem;
}

p{
    color:#4D5951;
}

/* BUTTONS */

.btn{
    display:inline-block;
    margin-top:25px;
    background:#7BAE7F;
    color:white;
    text-decoration:none;
    padding:14px 32px;
    border-radius:40px;
    transition:.3s;
}

.btn:hover{
    background:#4F6F52;
}

/* HERO */

.hero{
    height:80vh;

    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.35)),
    url("images/wellness-hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-overlay{
    color:white;
    max-width:700px;
    padding:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
    font-weight:300;
}

.hero p{
    color:white;
    font-size:1.3rem;
}

/* ABOUT */

.about{
    text-align:center;
}

.about p{
    max-width:850px;
    margin:20px auto;
}

/* FEATURES */

.features{
    background:white;
}

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

.feature-card{
    background:#F8F6F1;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.feature-card i{
    font-size:2.5rem;
    color:#7BAE7F;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
}

/* CONTENT CARDS */

.content-card{
    background:white;
    padding:40px;
    margin-bottom:30px;
    border-radius:20px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

/* TEAM */

.team{
    background:white;
}

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

.team-member{
    text-align:center;
}

.team-member img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:20px;
}

.team-member h3{
    margin-top:20px;
}

.team-member p{
    color:#7BAE7F;
}

/* CTA */

.cta{
    text-align:center;
    background:#4F6F52;
    color:white;
}

.cta h2{
    color:white;
}

.cta p{
    color:white;
    max-width:700px;
    margin:20px auto;
}

.cta .btn{
    background:white;
    color:#4F6F52;
}

.cta .btn:hover{
    background:#E9E9E9;
}

/* RESPONSIVE */

@media(max-width:992px){

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

    .team-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:3rem;
    }

}

@media(max-width:768px){

    section{
        padding:60px 0;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .hero{
        height:70vh;
    }

    .hero h1{
        font-size:2.3rem;
    }

    h2{
        font-size:1.8rem;
    }

}