/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #fff5e6; /* Light orange background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Headlines and Titles */
h1,
h2,
h3,
.nav-links a {
    font-family: 'Press Start 2P', cursive;
}


/* Hyperlinks */
a {
    text-decoration: none;
    background: linear-gradient(to bottom, #4b8f88, #3f6f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header with Hero Section */
.hero-section {
    width: 100%;
    background: linear-gradient(to bottom, #4b8f88, #3f6f81); /* Updated gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 0; /* Remove bottom padding to finish hero at the bottom of the image */
}

.logo-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation should be directly under the image */
.hero-section + .navbar {
    margin-top: 0;
}

/* Navigation Links */
.navbar .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navbar .nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.navbar .nav-links a {
    color: #FF6600; /* Orange color matching the logo */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #FF0000; /* Red color on hover */
}

/* Hero Content */
.hero-content {
    background-color: #fff5e6; /* Match background with header */
    text-align: center;
    padding: 40px 0;
}

.hero-content h2 {
    font-size: 24px;
    color: #FF6600;
    margin-bottom: 20px;
    line-height: 1.2em;
    font-family: 'Press Start 2P', cursive;
}

.hero-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.hero-content .btn {
    background-color: #FF6600;
    color: #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-family: 'Press Start 2P', cursive;
}

.hero-content .btn:hover {
    background-color: #FF0000;
}

/* Section Styles */
section {
    padding: 40px 0;
}

section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2em;
    color: #FF6600;
    position: relative;
    font-family: 'Press Start 2P', cursive;
}

section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #FFFF66;
    display: block;
    margin: 10px auto 0;
}

/* Proposals, Announcements, Schedule, Updates Sections */
.proposals-section,
.announcements-section,
.schedule-section,
.updates-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.proposal-item,
.announcement-item,
.schedule-item,
.update-item {
    margin-bottom: 20px;
}

.proposal-item h3,
.announcement-item h3,
.schedule-item h3,
.update-item h3 {
    line-height: 1.2em;
    font-size: 16px;
    margin-bottom: 10px;
    color: #FF6600;
    font-family: 'Press Start 2P', cursive;
}

.proposal-item p,
.announcement-item p,
.schedule-item p,
.update-item p {
    font-size: 14px;
    color: #777;
    font-family: 'Roboto', sans-serif;
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links li {
        margin: 0 10px;
    }

    .navbar .nav-links a {
        font-size: 12px;
    }

    .hero-content h2 {
        line-height: 1.2em;
        font-size: 18px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-content .btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    section h2 {
        line-height: 1.2em;
        font-size: 18px;
    }

    .proposal-item h3,
    .announcement-item h3,
    .schedule-item h3,
    .update-item h3 {
        line-height: 1.2em;
        font-size: 14px;
    }

    .proposal-item p,
    .announcement-item p,
    .schedule-item p,
    .update-item p {
        font-size: 12px;
    }

    footer p {
        font-size: 11px;
    }
}
