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

body{
font-family:"Poppins",sans-serif;
background-color:#f5f7f6;
color:#333;
line-height:1.6;
min-height:100vh;
display:flex;
flex-direction:column;
}

header{
background:#1f3c2c;
color:white;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
}

header h1{
margin-bottom:10px;
font-size:22px;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
}

nav a:hover{
opacity:.8;
text-decoration:underline;
}

main{
width:100%;
max-width:1100px;
margin:0 auto;
padding:40px 20px;
flex:1;
}

footer{
background:#1f3c2c;
color:white;
text-align:center;
padding:15px;
margin-top:60px;
}

.hero{
background:white;
padding:60px 40px;
border-radius:8px;
width:100%;
max-width:900px;
margin:0 auto;
text-align:center;
}

.trail-overview{
margin-top:60px;
text-align:center;
}

.trail-overview h2{
margin-bottom:30px;
}

.overview-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
width:100%;
max-width:900px;
margin:0 auto;
}

.overview-item{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 4px 8px rgba(0,0,0,.05);
}

.trail-purpose{
margin:80px auto 40px auto;
text-align:center;
max-width:900px;
width:100%;
}

.trail-purpose h2{
margin-bottom:20px;
}

.accessibility{
margin:80px auto 0 auto;
background:white;
padding:40px;
border-radius:8px;
max-width:900px;
width:100%;
text-align:center;
}

.accessibility h2{
margin-bottom:20px;
}

.accessibility p{
margin-bottom:15px;
max-width:700px;
margin-left:auto;
margin-right:auto;
text-align:center;
}

.page-intro{
text-align:center;
margin-bottom:50px;
}

.stop{
background:white;
padding:30px;
border-radius:8px;
margin-bottom:40px;
box-shadow:0 4px 8px rgba(0,0,0,.05);
}

.video-section,
.games-section{
margin-bottom:60px;
text-align:center;
}

.video-container video{
width:100%;
max-width:900px;
border-radius:8px;
}

.game-container iframe{
width:100%;
max-width:900px;
height:500px;
border:none;
border-radius:8px;
}

.menu-toggle{
display:none;
background:none;
border:none;
font-size:28px;
color:white;
cursor:pointer;
}

.place-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 8px rgba(0,0,0,.05);
text-align:center;
}

.places-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:30px;
margin-top:40px;
}

.game-container{
display:flex;
flex-direction:column;
gap:40px;
align-items:center;
}

.game-container h4{
margin-bottom:10px;
}

.gallery-section{
margin-top:60px;
margin-bottom:60px;  
text-align:center;
}

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

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

.game-button{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#1f3c2c;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.game-button:hover{
opacity:.85;
}

.games-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:30px;
margin-top:40px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.game-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 8px rgba(0,0,0,.05);
text-align:center;
}

.game-card h4{
margin-bottom:10px;
}

.game-card p{
margin-bottom:15px;
}

.game-btn{
display:inline-block;
padding:12px 20px;
background:#1f3c2c;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.game-btn:hover{
opacity:.85;
}

.video-container{
position:relative;
width:100%;
max-width:900px;
margin:0 auto;
padding-bottom:56.25%; /* 16:9 ratio */
height:0;
}

.video-container iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:none;
border-radius:8px;
}

@media(max-width:768px){

.hero, .accessibility, .stop {
        padding: 30px 20px; 
        width: 100%;        
    }
  
    .overview-grid {
        grid-template-columns: 1fr; 
    }

header{
flex-wrap:wrap;
padding:20px;
}

nav ul{
display:none;
flex-direction:column;
width:100%;
margin-top:20px;
gap:15px;
}

nav ul.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero h2{
font-size:clamp(22px, 4vw, 32px);
}

.hero p{
font-size:clamp(14px, 2vw, 18px);
}



}