:root {
    --primary-color: #158c86;
    --secondary-color: #802469;
    --background-light: #f1f9fa;
    --footer-bg: #f8f9fa;
    --footer-text: #333;
    --border-color: #c9c9c9;
    --bar-green: #d2d7d7;
    --bar-purple: #802469;
    --members-bar: #00a79f;
    --gradient-colors: linear-gradient(to right, #F26D9E, #A6377F, #236E8C, #C7D93D, #F1F2D8);
}

a, a:visited, .nav-link, .nav-link:visited {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: bold;
}

.text-green {
    color: var(--primary-color) !important;
}

.top-line {
    height: 30px;
    background-color: var(--secondary-color);
}

.logo img {
    height: 100px;
    position: relative;
    top: 15px;
}

.bottom-line {
    height: 2px;
    background-color: var(--secondary-color);
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background-color: white;
    padding: 0 15px;
}

.social-links a {
    color: black;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
}

.navbar {
    flex-grow: 1;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: black;
}

.navbar-collapse {
    background-color: white;
    padding: 10px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
    }
    .navbar-collapse {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .banner-wrapper {
        margin-left: 0;
        margin-top: 20px;
    }
}

.logo-overlay {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 120px;
    width: auto;
}

.color-bar {
    height: 15px;
    background: var(--gradient-colors);
    width: 100%;
}

.color-bar_2 {
    height: 5px;
    background: var(--gradient-colors);
    width: 100%;
}

.green-bar {
    height: 3px;
    background-color: var(--bar-green);
    width: 100%;
}

.purple-bar {
    height: 5px;
    background-color: var(--bar-purple);
    width: 100%;
}

.footer {
    background-color: var(--footer-bg);
    padding: 20px 0;
}

.footer a {
    text-decoration: none;
    color: var(--footer-text);
}

.footer a:hover {
    text-decoration: underline;
}

.president_sms {
    background-color: var(--bar-green);
}

.president_sms_Article {
    border-bottom: 1px solid var(--border-color);
}



.banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
   
    background-color: var(--background-light);
}

