*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

:root{
--gold:#D4AF37;
--green:#0E5A36;
--black:#111111;
--white:#ffffff;
--gray:#f5f5f5;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.9);
z-index:1000;
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
height:60px;
width:auto;
}

.brand h2{
color:white;
font-size:24px;
}

.brand p{
color:var(--gold);
font-size:12px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:var(--gold);
}

.menu-btn{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url("images/momo1.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
position:relative;
}

.hero-content{
max-width:850px;
z-index:2;
}

.hero h1{
font-size:60px;
color:white;
font-weight:800;
}

.hero p{
font-size:22px;
color:white;
margin-top:20px;
line-height:1.7;
}

.btn{
display:inline-block;
padding:15px 35px;
background:var(--gold);
color:black;
text-decoration:none;
font-weight:700;
border-radius:50px;
margin-top:25px;
transition:.3s;
}

.btn:hover{
transform:translateY(-5px);
}

/* GENERAL */

section{
padding:100px 5%;
}

.title{
text-align:center;
font-size:42px;
color:var(--green);
margin-bottom:40px;
}

.center{
text-align:center;
max-width:1000px;
margin:auto;
line-height:1.9;
}

/* PRODUCTS */

.product-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.product-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.1);
transition:.4s;
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
width:100%;
height:250px;
object-fit:cover;
}

.product-card h3{
padding:20px;
text-align:center;
color:var(--green);
}

/* STATS */

.stats{
background:var(--green);
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
color:white;
}

.stat-box{
padding:30px;
}

.counter{
font-size:60px;
color:var(--gold);
font-weight:800;
}

/* PROCESS */

.timeline{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.step{
background:#fafafa;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.step h3{
color:var(--green);
}

/* FAQ */

.faq{
max-width:900px;
margin:auto;
}

.faq h3{
margin-top:25px;
color:var(--green);
}

.faq p{
margin-top:10px;
line-height:1.8;
}

/* FORM */

form{
max-width:700px;
margin:auto;
}

input,
textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

textarea{
height:140px;
resize:none;
}

button{
background:var(--gold);
border:none;
padding:15px 35px;
border-radius:40px;
font-weight:700;
cursor:pointer;
}

/* FOOTER */

footer{
background:#111;
padding:50px 20px;
text-align:center;
color:white;
}

.footer-logo{
height:90px;
margin-bottom:20px;
}

footer p{
margin-top:10px;
}

/* MOBILE */

@media(max-width:991px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

nav{
display:none;
position:absolute;
top:90px;
left:0;
width:100%;
background:#111;
flex-direction:column;
padding:20px;
}

nav.active{
display:flex;
}

.menu-btn{
display:block;
}

.title{
font-size:34px;
}

}

@media(max-width:600px){

.logo-area img{
height:45px;
}

.brand h2{
font-size:18px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.btn{
padding:12px 25px;
}

section{
padding:70px 20px;
}

.counter{
font-size:42px;
}

}