/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    text-align: center;
    transition: background-image 1s ease-in-out;
}

.hero-section h1 {
    font-size: 3em;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#about, #announcements {
    padding: 60px 0;
    background-color: green;
}

#announcements h5 {
    font-weight: bold;
}

/* Navbar styling */
.navbar {
    background-color: #008000;
    color: white;
}

.navbar-nav .nav-item .nav-link {
    color: white;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ccc;
}

/* Footer styling */
footer {
    background-color: #002244;
    color: #ccc;
    padding: 40px 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

footer .container .col-md-4 {
    flex: 1;
    margin-bottom: 20px;
}

footer h5 {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffffff;
}

footer .text-center {
    background-color: #000000;
    padding: 10px;
    color: #ccc;
    font-size: 0.9em;
}

footer .text-center p {
    margin: 0;
}

footer .social-icons a {
    color: #ccc;
    margin: 0 5px;
    font-size: 1.2em;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #ffffff;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: BLUE;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    background-color: darkgreen;
}

/* Fixed Navbar */
.navbar.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

body {
    padding-top: 70px; /* Adjust depending on navbar height */
}
.btn-primary {
    margin: 0 5px;
}

.team-item {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}