﻿
<link rel="preconnect" href="https://fonts.googleapis.com" >
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin >
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&person-photo=swap" rel="stylesheet" >

<style >
/* ==============================
   Grants Page
   ============================== */
/**********
html {
    scroll-behavior: smooth;
}
*******/
/* Basic layout for grid container */
.grid-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 200vh;
}

/* Header styling */
header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    padding: 5px 5px;
    height: 60px;
    background-color: #003c5c;
    color: white;
    overflow: visible;
    position: relative;
}


.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background-color: #003c5c;
    object-fit: fill;
}


.banner-text {
    position: absolute; /* Layer the text on top of the video */
    z-index: 2; /* Ensure text appears above the video */
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8); /* Add shadow for better readability */
}

.banner-video video {
    position: absolute;
    top: 5%;
    left: 20%;
    transform: translate(-5%, -5%); /* Center the video */
    min-width: 100%; /* Ensure video covers the width */
    min-height: 100%; /* Ensure video covers the height */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the video cover the entire banner */
    z-index: 1; /* Video behind text */
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1.2em;
}

.banner-media {
    margin-top: 1px;
}

    .banner-media video {
        max-width: 100%;
        height: auto;
        border-radius: 2px;
        object-fit: cover;
    }

/* Logo that hangs over the bar */
.logo {
    position: relative;
    z-index: 2; /* appears on top of bar */
    pointer-events: auto; /* does not ignore touches and clicks */
}

.logo img {
    display: block;
    max-height: none; /* remove any max-height limits */
    height: 120px; /* adjust as desired */
    position: relative;
    top: +25px; /* lower the logo above the header */
    z-index: 2; /* keep it above other elements */
    pointer-events: auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-link img {
    display: block;
}


/* Hamburger menu styling */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: auto; /* This makes the hamburger align to the right */
}

    .hamburger img {
        width: 100%;
        height: auto;
    }

/* Navigation styling ----------- */
nav {
    display: flex;
    align-items: center;
}

    nav ul {
        display: flex;
        gap: 20px;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        nav ul li {
            color: white;
        }

/* Hide the nav links for mobile view */
.nav-links {
    display: flex;
}


/* above to be replaced by nav-menu */


/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

    .nav-menu li a {
        color: white;
        text-decoration: none;
        padding: 10px;
    }

        .nav-menu li a:hover {
            background-color: #555;
            border-radius: 4px;
        }

/* Announcements*/
.announcement-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #ffeeba;
    color: midnightblue;
    padding: 10px 15px;
    font-size: 10px;
    font-weight: 800;
    font-family: Arial, sans-serif;
    position: unset; /* was set to sticky*/
    top: 0;
    z-index: 1000;
    text-align: center;
    animation: fadeSettle 1.8s ease-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: verticalBob 2.5s ease-in-out infinite;
    /* animation: fadeSettle 3s ease-in-out infinite alternate;*/
}
/*
@keyframes fadeSettle {
    0% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
*/

