*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#222;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0d5b2a;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h2{
color:#fff;
}

.logo span{
color:#d6d6d6;
font-size:13px;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),
rgba(0,0,0,.55)),
url('../assets/flyer.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-content{
max-width:800px;
color:white;
padding:20px;
}

.badge{
background:#0d5b2a;
padding:10px 25px;
border-radius:40px;
display:inline-block;
margin-bottom:20px;
}

.hero h1{
font-family:'Cinzel',serif;
font-size:4rem;
margin-bottom:20px;
}

.hero h3{
font-size:1.7rem;
margin-bottom:20px;
color:#f4c542;
}

.btn{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#b70000;
color:white;
text-decoration:none;
border-radius:6px;
}

.section{
padding:80px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:2.4rem;
color:#0d5b2a;
}

.center-text{
max-width:900px;
margin:auto;
text-align:center;
}

.event-banner{
background:#b70000;
color:white;
padding:80px 0;
text-align:center;
}

.theme-box{
background:white;
color:#111;
padding:30px;
max-width:700px;
margin:30px auto;
border-radius:10px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.date{
background:#0d5b2a;
color:white;
padding:10px;
border-radius:6px;
margin-bottom:20px;
font-weight:600;
}

.grand-finale{
border:3px solid #b70000;
}

.flyer-section{
background:#f7f7f7;
padding:80px 0;
text-align:center;
}

.flyer-section img{
width:100%;
max-width:1000px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.contact-card{
padding:25px;
background:#fff;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
text-align:center;
}

footer{
background:#111;
color:white;
text-align:center;
padding:40px 20px;
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

nav{
display:none;
}

}