* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
}

/* ====== Navbar ====== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0F52BA;
    color: white;
    padding: 0;
    overflow: hidden;
    height: 100px;
    position: relative;
}

.angled-bg {
    padding: 1rem 15rem;
    background: #ffffff;
    clip-path: polygon(0 0, 80% 0, 95% 100%, 0% 100%);
    width: 280px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angled-bg img {
    height: 170px;
    width: auto;
    margin-right: 120px;
    /* margin-top: 40px; */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}


.nav-links {
    transition: max-height 0.4s ease;
}

.nav-links ul {
    display: flex;
    gap: 4rem;
    list-style: none;
    margin-right: 6rem;
}

.navbar a {
    color: rgb(255, 255, 255);
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ffcb05;
}

/* Title */
.title {
    text-align: center;
    font-size: 3.5rem;
    margin-top: 60px;
    letter-spacing: 4px;
    font-weight: 800;
    font-family: "Tinos", serif;
    color: #0F52BA;

}

/* Section Layout */
.activities-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 60px 80px;
    justify-items: center;
}

/* Card style */
.activity-card {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    border: 2px solid #d4a746;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 15px;
}

.activity-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0F52BA;    /* Light gold */
}

.activity-content p {
    font-size: 0.95rem;
    line-height: 1.4;
}


.footer {
    background: white;
    text-align: center;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 170px;
}

.footer-link {
    color: inherit;
    /* Same color as footer text */
    text-decoration: none;
    /* Remove underline */
    font-weight: 600;
}


@media (max-width: 1200px) {
        .navbar {
                width: 100% !important;
                max-width: 100% !important;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        
            .menu-toggle {
                display: flex;
                margin-right: 20px;
                z-index: 1001;
            }
        
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
        
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
        
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        
            .nav-links {
                position: fixed;
                top: 0;
                left: -260px;
                width: 250px;
                height: 100vh;
                background: #ffffff;
                padding-top: 120px;
                transition: 0.4s;
                z-index: 1000;
            }

            .nav-links li a{
                color: black;
            }
        
            .nav-links.active {
                left: 0;
            }
        
            .nav-links ul {
                flex-direction: column;
                gap: 2rem;
                margin: 0;
                padding-left: 30px;
            }
        
            .angled-bg {
                padding: 1rem 2rem;
                width: 180px;
                height: 100px;
            }
        
            .angled-bg img {
                height: 70px;
                margin: 0;
                /* margin-top: 20px; */
                margin-right: 20px;
            }
}

@media (max-width: 900px) {


    .navbar {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
        margin-right: 20px;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -260px;
        width: 250px;
        height: 100vh;
        background: #ffffff;
        padding-top: 120px;
        transition: 0.4s;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a{
        color: black;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
        margin: 0;
        padding-left: 30px;
    }

    .angled-bg {
        padding: 1rem 2rem;
        width: 180px;
        height: 100px;
    }

    .angled-bg img {
        height: 70px;
        margin: 0;
        /* margin-top: 20px; */
        margin-right: 20px;
    }

    .title{
        font-size: 3rem;
    }
    .activities-section{
        justify-content: center;
    }


}