@keyframes verticalBob {
    0% {
        transform: translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
}


.announcement-bar:hover {
    animation-play-state: paused;
}

.announcement-message {
    margin-left: 200px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-link {
    color: #007bff; /* Your brand color */
    font-weight: normal;
    text-decoration: underline;
    margin-right: 8px;
}

.announcement-close {
    background: none;
    border: none;
    font-size: 10px;
    color: #444;
    cursor: pointer;
    margin-left: auto;
}


@media (max-width: 768px) {
    .announcement-bar {
        flex-direction: column;
        font-size: 0.6em;
        padding: 8px;
    }

    .announcement-message {
        margin: 0 8px 6px 200px; 
        font-size: 0.6em;
        display: flex;
        align-self: flex-end;
    }

    .announcement-close {
        align-self: flex-end;
        font-size: 0.6em;
        margin-top: 6px;
    }
    .announcement-link {
        color: #007bff; /* Your brand color */
        font-size: 0.6em;
        font-weight: normal;
        text-decoration: underline;
        margin-right: 8px;
    }
}

@keyframes fadeSettle {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.blinking-dot {
    height: 10px;
    width: 10px;
    background-color: darkblue;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* End Announcements */


/* Main content styling */
main {
    grid-area: main;
    padding: 10px;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    display: grid;
    gap: 10px;
}

.nested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

    .nested-grid div {
        background-color: #fff;
        padding: 10px;
        border: 1px solid #ddd;
    }

footer {
    background-color: #003c5c;
    color: #fff;
    padding: 5px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.8em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 1px;
    flex-wrap: wrap;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

    .footer-right a {
        color: #fff;
        text-decoration: none;
        padding: 1px;
    }

        .footer-right a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1px;
    margin-top: 1px;
    font-size: 0.8em;
}

.social-icons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

    .social-icons li {
        display: inline-block;
    }

    .social-icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
    }

        .social-icons a:hover {
            color: #ddd;
        }


/* People gallery */
.people-header {
    background-color: #f4f4f4;
    color: midnightblue;
    padding: 6px 0;
    margin: 6px 0;
    text-align:center;
}

    .people-header h1 {
        margin: 0;
        padding: 0 10px;
        margin: 0 10px;
        font-size: 1.0rem;
        font-family: Arial, sans-serif;
    }


.people-gallery {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin: 10px 0;
    justify-content: center; /* Horizontally centers the person entries */
}


/* Container for each person */
.person {
    display: flex;
    text-decoration: none; /* Disable underline */
    flex-wrap: wrap;
    width: 450px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    color: midnightblue;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover */
    align-items: flex-start;
}

/* Photo section */
.person-photo {
    flex: 1;
    max-width: 250px;
    margin-right: 10px;
}

    .person-photo img {
        width: 100%;
    }

.person img.person-photo {
    width: 120px;
    height: 150px;
    object-fit: cover;
    margin-right: 15px;
}


/* Bio section */
.person-bio {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: top;
    color: midnightblue;
}

    /* Headings and bio text */
    .person-bio h2 {
        margin: 0;
        font-size: 1.0em;
        color: midnightblue;
    }

    .person-bio p {
        margin: 5px 0;
        font-size: 0.9em;
        color: midnightblue;
    }

/* may not need person h3 and person p */
.person h3 {
    margin: 5px 0;
    font-size: 1.0em;
    color: midnightblue;
}

.person p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.person:hover {
    background-color: #e3e3e3;
    transform: translateY(-5px); /* Adds a slight lift */
    text-decoration: none; /* Disable underline */
}

    /* Link styling */
    .person:hover h3 {
        color: #0077cc; /* Change text color on hover */
    }

    .person:hover p {
        color: #333; /* Darken bio text on hover */
    }
/* -----  */


/* end people gallery */



/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active ul {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2em; /* Smaller font size */
    }

    .hero-content p {
        font-size: 1em; /* Smaller font size */
    }

    .hero-banner video {
        max-width: 100%; /* Ensure the video does not exceed the container's width */
        max-height: 100%; /* Optionally reduce the height for better display on small screens */
        width: 100%;
        object-fit: cover; /* Ensure the video fills the area without stretching */
    }

    /* Optional: Adjust the height of the banner itself */
    .hero-banner {
        height: auto; /* Let the banner width adjust automatically */
    }

    .banner-video video {
        height: 100%;
        object-fit: cover; /* Ensure the video fills the area without stretching */
    }


    main {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .nested-grid {
        grid-template-columns: 1fr; /* Single column for nested grid */
        grid-template-rows: auto; /* Each row takes full width */
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        text-align: left;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        margin-bottom: 10px;
    }

        .footer-right a {
            display: inline-block;
            margin: 0 10px;
        }


    .nav-menu {
        display: none; /* Hidden by default on small screens */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #003c5c;
        flex-direction: column;
        width: 150px;
        padding: 0;
        margin: 0;
        z-index: 5;
    }

        .nav-menu.show {
            display: flex; /* Display the menu when .show class is toggled */
        }

    .hamburger {
        display: block; /* Show hamburger on small screens */
    }

    .nav-menu li {
        text-align: center;
        padding: 15px 0;
    }

        .nav-menu li a {
            display: block;
            width: 100%;
        }


    .event-content {
        flex-direction: column;
    }

    .media {
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .event-details {
        padding: 15px;
    }

    .about-hero {
        height: 300px; /* Adjust height for smaller screens */
    }

        .about-hero h1 {
            font-size: 2em; /* Further reduced on smaller screens */
        }

        .about-hero p {
            font-size: 1em; /* Further reduced on smaller screens */
        }

    .mission h2, .vision h2, .status h2, .goals h2 {
        font-size: 0.9em; /* Further reduced on smaller screens */
    }

    .mission ul li, .vision p, .status p, .goals p {
        font-size: 0.8em; /* Further reduced on smaller screens */
    }

    .cta a {
        font-size: 0.9em; /* Further reduced on smaller screens */
        padding: 10px 20px; /* Reduced padding */
    }


    .announcement-bar {
        flex-direction: column;
        font-size: 14px;
        padding: 8px;
    }

    .announcement-message {
        margin: 0 0 6px 0;
        justify-content: center;
    }

    .announcement-close {
        align-self: flex-end;
        margin-top: 6px;
    }
}


/* Research Areas Section */
.research-areas-header {
    background-color: #f4f4f4;
    color: midnightblue;
    padding: 6px 0;
    margin: 6px 0;
    text-align: center;
}

    .research-areas-header h1 {
        margin: 0;
        padding: 0 10px;
        margin: 0 10px;
        font-size: 1.0rem;
        color: midnightblue;
        font-family: Arial, sans-serif;
    }

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
}



.research-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left-align content */
    text-align: left; /* Text left-align */
    padding: 20px;
    border-left: 1px solid #e0e0e0; /* Vertical line between columns */
    min-height: 400px; /* Minimum height to make the columns taller */
}

    .research-area:first-child {
        border-left: none; /* Remove left border for the first item */
    }

.research-link {
    text-decoration: none;
    color: inherit;
    width: 100%; /* Ensure link covers full width */
}

.research-area img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.research-content {
    margin-top: 15px;
    width: 100%; /* Ensure the content takes the full width */
}

    .research-content h2 {
        font-size: 0.8em;
        margin-bottom: 10px;
        color: midnightblue;
    }

    .research-content p {
        font-size: 0.8em;
        color: midnightblue;
    }

    .research-content ul {


    }
    .research-content li {
        font-size: 0.8em;
        color: midnightblue;
    }

    .research-content a {
        color: midnightblue;
        font-weight: 700;
        text-decoration: none;
    }

    .research-content a:hover,
    .research-content a:focus {
        text-decoration: underline;
    }


.grants-page {
    background: #ffffff;
    color: #222;
}

.grants-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Hero / intro */

.grants-hero {
    background: #f7f8f5;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e3e5df;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4d7c43;
}

.grants-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #1f2d22;
}

.grants-intro {
    max-width: 760px;
    margin: 1.25rem 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4d4d4d;
}

/* Main content */

.grants-content {
    padding: 3rem 0 4rem;
}

/* Recognition panel */

.grant-recognition-panel {
    background: #ffffff;
    border: 1px solid #e1e4dc;
    border-left: 6px solid #5f8f4e;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
    scroll-margin-top: 100px;
}

.grant-panel-heading {
    margin-bottom: 1.25rem;
}

.grant-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a45d13;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.grant-panel-heading h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.25;
    color: #223027;
}

