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

body{
font-family:Arial,sans-serif;
background:#111;
color:white;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,.95);
z-index:999;
}

.nav-container{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.nav-logo{
color:white;
font-size:1.4rem;
font-weight:bold;
text-decoration:none;
}

.nav-menu{
display:flex;
gap:30px;
list-style:none;
}

.nav-menu a{
color:white;
text-decoration:none;
}

.nav-menu a:hover{
color:#2d8a50;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('../images/foret.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding-top:80px;
}

.logo{
width:350px;
max-width:90%;
margin-bottom:20px;
}

.hero h1{
font-size:3rem;
margin-bottom:15px;
}

.hero p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
background:#1d5c38;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:6px;
}

section{
padding:90px 0;
}

h2{
text-align:center;
margin-bottom:40px;
color:#2d8a50;
}

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

.card{
background:#1d1d1d;
padding:30px;
border-radius:12px;
}

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

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
background:#1d1d1d;
border:none;
color:white;
border-radius:6px;
}

button{
background:#1d5c38;
padding:15px;
border:none;
color:white;
cursor:pointer;
border-radius:6px;
}

footer{
background:black;
padding:25px;
text-align:center;
}

@media(max-width:768px){

.nav-menu{
display:none;
}

.hero h1{
font-size:2rem;
}

.logo{
width:250px;
}

}