/* ==========================
   HERBAL ARTISTA GLOBAL STYLE
========================== */

/* GOOGLE FONTS
Great Vibes
Montserrat
*/

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* COLORS */
:root{
    --background:#F8F5EF;
    --dark-olive:#44563D;
    --herbal-gold:#B08A3C;
    --warm-cream:#FAF8F2;
    --earth-brown:#54493F;
    --soft-sage:#DCE4D3;
    --text:#2F2F2F;
}

/* BODY */
body{
    background:var(--background);
    color:var(--text);
    font-family:'Montserrat',sans-serif;
    line-height:1.8;
}

/* LINKS */
a{
    text-decoration:none;
    color:var(--dark-olive);
    transition:.3s;
}

a:hover{
    color:var(--herbal-gold);
}

/* ==================
NAVIGATION
================== */

.navbar{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.logo{
    font-family:'Great Vibes',cursive;
    font-size:2.7rem;
    color:var(--herbal-gold);
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    font-weight:600;
}

/* ==================
HERO
================== */

.hero{
    min-height:90vh;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    min-height:90vh;
    background:rgba(20,25,20,.55);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

.hero-content{
    max-width:750px;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    margin-bottom:30px;
}
.hero{
    background-image: url("companion.herbs.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;

}

/* ==================
BUTTONS
================== */

.btn{
    background:var(--herbal-gold);
    color:white;
    padding:14px 28px;
    border-radius:8px;
    display:inline-block;
    font-weight:600;
}

.btn:hover{
    background:var(--dark-olive);
    color:white;
}

/* ==================
SECTIONS
================== */

.section{
    padding:90px 8%;
}

.section h2{
    text-align:center;
    color:var(--dark-olive);
    font-size:2.8rem;
    margin-bottom:30px;
}

.alt{
    background:white;
}

/* ==================
CARDS
================== */

.grid{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

.card{
    background:white;
    width:300px;
    padding:30px;
    border-radius:18px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:var(--dark-olive);
    margin-bottom:15px;
}

/* ==================
KNOWLEDGE LIBRARY
================== */

.library-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.library-card{
    width:220px;
    background:var(--warm-cream);

    padding:50px 25px;

    border-radius:20px;

    text-align:center;

    color:var(--dark-olive);

    font-weight:600;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.library-card:hover{
    background:var(--dark-olive);
    color:white;
    transform:translateY(-8px);
}

/* ==================
ABOUT
================== */

.about-heading{
    font-family:'Great Vibes',cursive;
    color:var(--herbal-gold);
    font-size:4rem;
    text-align:center;
    margin-bottom:40px;
}

.about-frame{
    display:flex;
    gap:50px;
    align-items:flex-start;

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.about-text{
    flex:1;
}

.about-text p{
    margin-bottom:18px;
}

.about-highlight{
    color:var(--herbal-gold);
    font-weight:600;
}

.about-right{
    width:320px;
}

.about-image img{
    width:100%;
    border-radius:16px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.about-workshops{
    margin-top:20px;

    background:#fdf8ee;

    border-left:4px solid var(--herbal-gold);

    padding:20px;

    border-radius:12px;
}

/* ==================
FORMS
================== */

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:1rem;
}

textarea{
    min-height:180px;
}

/* ==================
FOOTER
================== */

footer{
    background:var(--earth-brown);
    color:white;
    text-align:center;
    padding:40px 20px;
}

/* ==================
MOBILE
================== */

#menuBtn{
    display:none;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:2.6rem;
    }

    .about-frame{
        flex-direction:column;
    }

    .about-right{
        width:100%;
    }

    .card{
        width:100%;
    }

}