/* ===============================
   Global Styles
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fdfdfd;
    color: #333;
    line-height: 1.6;
}

/* ===============================
   Header
=============================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #C7EAEF;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffb3d9;
}

header .logo {
    font-size: 1.4rem;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #2C2C2C;
}

/* ===============================
   Hero Section (Blank + Clean)
=============================== */
.hero {
    height: 65vh;
    background: #f8fbfc; /* soft professional background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: #333; /* darker text for readability */
    border-bottom: 2px solid #e3f4f7;
}

.hero-text {
    padding: 20px 35px;
    border-radius: 12px;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #ff4da6;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 8px;
    background: #ff4da6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn:hover {
    background: #e60073;
}

/* ===============================
   Section Base Styling
=============================== */
section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ===============================
   Programs Section
=============================== */
.program-list {
    display: grid;
    gap: 20px;
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.program-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.program-card h3 {
    margin-bottom: 10px;
    color: #ff4da6;
}

/* ===============================
   Gallery Section
=============================== */
.gallery-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ===============================
   Contact Form
=============================== */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    padding: 12px;
    border: none;
    background: #2C2C2C;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background: #e60073;
}

/* ===============================
   Enrollment Form
=============================== */
.enrollment-form {
    background: #fff8f0;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px auto;
}

.enrollment-form h2,
.enrollment-form h3 {
    color: #ff6f61;
    margin-bottom: 10px;
}

.enrollment-form input,
.enrollment-form details,
.enrollment-form button {
    width: 100%;
    margin-bottom: 12px;
}

/* ===============================
   Details Dropdown (Optional)
=============================== */
details {
    background: #fff3e6;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ffd1b3;
}

details summary {
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    color: #ff6f61;
}

details[open] {
    animation: expand 0.3s ease-out;
}

@keyframes expand {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Footer
=============================== */
footer {
    background: #ffe6f2;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
    }
}
