:root{
--primary:#ff7a18;
--secondary:#0f172a;
--light:#f8fafc;
--dark:#020617;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Outfit',sans-serif;
background:var(--dark);
color:white;
overflow-x:hidden;
}

.container{
width:min(1100px,90%);
margin:auto;
}

.navbar{
position:fixed;
top:0;
width:100%;
padding:1rem 5%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
background:rgba(0,0,0,.5);
backdrop-filter:blur(15px);
}

.logo{
font-weight:800;
font-size:1.2rem;
}

.nav-links{
display:flex;
gap:2rem;
list-style:none;
}

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

.hamburger{
display:none;
background:none;
border:none;
color:white;
font-size:1.5rem;
cursor:pointer;
}

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
max-width:800px;
padding:20px;
z-index:2;
}

.tag{
background:rgba(255,255,255,.15);
padding:.5rem 1rem;
border-radius:50px;
}

.hero h1{
font-size:clamp(3rem,10vw,6rem);
margin:1rem 0;
}

.hero-buttons{
margin-top:2rem;
display:flex;
gap:1rem;
justify-content:center;
flex-wrap:wrap;
}

.btn{
background:var(--primary);
padding:14px 28px;
border-radius:40px;
text-decoration:none;
color:white;
font-weight:600;
}

.btn-outline{
background:transparent;
border:2px solid white;
}

section{
padding:100px 0;
}

h2{
text-align:center;
font-size:clamp(2rem,5vw,3rem);
margin-bottom:3rem;
}

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

.feature{
background:#111827;
padding:2rem;
border-radius:20px;
text-align:center;
}

.icon{
font-size:3rem;
margin-bottom:1rem;
}

.events-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:2rem;
}
.eventlink{
    text-decoration: none;
    color: white;
}

.event-card{
background:#111827;
padding:2rem;
border-radius:20px;
}

.date{
color:var(--primary);
font-weight:700;
}

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

.gallery img{
width:100%;
height:280px;
object-fit:cover;
}

.community-text{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:2rem;
}

.whatsapp-button{
display:flex;
justify-content:center;
align-items:center;
gap:.75rem;
width:fit-content;
margin:auto;
background:#25d366;
color:white;
padding:16px 30px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:1rem;
}

input,
textarea{
padding:16px;
border:none;
border-radius:10px;
font-size:1rem;
}

button{
padding:16px;
border:none;
background:var(--primary);
color:white;
border-radius:10px;
cursor:pointer;
}

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

.socials{
margin:1rem 0;
display:flex;
justify-content:center;
gap:1rem;
}

.socials a{
color:white;
font-size:1.4rem;
}

@media(max-width:768px){

.hamburger{
display:block;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#000;
flex-direction:column;
align-items:center;
max-height:0;
overflow:hidden;
transition:.4s;
}

.nav-links.active{
max-height:300px;
padding:20px 0;
}

.hero{
height:90vh;
}

}