/* ==========================================
   AIKA HEALTH & WELLNESS
   STYLE.CSS
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F8F3;
    color:#333;
    line-height:1.7;
}

/* =======================
   NAVIGATION
======================= */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 70px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    z-index:999;

}

.logo span{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#184C2A;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#444;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#1B5E20;

}

.nav-btn{

    background:#1B5E20;

    color:white;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    background:#2E7D32;

}

/* =======================
   HERO
======================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:150px 40px 80px;

    background:

    linear-gradient(rgba(255,250,240,.55),rgba(255,250,240,.55)),

    url("images/hero-bg.png");

    background-size:cover;

    background-position:center;

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:92px;

    color:#184C2A;

    line-height:1;

    margin-bottom:25px;

}

.hero p{

    max-width:760px;

    margin:auto;

    font-size:24px;

    color:#556B5D;

    margin-bottom:45px;

}

.hero-btn{

    display:inline-block;

    background:#1B5E20;

    color:white;

    padding:18px 42px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#2E7D32;

    transform:translateY(-4px);

}
/* ==========================================
   ABOUT
========================================== */

.about{

    padding:60px 8%;

    background:white;

}

.about-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.section-tag{

    color:#B8860B;

    letter-spacing:5px;

    font-size:22px;

    font-weight:700;

    text-transform:uppercase;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    color:#184C2A;

    margin:15px 0 25px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:22px;

}

.feature-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.feature-item{

    background:#F7F7F2;

    padding:20px;

    border-radius:16px;

    font-weight:600;

    color:#184C2A;

    box-shadow:0 10px 20px rgba(0,0,0,.05);

}

/* ==========================================
   WHY AIKA
========================================== */

.why-aika{

    padding:110px 8%;

    background:#F8FCF8;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    color:#184C2A;

    margin-top:15px;

}

.section-heading p{

    margin-top:20px;

    color:#666;

    font-size:18px;

}

.why-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:white;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#184C2A;

    margin-bottom:18px;

}

.why-card p{

    color:#666;

    line-height:1.7;

}
/* ==========================================
   PRODUCTS
========================================== */

.products{

    padding:110px 8%;

    background:white;

}

.product-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:60px;

}

.card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

    padding:30px;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 28px 55px rgba(0,0,0,.15);

}

.card img{

    width:220px;

    height:300px;

    object-fit:contain;

    display:block;

    margin:0 auto 25px;

    transition:.35s;

}

.card:hover img{

    transform:scale(1.05);

}

.card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:#184C2A;

    margin-bottom:15px;

}

.card p{

    color:#666;

    line-height:1.7;

    min-height:65px;

}

.price{

    font-family:'Cormorant Garamond',serif;

    font-size:44px;

    color:#1B5E20;

    margin:25px 0;

}

.card-buttons{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:15px;

}

.learn-btn{

    background:white;

    color:#184C2A;

    border:2px solid #184C2A;

    padding:12px 22px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.learn-btn:hover{

    background:#184C2A;

    color:white;

}

.order-btn{

    background:#25D366;

    color:white;

    padding:12px 22px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.order-btn:hover{

    background:#1FA851;

}

/* Product image background */

.card img{

    background:#FAFAF8;

    border-radius:18px;

    padding:10px;

}
/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{

    padding:110px 8%;

    background:#F8FCF8;

}

.testimonial-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial{

    background:white;

    padding:40px 35px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial:hover{

    transform:translateY(-10px);

}

.testimonial p{

    margin:20px 0;

    line-height:1.8;

    color:#666;

}

.testimonial h4{

    color:#184C2A;

    font-size:18px;

    font-weight:600;

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    padding:110px 8%;

    background:white;

    text-align:center;

}

.contact p{

    max-width:700px;

    margin:25px auto 45px;

    font-size:20px;

    line-height:1.8;

    color:#666;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#184C2A;

    color:white;

    padding:60px 8% 35px;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    font-family:'Cormorant Garamond',serif;

    font-size:40px;

    margin-bottom:20px;

}

.footer-container h3{

    margin-bottom:18px;

    font-size:20px;

}

.footer-container a{

    display:block;

    color:white;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-container a:hover{

    color:#D8EFD3;

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:50px;

    padding-top:25px;

    color:#E6E6E6;

    font-size:15px;

}

/* ==========================================
   GENERAL ANIMATIONS
========================================== */

.hero-btn,
.learn-btn,
.order-btn,
.nav-btn{

    transition:all .3s ease;

}

.card,
.why-card,
.testimonial{

    transition:all .35s ease;

}

img{

    max-width:100%;

    height:auto;

}

section{

    overflow:hidden;

}
/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* ---------- Tablets ---------- */

@media (max-width:1024px){

    .navbar{
        padding:18px 35px;
    }

    .logo span{
        font-size:32px;
    }

    .nav-links{
        gap:25px;
    }

    .hero h1{
        font-size:68px;
    }

    .hero p{
        font-size:20px;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
        text-align:center;
    }

    .feature-list{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .navbar{

        flex-direction:column;

        gap:15px;

        padding:20px;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .nav-btn{

        width:100%;

        text-align:center;

    }

    .hero{

        padding:170px 20px 80px;

    }

    .hero h1{

        font-size:50px;

        line-height:1.1;

    }

    .hero p{

        font-size:18px;

    }

    .section-heading h2{

        font-size:42px;

    }

    .about{

        padding:80px 25px;

    }

    .about-content h2{

        font-size:42px;

    }

    .feature-list{

        grid-template-columns:1fr;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .product-grid{

        grid-template-columns:1fr;

    }

    .card{

        width:100%;

        max-width:380px;

        margin:auto;

    }

    .card img{

        width:200px;

        height:260px;

    }

    .card h3{

        font-size:30px;

    }

    .price{

        font-size:38px;

    }

    .card-buttons{

        flex-direction:column;

    }

    .learn-btn,
    .order-btn{

        width:100%;

        text-align:center;

    }

    .contact{

        padding:80px 25px;

    }

    footer{

        padding:50px 25px;

    }

}

/* ---------- Small Phones ---------- */

@media (max-width:480px){

    .logo span{

        font-size:26px;

    }

    .hero h1{

        font-size:40px;

    }

    .hero p{

        font-size:16px;

    }

    .section-heading h2{

        font-size:34px;

    }

    .about-content h2{

        font-size:34px;

    }

    .card{

        padding:22px;

    }

}
/* ===========================
   FIND YOUR TEA
=========================== */

.find-tea{
    background:#f5fbf6;
    padding:90px 8%;
    text-align:center;
}

.find-tea-content{
    max-width:900px;
    margin:auto;
}

.find-tea h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#0b6b34;
    margin:20px 0;
}

.find-tea p{
    font-size:20px;
    line-height:1.8;
    color:#555;
    margin:25px auto 40px;
}

.find-tea .hero-btn{
    display:inline-block;
    margin-top:10px;
}
/* ===========================
   WHY CHOOSE AIKA
=========================== */

.aika-benefits{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.aika-benefits h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    color:#0b6b34;
    margin-bottom:50px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.benefit-card{
    background:#f8fcf8;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-6px);
}

.benefit-card h3{
    color:#0b6b34;
    margin-bottom:15px;
    font-size:24px;
}

.benefit-card p{
    color:#555;
    line-height:1.7;
}