/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

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

body{
    font-family:'Poppins',sans-serif;
    background:#fdf8ef;
    color:#333;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

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

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    z-index:999;
}

.logo img{

    height:70px;
    width:auto;
}

.contact-btn{

    background:#1f5d2f;
    color:white;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;
}

.contact-btn:hover{

    background:#d4a017;

    transform:translateY(-3px);
}

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

.hero{

    height:100vh;

    background:url("images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}

.hero::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);
}

.overlay{

    position:relative;

    text-align:center;

    color:white;

    width:90%;

    max-width:900px;
}

.overlay h1{

    font-family:'Cinzel',serif;

    font-size:75px;

    color:#FFD700;

    margin-bottom:20px;
}

.overlay h2{

    font-size:36px;

    margin-bottom:20px;

    font-weight:600;
}

.overlay p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;
}

/* ===========================
   BUTTON
=========================== */

.btn{

    display:inline-block;

    padding:18px 45px;

    background:#d4a017;

    color:white;

    font-size:18px;

    border-radius:50px;

    transition:.35s;
}

.btn:hover{

    background:#1f5d2f;

    transform:translateY(-5px);
}

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

.about{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image img{

    border-radius:25px;

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

.about-content h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    color:#1f5d2f;

    margin-bottom:25px;
}

.about-content p{

    font-size:18px;

    line-height:2;

    color:#555;
}

/* ===========================
   SECTION TITLES
=========================== */

section h2{

    text-align:center;

    font-family:'Cinzel',serif;

    font-size:44px;

    color:#1f5d2f;

    margin-bottom:60px;
}

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

.features{
    padding:120px 8%;
    background:#fff;
}

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

.card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.card i{
    font-size:55px;
    color:#d4a017;
    margin-bottom:20px;
}

.card h3{
    color:#1f5d2f;
    font-size:24px;
    margin-bottom:15px;
}

.card p{
    color:#666;
    line-height:1.8;
}

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

#products{
    padding:120px 8%;
    background:#f8f5ef;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.product{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.product:hover{
    transform:translateY(-10px);
}

.product img{
    height:350px;
    object-fit:cover;
}

.product h3{
    padding:25px;
    text-align:center;
    font-size:28px;
    color:#1f5d2f;
}

.product p{
    padding:0 25px 30px;
    text-align:center;
    color:#666;
}

/* ===========================
   PHOTO GALLERY
=========================== */

#gallery{
    padding:120px 8%;
    background:#fff;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}

/* ===========================
   VIDEO SECTION
=========================== */

#videos{
    padding:120px 8%;
    background:#f8f5ef;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:35px;
}

.video-grid video{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* ===========================
   LAB TESTED
=========================== */

.lab{
    padding:120px 10%;
    background:#1f5d2f;
    color:white;
    text-align:center;
}

.lab h2{
    color:#FFD700;
    margin-bottom:30px;
}

.lab p{
    font-size:20px;
    max-width:850px;
    margin:auto;
    line-height:2;
}

/* ===========================
   SIMPLE ANIMATION
=========================== */

.card,
.product,
.gallery img,
.video-grid video{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

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

#contact{
    padding:120px 8%;
    background:#ffffff;
}

#contact form{
    max-width:750px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

#contact input,
#contact textarea{

    width:100%;
    padding:18px 22px;

    border:none;
    outline:none;

    background:#f5f5f5;

    border-radius:15px;

    font-size:16px;

    transition:.3s;
}

#contact input:focus,
#contact textarea:focus{

    background:#fff;
    border:2px solid #d4a017;

    box-shadow:0 0 15px rgba(212,160,23,.25);

}

#contact textarea{

    resize:none;
    min-height:180px;

}

#contact button{

    width:220px;

    margin:auto;

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    background:#1f5d2f;

    color:#fff;

    transition:.35s;

}

#contact button:hover{

    background:#d4a017;

    transform:translateY(-5px);

}

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

footer{

    background:#1f5d2f;

    color:#fff;

    padding:60px 8%;

    text-align:center;

}

footer h2{

    color:#FFD700;

    margin-bottom:20px;

}

footer p{

    margin:12px 0;

    font-size:17px;

}

.social{

    margin-top:30px;

}

.social i{

    width:55px;
    height:55px;

    line-height:55px;

    text-align:center;

    border-radius:50%;

    margin:0 8px;

    font-size:22px;

    color:white;

    background:#d4a017;

    transition:.35s;

}