.grant-description {
    max-width: 850px;
    margin: 0 0 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Links inside the grants page */

.grants-page a {
    color: #2f6f3e;
    font-weight: 650;
    text-decoration: none;
    text-underline-offset: 0.18em;
}

    .grants-page a:hover,
    .grants-page a:focus {
        color: #204f2c;
        text-decoration: underline;
    }

    .grants-page a:focus {
        outline: 2px solid #d98b2b;
        outline-offset: 3px;
        border-radius: 3px;
    }

.grant-title-link {
    color: #223027;
}

    .grant-title-link:hover,
    .grant-title-link:focus {
        color: #2f6f3e;
    }

/* Details list */

.grant-details-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #e7e9e3;
}

.grant-detail-row {
    display: grid;
    grid-template-columns: minmax(170px, 240px) 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e7e9e3;
}

.grant-detail-label {
    font-weight: 700;
    color: #2a342d;
}

.grant-detail-value {
    color: #444;
    line-height: 1.6;
}

/* Timeline */

.grant-timeline-section {
    margin-top: 3.5rem;
    scroll-margin-top: 100px;
}

    .grant-timeline-section h2,
    .grant-impact-note h2 {
        margin: 0 0 1.25rem;
        font-size: clamp(1.45rem, 2.5vw, 2rem);
        color: #223027;
    }

