*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
}

/* Navbar */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#002147;
    padding:15px 50px;
}

.logo{
    color:white;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:20px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#00bcd4;
}

/* Hero */

.hero{
    height:90vh;
    background:url('../images/banner.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    background:rgba(0,0,0,0.6);
    padding:40px;
    border-radius:10px;
}

.hero h2{
    font-size:50px;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#00bcd4;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

/* Countdown */

.countdown-section{
    text-align:center;
    padding:60px 20px;
}

#countdown{
    font-size:35px;
    margin-top:20px;
    color:#002147;
}

/* Events */

.featured-events{
    padding:60px 20px;
    text-align:center;
}

.event-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.event-card{
    width:300px;
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.event-card h3{
    margin:15px 0;
}

.event-card p{
    padding:0 15px 20px;
}

/* Footer */

footer{
    background:#002147;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
}

/* Responsive */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
    }

    .nav-links{
        margin-top:10px;
    }

    .hero h2{
        font-size:35px;
    }
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:40px;
}

.gallery img{
    width:100%;
    border-radius:10px;
}

.form-section{
    display:flex;
    justify-content:center;
    align-items:center;
    height:80vh;
}

form{
    background:white;
    padding:40px;
    width:400px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

form input,
form select{
    width:100%;
    padding:12px;
    margin:15px 0;
}