/* --- General Styles --- */
:root {
    --primary-color: #0d47a1; /* Deep Blue */
    --secondary-color: #1b5e20; /* Dark Green */
    --accent-color: #cddc39; /* Light Green/Yellow */
    --text-color: #333;
    --background-light: #f4f4f9;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

/* --- Header & Logo --- */
.main-header {
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 10px;
}

.shield {
    width: 30px;
    height: 40px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: absolute;
    top: 0;
    left: 5px;
}

.tree {
    width: 15px;
    height: 15px;
    background: var(--secondary-color);
    position: absolute;
    top: 10px;
    left: 12px;
    border-radius: 50% 50% 0 0;
}

.tree::before, .tree::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
}

.tree::before {
    width: 12px;
    height: 12px;
    top: -5px;
    left: -8px;
}

.tree::after {
    width: 12px;
    height: 12px;
    top: -5px;
    right: -8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* --- Navigation --- */
.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    background-color: var(--primary-color);
    color: white;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x500.png?text=Forest+Hill+College+Campus') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.2rem;
}

/* --- Main Content --- */
.content-section {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    margin-top: 2rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav a {
        display: block;
        text-align: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}


