*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

header{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
}

.logo{
font-size:28px;
font-weight:700;
color:#0a5c36;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
font-weight:500;
color:#333;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
max-width:800px;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
line-height:1.8;
margin-bottom:30px;
}

.btn{
background:#2e8b57;
padding:15px 35px;
border-radius:50px;
color:white;
text-decoration:none;
font-weight:600;
}

.container{
padding:100px 10%;
}

.container h2{
text-align:center;
margin-bottom:30px;
font-size:40px;
color:#0a5c36;
}

.container p{
text-align:center;
line-height:1.8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.1);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:20px;
}

.card p{
padding:0 20px 20px;
text-align:left;
}

.attractions{
background:#f7f7f7;
padding:100px 10%;
}

.attractions h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
color:#0a5c36;
}

.attraction-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.attraction{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.stats{
display:flex;
justify-content:center;
gap:40px;
padding:80px;
background:#0a5c36;
color:white;
flex-wrap:wrap;
}

.stat-box{
text-align:center;
}

.stat-box h3{
font-size:42px;
}

.contact-container{
padding:100px 10%;
}

.contact-container h2{
text-align:center;
margin-bottom:40px;
color:#0a5c36;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,
textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
}

button{
padding:15px;
background:#0a5c36;
color:white;
border:none;
cursor:pointer;
font-size:18px;
border-radius:8px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

header{
flex-direction:column;
gap:10px;
}
