body{
margin:0;
font-family:Georgia,serif;
background:#f5f3ef;
color:#333;
line-height:1.6;
}

.hero{
min-height:100vh;
background:url("images/bamboo-reading.jpg") center/cover no-repeat;
display:flex;
justify-content:center;
align-items:flex-start;
padding-top:120px;
padding-left:20px;
padding-right:20px;
text-align:center;
}.hero-box{
background:rgba(0,0,0,0.5);
color:white;
padding:40px;
border-radius:10px;
}

.start-btn{
background:#b38b2d;
color:white;
padding:12px 28px;
text-decoration:none;
border-radius:6px;
font-size:18px;
display:inline-block;
margin-top:20px;
transition:all 0.3s ease;
box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

.start-btn:hover{
background:#9a7420;
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,0.35);
}
.about{
padding:40px;
max-width:800px;
margin:auto;
text-align:center;
}

.page{
max-width:800px;
margin:auto;
background:white;
padding:40px;
margin-top:40px;
border-radius:8px;
}

.navigation{
display:flex;
justify-content:center;
gap:20px;
margin:40px auto;
}

.nav-btn{
background:#2c7a7b;
color:white;
padding:12px 24px;
text-decoration:none;
border-radius:6px;
font-size:16px;
transition:all 0.2s ease;
}

.nav-btn:hover{
background:#1f5859;
}
.overlay{
background:rgba(0,0,0,0.55);
backdrop-filter:blur(4px);
color:white;
padding:40px;
border-radius:14px;
max-width:600px;
width:90%;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.35);
}
.tagline{
font-style:italic;
margin-bottom:5px;
}

.activities{
padding:60px 20px;
text-align:center;
background:#ffffff;
}

.activity-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
max-width:900px;
margin:auto;
}

.card{
background:#f2ede3;
padding:20px;
border-radius:8px;
}

footer{
background:#eee;
padding:20px;
text-align:center;
}
@media (max-width:600px){

.hero{
background-position:center top;
}
.overlay{
padding:25px;
}

.overlay h1{
font-size:26px;
}

.overlay h2{
font-size:18px;
}

.location{
opacity:0.9;
font-size:30px;
letter-spacing:1px;
margin-bottom:5px;
}

.tagline{
font-size:14px;
}

.start-btn{
font-size:16px;
padding:10px 20px;
}

}

.months{
padding:60px 20px;
text-align:center;
}

.month-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
max-width:900px;
margin:auto;
}

.month-card{
display:block;
background:#f2ede3;
padding:25px;
border-radius:8px;
text-decoration:none;
color:#333;
font-size:18px;
transition:all 0.3s ease;
box-shadow:0 3px 8px rgba(0,0,0,0.15);
}

.month-card:hover{
background:#e5ddcc;
transform:translateY(-3px);
box-shadow:0 6px 14px rgba(0,0,0,0.25);
}

@media (min-width:900px){

.hero{
background-size:contain;
background-position:center top;
background-repeat:no-repeat;
background-color:#3c6e71;
}

}