html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
}
header {
    background-color: #1f2937;
    padding: 1rem 2rem;
    color: white;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}
.nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #60a5fa;
}
.hero {
    background: linear-gradient(rgba(59, 130, 246, 0.85), rgba(96, 165, 250, 0.85)), url('images/banner.jpg') no-repeat center center/cover;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}
.hero h1{
    font-size: 3rem;
    margin-bottom: 1rem;
    transition-duration: 0.3s;
}

.hero h1:hover{
    color: mediumspringgreen;
}

.hero .btn{
    background-color: white;
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.hero .btn:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-3px);
}
section{
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}
.schedule-list{
    list-style: none;
    padding-left: 0;
}
.schedule-list li{
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #e5e7eb;
    border-left: 5px solid #3b82f6;
    transition-duration: 0.3s;
}
.schedule-list li:hover{
    transform: scale(1.05);
    background-color: rgb(180, 197, 243);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.card {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card h3{
    margin: 1rem 0 0.5rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
form input, form button {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
form button {
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
form button:hover {
    background-color: #2563eb;
}
footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
.social-links a {
    color: #60a5fa;
    margin: 0 0.5rem;
    text-decoration: none;
}



@media(max-width: 760px){
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 2rem 1rem;
    }

    form {
        width: 100%;
        padding: 0 1rem;
    }
}