/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: 		#009E60; /* Dark Green Background */
    color: #0000000; /* Light greenish text for readability */
}

/* Navigation Bar */
nav {
    background-color: #003300; /* Darker Green */
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 10px;
    padding: 8px 12px;
    display: inline-block;
}

nav a:hover {
    background-color: #002200;
    border-radius: 5px;
}

nav a.active {
    background-color: #006600; /* Brighter Green for Active Tab */
    border-radius: 5px;
}

/* Title Styling */
h1 {
    font-size: 32px;
    font-weight: bold;
    background-color: /* Darker Green */
    padding: 15px;
    margin-top: 60px;
    color: #ccffcc; /* Light Green */
}

/* Sections - Green Themed */
section {
    text-align: center;
    padding: 40px;
    background-color: #FFFAA0; /* Improved green for visibility */
    margin-bottom: 20px;
    border-radius: 5px;
    color: #e0ffe0; /* Light green text */
}

/* Hero Section */
.hero {
    background: url('school.jpg') no-repeat center center/cover;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    padding: 14px;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
}

/* School Image */
.school-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 3px solid #004d00;
}

/* Content Section */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: #FBEC5D; /* Yellow */
    color: #000000; /* BLACK */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 20px;
}

/* Styled Headings */
h2 span {
    color: #FFFAA0; /* Light Green */
}

/* Sections */
.section {
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid #004d00;
    background:   	#93C572; /* Slightly lighter green */
    border-radius: 5px;
    color: #000000;
}

.section h3 {
    color: #000000; /* Lighter green for contrast */
}

/* Form Styling */
.form-container {
    background: white; /* White Background */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: black; /* Black text for readability */
}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #FFFAA0; /* Dark Green Title */
}

.form-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #000000; /* Dark Green */
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #99ff99;
    border-radius: 5px;
}

.form-container button {
    background-color: #33cc33;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #29a329;
}

/* Activities Section */
.activities {
    text-align: center;
    padding: 40px;
    background-color: 		#009E60;
    color: #000000;
}

.activities h1 {
    color: #000000;
}

/* Event Section */
.event {
    margin: 30px auto;
    padding: 20px;
    max-width: 900px;
    background: #FBEC5D;
    color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: left;
}

.event h3 {
    color: #000000;
}

.event p {
    font-size: 16px;
    line-height: 1.6;
}

/* Photo Gallery */
.photo-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.photo-gallery img {
    width: 30%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Principal Section */
.principal {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.principal img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid black;
}

/* Faculty Section */
.faculty-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.faculty {
    text-align: center;
    width: 150px;
    color: #000000;
}

.faculty img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #004d00;
}

.faculty p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

/* Call-to-Action Button (Enroll Now) */
.cta {
    display: block;
    text-align: center;
    background: #33cc33;
    color: white;
    padding: 10px 20px;
    margin: 20px auto;
    width: 200px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta:hover {
    background: #29a329;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #003300;
    color: #e0ffe0;
    margin-top: 20px;
}