/* styles.css */

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3 {
    color: #00796b;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #44ee7a;
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
    position: relative;
}
.school-image {
    width: 300px;
    height: 400px;
    opacity: 0.5;
}
.header-content {
    position: absolute;
    text-align: center;
}
.header h1 {
    font-size: 2.5rem;
}
.header p {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    background-color: white;
    border-radius: 8px;
}

/* About Us Section */
.about-us {
    text-align: center;
}

/* Principal Section */
.principal {
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.principal-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

/* Extracurricular Section */
.extracurricular {
    text-align: center;
}
.card-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.card {
    background-color: #e0f2f1;
    border-radius: 8px;
    width: 45%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.card-text {
    padding: 15px;
}
.card h3 {
    margin-bottom: 10px;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00796b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.button:hover {
    background-color: #004d40;
}

/* Facilities Section */
.facilities {
    text-align: center;
}
.map-container {
    text-align: center;
    margin-top: 20px;
}

/* Location Section */
.location {
    text-align: center;
    background-color: #e0f2f1;
    padding: 20px 0;
}
.map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    background-color: #00796b;
    color: white;
    padding: 10px;
}