.grant-timeline {
    border-left: 3px solid #d8dfd3;
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.25rem;
    padding: 0 0 1.75rem;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: calc(-1.5rem - 7px);
        top: 0.3rem;
        width: 12px;
        height: 12px;
        background: #5f8f4e;
        border-radius: 50%;
        border: 3px solid #ffffff;
        box-shadow: 0 0 0 1px #5f8f4e;
    }

.timeline-year {
    font-weight: 800;
    color: #a45d13;
}

.timeline-content h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    color: #26342a;
}

.timeline-content p {
    margin: 0;
    line-height: 1.65;
    color: #555;
}

/* Impact note */

.grant-impact-note {
    margin-top: 2.75rem;
    padding: 1.75rem;
    background: #f7f8f5;
    border-radius: 12px;
    border: 1px solid #e1e4dc;
    scroll-margin-top: 100px;
}

.grant-impact-note p {
    max-width: 850px;
    margin: 0;
    line-height: 1.7;
    color: #4d4d4d;
}

/* ==============================
   Projects Page Grant Link
   ============================== */

.grant-support-link a {
    display: inline-block;
    font-size: 0.98em;
    color: #4e206d;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

    .grant-support-link a:hover,
    .grant-support-link a:focus {
        color: #00a3cc;
        border-bottom-color: #00a3cc;
    }

.publication-link a {
    display: inline-block;
    font-size: 0.98em;
    color: #4e206d;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

    .publication-link a:hover,
    .publication-link a:focus {
        color: #00a3cc;
        border-bottom-color: #00a3cc;
    }


/* Research Area Hover Effect */
.research-area:hover {
    background-color: #f5f5f5; /* Light background on hover */
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
    transition: all 0.3s ease; /* Smooth transition effect */
}

.research-area.active {
    border: 2px solid #007bff; /* Highlight active research area with border */
}

    .research-area.active:hover {
        background-color: #e0f7fa; /* Change background on hover for active element */
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    }


/* Responsive Design */
@media (max-width: 992px) {
    .research-areas {
        flex-direction: column; /* Stack the research areas vertically */
        gap: 40px;
    }

    .research-area {
        border-left: none;
        border-top: 1px solid #e0e0e0; /* Horizontal line between stacked items */
        padding-top: 40px;
        min-height: unset; /* Remove minimum height on smaller screens */
    }

    .event-timeline {
        width: 80%;
    }
}


.events-header {
    background-color: #f4f4f4;
    color: midnightblue;
    padding: 6px 0;
    margin: 6px 0;
}

    .events-header h1 {
        margin: 0;
        padding: 0 10px;
        margin: 0 10px;
        font-size: 1.0rem;
        color: midnightblue;
        font-family: Arial, sans-serif;
    }


    .events-header h2 {
        margin: 0 0 10px;
        padding: 0 10px;
        font-size: 1.0rem;
        color: midnightblue;
        font-family: Arial, sans-serif;
    }


    .events-header p {
        margin: 5px 0;
    }

    .events-header a {
        text-decoration: none;
        color: midnightblue;
    }

        .events-header a:hover {
            text-decoration: underline;
        }

/* Timeline Layout */
.event-timeline {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
}

.event {
    margin-bottom: 40px;
    align-content: center;
    justify-content:center;
}

.event-content {
    display: flex;
    align-items: center;
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    align-content: center;
    justify-content: center;
   }


    .event-content:hover {
        transform: translateY(-5px);
    }


/* Media (Image/Video) */
.event-media {
    flex: 1;
    max-width: 300px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius:10px;
    border-bottom-right-radius:10px;
    width: 100%;
    text-align: center;
}

    .event-media img, .event-media video {
        width: auto;
        height: 100%;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        align-content: center;
        justify-content: center;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* For media event sequence of images */
   

    .image-sequence {
        flex: 1;
        max-width: 500px;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .image-sequence.show {
        display: block;
    }

    .image-sequence.show.fade-in {
            opacity: 1;
        }

    .sequence-image {
            display: none;
            max-width: 100%;
            height: auto;
        }

    .sequence-image.active {
            display: block;
            margin: 0 auto;
        }

    .image-sequence .nav-button {
        position: absolute;
        bottom: 10%;
        
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.4);
        color: white;
        border: none;
        padding: 12px;
        cursor: pointer;
        font-size: 18px;
        z-index: 1;
        border-radius: 4px;
    }

    .image-sequence .nav-button.left {
        left: 10px;
    }

    .image-sequence .nav-button.right {
        right: 10px;
    }

    .image-sequence .nav-button:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .image-sequence .close-button {
        position: absolute;
        bottom: 8px;
        right: 10px;
        font-size: 24px;
        color: #fff;
        background: rgba(0, 0, 0, 0.4);
        border: none;
        cursor: pointer;
        z-index: 2;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        line-height: 24px;
    }

    .image-sequence .close-button:hover {
        background: rgba(0, 0, 0, 0.6);
    }


    /*         */


/* Event Details */
.event-details {
    flex: 2;
    padding: 20px;
}

.event-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

.event-summary {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}

.event-summary-small {
    font-size: 0.8em;
    color: #333;
    margin-bottom: 15px;
    font-style:italic;
}

.event-detail-link {
    font-size: 0.6em;
    color: #007bff;
    text-transform: uppercase;
    font-weight: bold;
}


/* Hero Section Styling */
.about-hero {
    position: relative;
    width: 100%;
    height: 200px; /* You can adjust this height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f4f4f9;
}

/* Image Container */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
    opacity: 0.9; /* Adjust opacity for a light overlay effect */
}

/* Content Overlay */
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    font-family: Arial, sans-serif;
}

    .hero-content h1 {
        font-size: 1.8em;
        font-weight: bold;
        text-transform: uppercase;
        font-family: Arial, sans-serif;
        margin: 0;
    }

    .hero-content p {
        font-size: 1.5em;
        margin-top: 10px;
        font-family: Arial, sans-serif;
    }



/* Mission Section with Bullet Points */
.mission {
    padding: 10px 10px; /* Reduced padding */
    background: #f9f9f9;
    text-align: left;
}

    .mission h2 {
        font-size: 1.5em; /* Reduced font size */
        color: #555;
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .mission ul {
        list-style-type: disc;
        margin-left: 20px;
    }

        .mission ul li {
            font-size: 1em; /* Reduced font size */
            line-height: 1.1em; /* Adjusted line height */
            color: #555;
            margin-bottom: 5px; /* Reduced spacing between items */
            font-family: Arial, sans-serif;
        }


/*.inspiration {
    
    background: #f9f9f9;
    color: #555;
    text-align: left;
} */

/* Nonprofit Section */
.nonprofit {
    padding: 10px 10px; /* Reduced padding */
    /*background: #4287f5;
    color: white;*/
    background: #f9f9f9;
    color: #555;
    text-align: left;
}


 .nonprofit h2 {
        font-size: 1.5em; /* Reduced font size */
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

 .nonprofit p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

 .nonprofit p .styled-link {
        color: #4e206d; /* Default link color */
        text-decoration: none; /* Remove underline */

        transition: color 0.3s ease, border-bottom 0.3s ease;
        border-bottom: 2px solid transparent; /* Invisible underline */
    }

/* Hover effect for the link */
 .nonprofit p .styled-link:hover {
        color: #e74c3c; /* Change link color on hover */
        border-bottom: 2px solid #e74c3c; /* Add visible underline on hover */
    }




/* Inspiration Section */
.inspiration {
    padding: 10px 10px; /* Reduced padding */
    /*background: #4287f5;
    color: white;*/
    background: #f9f9f9;
    color: #555;
    text-align: left;
}

    .inspiration h2 {
        font-size: 1.5em; /* Reduced font size */
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .inspiration p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

        .inspiration p .styled-link {
            color: #4e206d; /* Default link color */
            text-decoration: none; /* Remove underline */

            transition: color 0.3s ease, border-bottom 0.3s ease;
            border-bottom: 2px solid transparent; /* Invisible underline */
        }

            /* Hover effect for the link */
            .inspiration p .styled-link:hover {
                color: #e74c3c; /* Change link color on hover */
                border-bottom: 2px solid #e74c3c; /* Add visible underline on hover */
            }


/* Vision Section */
.vision {
    padding: 10px 10px; /* Reduced padding */
    /*background: #4287f5;
    color: white;*/
    background: #f9f9f9;
    color: #555;
    text-align: left;
}

    .vision h2 {
        font-size: 1.5em; /* Reduced font size */
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .vision p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

/* Our Work Section */
.work {
    padding: 10px 10px; /* Reduced padding */
    background: #f9f9f9;
    text-align: left;
}

    .work h2 {
        font-size: 1.5em; /* Reduced font size */
        color: #333;
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .work p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        color: #555;
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

.work ul {
    list-style-type: disc;
    margin-left: 20px;
}

    .work ul li {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        color: #555;
        margin-bottom: 5px; /* Reduced spacing between items */
        font-family: Arial, sans-serif;
    }


/* Status Section */
.status {
    padding: 10px 10px; /* Reduced padding */
    background: #f9f9f9;
    text-align: left;
}

    .status h2 {
        font-size: 1.5em; /* Reduced font size */
        color: #333;
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .status p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        color: #555;
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

/* Goals & Objectives Section */
.goals {
    padding: 10px 10px; /* Reduced padding */
    background: #f2f2f2;
    text-align: left;
}

    .goals h2 {
        font-size: 1.5em; /* Reduced font size */
        color: #333;
        margin-bottom: 10px; /* Reduced margin */
        font-family: Arial, sans-serif;
    }

    .goals p {
        font-size: 1em; /* Reduced font size */
        line-height: 1.1em; /* Adjusted line height */
        color: #555;
        margin-left: 20px;
        font-family: Arial, sans-serif;
    }

/* Call-to-Action Section */
.cta {
    padding: 10px 10px; /* Reduced padding */
    background-color: #00a3cc;
    text-align: center;
}

    .cta a {
        color: white;
        background-color: #00a3cc;
        padding: 12px 24px; /* Reduced padding */
        text-decoration: none;
        font-size: 1em; /* Reduced font size */
        border-radius: 5px;
        font-weight: bold;
        text-transform: uppercase;
        font-family: Arial, sans-serif;
    }

        .cta a:hover {
            background-color: #cc5200;
            transition: background-color 0.3s ease;
            font-family: Arial, sans-serif;
        }

/* Scroll Animation (Fade-in effect) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Removed fade in animation - April 27, 2026
.inspiration, .mission, .vision, .status, .goals {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.mission {
    animation-delay: 0.2s;
}

.vision {
    animation-delay: 0.4s;
}

.status {
    animation-delay: 0.6s;
}

.goals {
    animation-delay: 0.8s;
}
*/

.tab-links {
    flex-basis: auto;
    display: flex;
    flex-direction: row;
    border-right: none;
    font-size: 0.8em;
    color: midnightblue;
}

    .tab-links a {
        padding: 15px;
        text-align: left;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #ccc;
        transition: background-color 0.3s ease;
    }

        .tab-links a:hover, .tab-links a.active {
            background-color: #f0f0f0;
            color: midnightblue;
        }

.tab-content {
    display: none;
    flex-grow: 1;
    padding: 20px;
}

    .tab-content.active {
        display: flex;
        flex-wrap: wrap;
    }

/* Style for active tab */
.tab-links a.active {
    background-color: #d3d3d3; /* Dull gray background */
    color: #666; /* Dull text color */
    font-weight: bold; /* Optional: Make the text bold */
}


.hide-on-mobile {
    display: block;
}

.extra-desktop-copyright-text {
    display: inline;
}

@media screen and (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tab-links {
        flex-basis: auto;
        flex-direction: column;
        border-right: none;
    }

        .tab-links a {
            flex-grow: 1;
            text-align: center;
            border-bottom: none;
            border-bottom: 1px solid #ccc;
        }

            .tab-links a:last-child {
                border-right: none;
            }

    .person {
        flex: 1 1 100%;
    }
    .hide-on-mobile {
        display: none !important;
    }

    .extra-desktop-copyright-text {
        display: none;
    }
 }
