*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f7f8;
color:#222;
overflow-x:hidden;
}

.top-image{
    display:block;
    width:850px;
    max-width:100%;
    height:auto;
    margin:90px auto 10px auto;
}

@media (max-width:768px){
    .top-image{
        width:100vw;
        margin-top:70px;
    }
}

.bg-pattern{
position:fixed;
width:100%;
height:100%;
z-index:-2;
opacity:.03;
background-image:
url("https://www.svgrepo.com/show/276264/football-ball.svg"),
url("https://www.svgrepo.com/show/133406/cone.svg");
background-size:220px;
background-repeat:repeat;
}

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(8px);
}

.navbar{
max-width:1200px;
margin:auto;
padding:15px 25px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-nav{ display:flex; align-items:center; } .logo-nav img{ height:65px; width:auto; max-width:100%; display:block; }


@media (max-width:768px){
    .logo-nav img{
        height:40px;
    }
}

@media (max-width:768px){
    .logo-nav img{
        height:40px;
    }
}


.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#d8ff00;
}

.hamburger{
display:none;
cursor:pointer;
}

.hamburger span{
display:block;
width:28px;
height:3px;
margin:5px;
background:white;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),
rgba(0,0,0,.55)),
url("hero.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero-logo{
width:250px;
animation:float 4s ease-in-out infinite;
}

.hero h1{
font-size:4rem;
color:white;
margin-top:20px;
}

.hero p{
font-size:1.3rem;
color:white;
margin:20px 0;
}

.hero-btn{
display:inline-block;
padding:15px 35px;
background:#d8ff00;
color:#111;
font-weight:700;
border-radius:40px;
text-decoration:none;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.section{
padding:120px 20px;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:3rem;
color:#111;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card i{
font-size:50px;
color:#d8ff00;
margin-bottom:15px;
}

.dark{
background:#111;
color:white;
}

.dark h2{
color:white;
}

.schedule{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.schedule-box{
background:#1c1c1c;
padding:40px;
border-radius:20px;
text-align:center;
border:2px solid #d8ff00;
}

.free-entry{
margin-top:60px;
text-align:center;
}

.free-entry h3{
font-size:2rem;
color:#d8ff00;
}

.about{
max-width:900px;
margin:auto;
font-size:1.15rem;
line-height:2;
text-align:center;
}

.contact-box{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.contact-box a{
text-decoration:none;
background:#d8ff00;
color:#111;
padding:18px 25px;
border-radius:12px;
font-weight:600;
}

footer{
background:black;
color:white;
padding:25px;
text-align:center;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:white;
text-decoration:none;
z-index:999;
}

#topBtn{
position:fixed;
right:20px;
bottom:100px;
width:55px;
height:55px;
border:none;
background:#d8ff00;
cursor:pointer;
border-radius:50%;
font-size:20px;
display:none;
z-index:999;
}

.reveal{
opacity:0;
transform:translateY(80px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){

.hero h1{
font-size:2.2rem;
}

.hero-logo{
width:180px;
}

.nav-links{
position:absolute;
top:95px;
left:-100%;
width:100%;
background:#111;
flex-direction:column;
text-align:center;
padding:30px 0;
transition:.4s;
}

.nav-links.active{
left:0;
}

.hamburger{
display:block;
}

.countdown{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.countdown div{
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
padding:20px;
border-radius:20px;
min-width:110px;
}

.countdown span{
font-size:2rem;
font-weight:700;
color:#d8ff00;
display:block;
}

.countdown p{
color:white;
margin-top:5px;
}

.stats{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
margin-top:60px;
}

.stat{
text-align:center;
}

.stat h2{
font-size:4rem;
color:#d8ff00;
}


}

@media (max-width:768px){

.logo-nav img{
    height:45px;
}

}