/* General styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #f4e7ff;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #8e44dd;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav a:hover {
    color: #8e44dd;
}

.login-btn {
    padding: 10px 20px;
    background: #8e44dd;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.login-btn:hover {
    background: #7329b8;
}

/* HERO */
.hero {
    background: url("https://via.placeholder.com/1400x600") center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    background-color: #b388ff; /* fallback */
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.cta-btn {
    background: white;
    color: #8e44dd;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-btn:hover {
    background: #f3d9ff;
}

/* Sections */
.section {
    padding: 60px 10%;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #8e44dd;
}

.two-col {
    display: flex;
    gap: 40px;
    align-items: center;
}

.two-col img {
    width: 100%;
    border-radius: 10px;
}

/* Purple section */
.purple {
    background: #f7eaff;
}

/* Program cards */
.program-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 10px;
    width: 320px;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #f4e7ff;
    margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .two-col {
        flex-direction: column;
        text-align: center;
    }

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}