.social i:hover{

    transform:translateY(-8px);

    background:white;

    color:#1f5d2f;

}

/* ===================================
   WHATSAPP BUTTON
=================================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

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

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/* ===================================
   SCROLL TO TOP BUTTON
=================================== */

.top-btn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#d4a017;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:22px;

    transition:.35s;

    z-index:999;

}

.top-btn:hover{

    background:#1f5d2f;

}

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

@media(max-width:992px){

header{

    padding:15px 5%;

}

.logo img{

    height:55px;

}

.hero h1{

    font-size:55px;

}

.hero h2{

    font-size:30px;

}

.about{

    grid-template-columns:1fr;

    text-align:center;

}

.video-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero{

    padding:0 20px;

}

.overlay h1{

    font-size:42px;

}

.overlay h2{

    font-size:24px;

}

.overlay p{

    font-size:17px;

}

section{

    padding:80px 20px;

}

.cards{

    grid-template-columns:1fr;

}

.product-grid{

    grid-template-columns:1fr;

}

.gallery{

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

}

footer{

    padding:50px 20px;

}

}

@media(max-width:500px){

.gallery{

    grid-template-columns:1fr;

}

.contact-btn{

    padding:10px 18px;

    font-size:14px;

}

.logo img{

    height:45px;

}

.overlay h1{

    font-size:34px;

}

.overlay h2{

    font-size:20px;

}

.overlay p{

    font-size:15px;

}

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}

::-webkit-scrollbar-thumb{

    background:#1f5d2f;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d4a017;

}

.contact-text{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* ==========================
   WHERE TO BUY
========================== */

#buy{

    padding:120px 8%;

    background:#fff;

}

.buy-text{

    max-width:800px;

    margin:auto;

    text-align:center;

    color:#666;

    line-height:1.8;

    margin-bottom:60px;

    font-size:18px;

}

.buy-grid{

    display:grid;

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

    gap:30px;

}

.buy-card{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.buy-card:hover{

    transform:translateY(-10px);

}

.buy-card img{

    width:80px;

    margin:auto;

    margin-bottom:20px;

}

.buy-card h3{

    color:#1f5d2f;

    margin-bottom:12px;

}

.buy-card span{

    background:#d4a017;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    display:inline-block;

    font-size:14px;

}

/* ==========================
   OUR PROMISE
========================== */

#promise{

    padding:120px 8%;

    background:#fdf8ef;

}

.promise-text{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.promise-grid{

    display:grid;

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

    gap:30px;

}

.promise-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.promise-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.promise-icon{

    font-size:55px;

    margin-bottom:20px;

}

.promise-card h3{

    color:#1f5d2f;

    margin-bottom:18px;

    font-size:24px;

}

.promise-card p{

    color:#666;

    line-height:1.8;

}

.products-text{
    text-align:center;
    color:#666;
    max-width:700px;
    margin:0 auto 60px;
    font-size:18px;
}

.featured-product{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

.featured-image img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.tag{
    display:inline-block;
    background:#d4a017;
    color:#fff;
    padding:8px 18px;
    border-radius:25px;
    margin-bottom:20px;
    font-weight:600;
}

.featured-content h3{
    font-size:42px;
    color:#1f5d2f;
    margin-bottom:20px;
}

.featured-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

.product-features{
    list-style:none;
    padding:0;
}

.product-features li{
    margin:12px 0;
    color:#444;
    font-size:17px;
}

.coming-soon{
    text-align:center;
}

.coming-soon h3{
    color:#1f5d2f;
    margin-bottom:40px;
    font-size:34px;
}

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

.coming-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.coming-card:hover{
    transform:translateY(-8px);
}

.coming-card img{
    width:120px;
    margin:0 auto 20px;
}

.coming-card span{
    display:inline-block;
    margin-top:15px;
    background:#d4a017;
    color:#fff;
    padding:8px 15px;
    border-radius:25px;
}

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-video{

    position:absolute;

    top:50%;

    left:50%;

    min-width:100%;

    min-height:100%;

    transform:translate(-50%,-50%);

    object-fit:cover;

    z-index:-2;

}

.hero::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

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

    z-index:-1;

}

.overlay{

    text-align:center;

    color:white;

    max-width:900px;

    padding:20px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

}

.btn-outline{

    display:inline-block;

    padding:18px 40px;

    border:2px solid white;

    color:white;

    border-radius:40px;

    transition:.3s;

}

.btn-outline:hover{

    background:white;

    color:#1f5d2f;

}