/* ===========================
   FEATURED COFFEE
=========================== */

.coffee-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:60px;

}

.coffee-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.coffee-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.coffee-card h3{

    font-size:30px;

    margin-bottom:15px;

    color:#0F3D2E;

}

.coffee-card p{

    color:#666;

    margin-bottom:25px;

    line-height:1.7;

}

.price{

    display:block;

    font-size:34px;

    font-weight:700;

    color:#C8A97E;

    margin-bottom:25px;

}

/* ===========================
   ABOUT HOV
=========================== */

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-tag{

    color:#C8A97E;

    font-weight:700;

    letter-spacing:2px;

}

.about-text{

    margin:30px 0;

    color:#555;

    line-height:1.9;

    font-size:18px;

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.about-card:hover{

    transform:translateX(8px);

}

.about-card h3{

    color:#0F3D2E;

    margin-bottom:10px;

    font-size:28px;

}

.about-card p{

    color:#666;

}

/* ===========================
   MEMBERSHIP SECTION
=========================== */

#membership{

    background:#0F3D2E;

    color:#ffffff;

}

.membership-container{

    max-width:1000px;

    margin:auto;

    text-align:center;

}

.membership-text{

    max-width:700px;

    margin:30px auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.9);

}

.membership-features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin:50px 0;

}

.feature{

    background:rgba(255,255,255,.08);

    padding:20px;

    border-radius:16px;

    font-size:18px;

    transition:.3s;

}

.feature:hover{

    background:#C8A97E;

    color:#222;

    transform:translateY(-6px);

}

/* ===========================
   ORDER ONLINE SECTION
=========================== */

#order-online{

    background:#F8F5F2;

}

.order-container{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.order-text{

    margin:30px auto;

    max-width:700px;

    color:#555;

    font-size:18px;

    line-height:1.8;

}

.order-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.order-secondary{

    background:#C8A97E;

}

.order-secondary:hover{

    background:#0F3D2E;

}
