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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f9fb;
}

ul {
    list-style-type: square; /* square bullets */
    padding-left: 30px;      /* indent from left edge */
}

li {
    margin-bottom: 10px;     /* space between bullet points */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.containeri {
background: #0cc0df;
}

header {
    background: white;
    color: #0cc0df;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    margin-left: auto;
    gap: 10px;
    list-style: none;
    
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 120px;
    height: 45px;
    color: #0cc0df;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #0cc0df;
    color: #fff;
    transform: translateY(-2px);
}

img.responsive {
    display: block;
    height:auto;
    max-width: 100%;
    margin: 0 auto;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background: white;
    color: #0cc0df;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    margin-top: 20px;
    border-radius: 30px;
}

.btn:hover {
    background-color: #0cc0df;
    color: white;
    transform: translateY(-2px);
}

.section {
    padding: 70px 0;
}

footer {
    background: #0cc0df;
    color: white;
    text-align: center;
    padding: 20px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #0cc0df;
    cursor: pointer;
    background: white;
    
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 20px;
    
}


.featured-event {
    background: linear-gradient(135deg, #0057b8, #00a3e0);
    color: white;
    padding: clamp(1.5rem, 4vw, 3rem);
    margin: 2rem 0;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 87, 184, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-event::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.featured-event h2 {
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.featured-event p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        background: white;
        color: #0cc0df;
        border: none;
        cursor: pointer;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        background: white;
        color: #0cc0df;
    }

    .logo {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;   /* left-align flex items */
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        text-align: left;
        color: #0cc0df;
        text-decoration: none;
        box-sizing: border-box;
    }

    .nav-links a:hover {
        background-color: #0cc0df;
        color: white;
        transform: translateY(-2px);
    }

 .featured-event {
        border-radius: 16px;
        margin: 1rem 0;
    }

    .featured-event h2 {
        line-height: 1.2;
    }

    .featured-event::before {
        width: 150px;
        height: 150px;
        top: -50px;
        right: -50px;
    }
    
}
