/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{

    background:#0f0f0f;

    color:#fff;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:90px 8%;

}

/* ===========================
        HEADER
=========================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(10px);

    border-bottom:1px solid gold;

    z-index:999;

}

.logo h2{

    color:gold;

    font-size:34px;

    letter-spacing:3px;

}

.logo p{

    color:#ddd;

    font-size:12px;

}

nav ul{

    display:flex;

    gap:30px;

}

nav ul li a{

    color:white;

    font-weight:600;

    transition:.3s;

}

nav ul li a:hover{

    color:gold;

}

.order-btn{

    background:gold;

    color:black;

    padding:13px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.4s;

}

.order-btn:hover{

    transform:translateY(-5px);

    background:#FFD700;

}

/* ===========================
          HERO
=========================== */

.hero{

    height:100vh;

    background:url("https://images.unsplash.com/photo-1507914372368-b2b085b925a1?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    max-width:700px;

    z-index:2;

}

.hero-content h4{

    color:#FFD700;

    font-size:22px;

    letter-spacing:4px;

}

.hero-content h1{

    font-size:80px;

    color:gold;

    margin:10px 0;

}

.hero-content h2{

    font-size:38px;

    margin-bottom:20px;

}

.hero-content p{

    color:#ddd;

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn,
.btn2{

    padding:15px 35px;

    border-radius:40px;

    font-weight:bold;

    transition:.4s;

}

.btn{

    background:gold;

    color:black;

}

.btn:hover{

    transform:translateY(-5px);

}

.btn2{

    border:2px solid gold;

    color:gold;

}

.btn2:hover{

    background:gold;

    color:black;

}

/* ===========================
        STATS
=========================== */

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    background:#181818;

}

.stat{

    background:#222;

    text-align:center;

    padding:35px;

    border-radius:15px;

    transition:.4s;

}

.stat:hover{

    transform:translateY(-10px);

    box-shadow:0 0 20px gold;

}

.stat h2{

    color:gold;

    font-size:42px;

}

.stat p{

    color:#ccc;

    margin-top:10px;

}

/* ===========================
       PRODUCTS
=========================== */

.products h1{

    text-align:center;

    color:gold;

    margin-bottom:50px;

    font-size:45px;

}

.product-grid{

    display:grid;

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

    gap:35px;

}

.product-card{

    background:#1c1c1c;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 25px gold;

}

.product-card img{

    height:260px;

    object-fit:cover;

}

.product-card h3{

    color:gold;

    text-align:center;

    margin-top:20px;

}

.product-card p{

    color:#ddd;

    text-align:center;

    padding:15px;

}

.product-card h4{

    text-align:center;

    color:#FFD700;

    font-size:26px;

}

.product-card button{

    width:85%;

    margin:25px auto;

    display:block;

    padding:15px;

    background:gold;

    color:black;

    border:none;

    border-radius:50px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.product-card button:hover{

    background:#FFD700;

    transform:scale(1.05);

}
/* ===========================
      KENYAN FARMS
=========================== */

.kenya{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:50px;
    align-items:center;
    background:#181818;

}

.kenya-text h1{

    color:gold;
    font-size:46px;
    margin-bottom:25px;

}

.kenya-text p{

    color:#ddd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;

}

.kenya-text ul li{

    margin:15px 0;
    color:white;
    font-size:18px;

}

.kenya-image img{

    border-radius:20px;
    box-shadow:0 0 30px rgba(212,175,55,.6);
    transition:.5s;

}

.kenya-image img:hover{

    transform:scale(1.03);

}

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

.about{

    text-align:center;

}

.about h1{

    color:gold;
    font-size:45px;
    margin-bottom:25px;

}

.about p{

    color:#ddd;
    max-width:900px;
    margin:0 auto 50px;
    line-height:1.9;
    font-size:18px;

}

.about-boxes{

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

}

.box{

    background:#1b1b1b;
    padding:40px 25px;
    border-radius:18px;
    transition:.4s;

}

.box:hover{

    transform:translateY(-10px);
    box-shadow:0 0 20px gold;

}

.box i{

    font-size:45px;
    color:gold;
    margin-bottom:20px;

}

.box h3{

    color:white;
    margin-bottom:15px;

}

.box p{

    color:#ccc;

}

/* ===========================
      WHY CHOOSE US
=========================== */

.why-us{

    background:#181818;

}

.why-us h1{

    text-align:center;
    color:gold;
    margin-bottom:50px;
    font-size:45px;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}

.why-card{

    background:#222;
    text-align:center;
    padding:40px;
    border-radius:18px;
    transition:.4s;

}

.why-card:hover{

    background:gold;
    color:black;
    transform:translateY(-10px);

}

.why-card h2{

    font-size:50px;
    margin-bottom:10px;

}

.why-card p{

    font-size:18px;
    font-weight:600;

}

/* ===========================
      CUSTOMER REVIEWS
=========================== */

.reviews{

    text-align:center;

}

.reviews h1{

    color:gold;
    font-size:45px;
    margin-bottom:50px;

}

.review-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.review-card{

    background:#1d1d1d;
    padding:35px;
    border-radius:20px;
    transition:.4s;

}

.review-card:hover{

    transform:translateY(-10px);
    box-shadow:0 0 20px gold;

}

.review-card p{

    color:#ddd;
    line-height:1.8;
    margin-bottom:15px;

}

.review-card h3{

    color:gold;

}

/* ===========================
      SIMPLE ANIMATIONS
=========================== */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero-content,
.product-card,
.box,
.review-card,
.why-card,
.stat{

    animation:fadeUp 1s ease;

}
/* ===========================
      BILLING SECTION
=========================== */

.billing{
    background:#111;
    text-align:center;
}

.billing h1{
    color:gold;
    font-size:45px;
    margin-bottom:40px;
}

.billing-form{
    max-width:900px;
    margin:auto;
}

.billing-form .row{
    display:flex;
    gap:20px;
}

.billing-form input,
.billing-form textarea,
.billing-form select{

    width:100%;
    padding:16px;
    margin:12px 0;

    background:#222;
    color:white;

    border:1px solid #444;
    border-radius:10px;

    font-size:16px;

}

.billing-form input:focus,
.billing-form textarea:focus,
.billing-form select:focus{

    outline:none;
    border-color:gold;
    box-shadow:0 0 12px gold;

}

.billing-form button{

    width:100%;

    padding:18px;

    background:gold;
    color:black;

    border:none;

    border-radius:50px;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;

    margin-top:20px;

}

.billing-form button:hover{

    background:#FFD700;
    transform:translateY(-5px);

}

/* ===========================
      CONTACT
=========================== */

.contact{
    background:#181818;
}

.contact h1{
    color:gold;
    text-align:center;
    margin-bottom:50px;
    font-size:45px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{

    background:#222;
    padding:40px;
    border-radius:20px;

}

.contact-info h2{

    color:gold;
    margin-bottom:25px;

}

.contact-info p{

    margin:18px 0;
    color:#ddd;

}

.contact-form{

    background:#222;
    padding:40px;
    border-radius:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin:12px 0;

    border:none;
    border-radius:10px;

    background:#111;
    color:white;

}

.contact-form button{

    width:100%;

    padding:16px;

    background:gold;
    color:black;

    border:none;

    border-radius:50px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#FFD700;

}

/* ===========================
      NEWSLETTER
=========================== */

.newsletter{

    text-align:center;

    background:#111;

}

.newsletter h1{

    color:gold;
    margin-bottom:20px;
    font-size:45px;

}

.newsletter p{

    color:#ccc;
    margin-bottom:30px;

}

.newsletter form{

    max-width:700px;
    margin:auto;

    display:flex;
    gap:15px;

}

.newsletter input{

    flex:1;

    padding:16px;

    border:none;

    border-radius:50px;

    background:#222;
    color:white;

}

.newsletter button{

    padding:16px 40px;

    border:none;

    border-radius:50px;

    background:gold;

    color:black;

    cursor:pointer;

    font-weight:bold;

}

/* ===========================
      FOOTER
=========================== */

footer{

    background:#000;

    padding:70px 8% 20px;

}

.footer-grid{

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

}

.footer-grid h2,
.footer-grid h3{

    color:gold;
    margin-bottom:20px;

}

.footer-grid p,
.footer-grid li{

    color:#ccc;
    margin:10px 0;

}

.footer-grid a{

    color:#ccc;
    transition:.3s;

}

.footer-grid a:hover{

    color:gold;

}

.social-icons{

    display:flex;
    gap:20px;
    margin-top:20px;

}

.social-icons a{

    width:50px;
    height:50px;

    background:#222;

    display:flex;

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

    border-radius:50%;

    color:gold;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    background:gold;
    color:black;

}

footer hr{

    margin:40px 0;

    border:1px solid #333;

}

.copyright{

    text-align:center;

    color:#aaa;

}

/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:992px){

header{

    flex-direction:column;
    gap:20px;

}

nav ul{

    flex-wrap:wrap;
    justify-content:center;

}

.contact-container{

    grid-template-columns:1fr;

}

.billing-form .row{

    flex-direction:column;

}

.newsletter form{

    flex-direction:column;

}

.hero-content h1{

    font-size:60px;

}

.hero-content h2{

    font-size:30px;

}

.stats{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

section{

    padding:70px 5%;

}

.hero{

    text-align:center;

}

.hero-buttons{

    flex-direction:column;

}

.hero-content h1{

    font-size:45px;

}

.hero-content h2{

    font-size:24px;

}

.hero-content p{

    font-size:16px;

}

.stats{

    grid-template-columns:1fr;

}

.product-grid,
.review-grid,
.about-boxes,
.why-grid{

    grid-template-columns:1fr;

}

}

/* ===========================
      SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:gold;
    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FFD700;

}