/* =====universal function===== */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* general body*/
.general_body {
    font-family:
        Arial, sans-serif;
}

.general_main {
    max-width: 65.5rem;
    padding: 0px 1.25rem;
    margin: 0.3125rem auto;
}

.body_main_headings {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #2fa257;
    text-align: center;
}

.general_header {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: orange;
    padding: 0.625rem;
    font-size: 1.3rem;
    text-align: center;
    background: linear-gradient(to top right, green, #003366);
    border-radius: 7px 7px 0 0;
    margin-bottom: 0%;
}

.general_header_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #003366;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1;
    margin-top: 0%;
    border-radius: 0 0 7px 7px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.nav-links img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: whitesmoke;
    object-fit: cover;
    padding: 0px;
    vertical-align: middle;
}

.nav-links a {
    display: flex;
    gap: 0.9375rem;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.3s;
}

.nav-links a.active {
    color: rgb(227, 158, 29);
}

.general_header_nav a:hover {
    border-bottom: 1px dotted whitesmoke;
}

.general_whatsapp-floats {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    color: green;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.5s ease-in-out;
}

.general_whatsapp-floats:hover {
    transform: scale(1.2);
    color: #25D366;
}


/*DONATION PAGE CODE*/

.don_container {
    max-width: 68.75rem;
    margin: 2rem auto;
    padding: 1.5rem;
}

.don_container h2 {
    color: #005baa;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    margin-top: 0%;
}

.don_container intro {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 2rem auto;
}

.don_donation_cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-between;
}

.don_card {
    flex: 1 1 15.625rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid lightgray;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.don_card:hover {
    transform: scale(1.02);

}


.don_card h3 {
    font-size: 1.3em;
    color: #005baa;
    margin-bottom: 2rem;
}

.don_card p {
    font-size: 1em;
    margin-bottom: 1rem;
}

.don_card button {
    font-size: 1em;
    background-color: green;
    color: white;
    border: 0.5px solid #003366;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.don_card button:hover {
    transform: scale(1.02);
    background-color: #2fa257;
}

/* Progress Tracker */
.don_progress_card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.don_progress_bar {
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin: 1rem 0;
}

.don_progress_fill {
    background: #005baa;
    height: 1.25rem;
    width: 40%;
    /* Example: 40% funded */
    transition: width 0.5s ease;
}

/* Impact Section */
.don_impact {
    margin-top: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.don_impact h3 {
    color: #005baa;
    text-align: center;
    margin-bottom: 1rem;
}

.don_impact ul {
    max-width: 90rem;
    margin: 0 auto;
    padding-left: 1.2rem;
}

.don_impact ul li {
    margin-bottom: 0.7rem;
    font-size: 1em;
}




/*WEBSITE SECTION */

#web_section {
    padding: 2.5rem;
    max-width: 75rem;
    margin: auto;
}

#web_section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
    color: #0077cc;
}

#web_section .web_intro {
    text-align: center;
    margin-bottom: 1.875rem;
    color: #555;
}

.web_service_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.web_card {
    flex: 1 1 12.5rem;
    background: #f4f2f2;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    text-align: center;
    border: 1px solid lightgray;
}

.web_card:hover {
    transform: translateY(-5px);
}

.web_card .web_icon {
    font-size: 4em;
    margin-bottom: 0.625rem;
}

.web_card h3 {
    margin: 0.625rem 0;
    color: #0077cc;
}

.web_cta {
    margin-top: 2.5rem;
    text-align: center;
}

.web_cta_button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: green;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.web_cta_button:hover {
    background: #2fa257;
}



/*EQUIPMENT CODE*/

.equipment_images {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.equipment_cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: space-between;
}

.equipment_card {
    flex: 1 1 15.625rem;
    align-items: flex-start;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.3125rem;
    text-align: center;
    border: 1px solid lightgray;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.equipment_card:hover {
    transform: scale(1.02);
}

.equipment_price {
    font-weight: bold;
    font-size: 1em;
    color: #00796b;
    margin-top: 0.5rem;
}

button {
    margin-top: 0.8rem;
    padding: 0.6rem 1rem;
    font-size: 1em;
    background: green;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #2fa257;
}



/*PRIVATE CLASSES CODE*/

.private_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: space-between;
    flex-direction: row;
}

.private_card {
    flex: 1 1 15.625rem;
    align-items: flex-start;
    border-radius: 10px;
    padding: 0.4375rem;
    background-color: #f0ecec;
    border: 1px solid lightgray;
    transition: transform 0.2s ease-in-out;
}

.private_card:hover {
    transform: scale(1.02);
}

.private_images {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.private_target_age {
    display: inline-block;
    margin: 0 0.9375rem 0.625rem;
    padding: 0.3125rem 0.625rem;
    background: #e0f0ff;
    color: #004080;
    border-radius: 4px;
    font-size: 1em;
}

.private_delivery_mode {
    margin: 0 0.9375rem 0.9375rem;
    font-size: 1em;
    color: #666;
}

.private_card button {
    margin: auto 0.9375rem 0.9375rem;
    padding: 0.625rem;
    background: green;
    color: #fff;
    border: 0.5px solid #003366;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.private_card button:hover {
    background: #2fa257;
}

.private_conclusion p {
    text-indent: 2.5rem;
    background-color: #e0f0ff;
    display: inline-block;
    padding: 0.3125rem 0.625rem;
    border-left: 0.4375rem solid #003366;
    border-radius: 10px;
}



/*FUNDAY CODE*/

.funday_p {
    text-indent: 2.5rem;
}

.funday_subtitles {
    color: #003366;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.funday_intro_images {
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
    border: 2px solid coral;
    display: block;
    object-fit: cover;
}

.funday_card_images {
    width: 100%;
    /* Image fills the card width */
    height: auto;
    /* Height adjusts automatically */
    border-radius: 10px;
    /* Optional: rounded corners */
    display: block;
    /* Removes inline spacing issues */
    object-fit: cover;
}

.safety_note {
    display: flex;
    font-size: larger;
    background-image: linear-gradient(to bottom left, #003366, orange, green);
    padding: 1.875rem;
    margin: 1.875rem auto;
    width: 100%;
    font-style: italic;
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
}

.funday_packages,
.funday_categories {
    display: flex;
    gap: 0.4375rem;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.funday_package,
.funday_card {
    margin: 0.3125rem;
    align-items: flex-start;
    background-color: #a8c5eb;
    box-shadow: 0 0 4px gray;
    flex: 1 1 15.625rem;
    /* flexible width, min 250px */
    border: 1px solid gray;
    border-radius: 10px;
    padding: 0.5rem;
    transition: transform 0.2s ease-in-out;
}

.funday_package,
.funday_card:hover {
    transform: scale(1.02);
}

#funday_bronze {
    background-color: #cd7f32;
    max-width: 21.875rem;
}

#funday_silver {
    background-color: #c0c0c0;
    max-width: 21.875rem;
}

#funday_gold {
    background-color: #ffd700;
    max-width: 21.875rem;
}

#funday_diamond {
    background-color: #00ced1;
    max-width: 350px;
}

#funday_package_note {
    color: black;
    padding: 0.625rem;
    border-left: 0.5rem solid #003366;
    background-color: #eaf6ff;
}

.cta {
    text-align: center;
    margin-top: 1.875rem;
}

.cta-button {
    display: inline-block;
    margin: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    position: relative;
    left: 1.875rem;
    border: 0.5px solid #003366;
}

.cta-button:hover {
    background: #2fa257;
}





/*CLUB ACTIVITIES CODE*/


.clubs h1 {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
    text-align: center;
}

.clubs_intro {
    text-indent: 2.5rem;
}

#clubs_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* align horizontally */
    justify-content: space-between;
    /* spread them evenly */
    gap: 0.625rem;
    background: whitesmoke;
}

.clubs_academic,
.clubs_sports,
.clubs_arts,
.clubs_lifeskills {
    flex: 1;
    align-items: flex-start;
    /* each takes equal width */
    padding: 0.9375rem;
    border-radius: 0.5rem;
}

#clubs_list li a {
    color:
        #003366;
    text-decoration: none;
}

#clubs_list li a:hover {
    color: orange;
}

#clubs_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    flex-direction: row;
}

.clubs_card {
    flex: 1 1 15.625rem;
    /*max-width: 18.75rem;*/
    background-color: #42cb74;
    border: 1px solid lightgray;
    /*#1877f2*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    padding: 0.5rem;
    transition: transform 0.2s ease-in-out;
}

.clubs_card:hover {
    transform: scale(1.02);
}

.clubs_images {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.closing_statement {
    text-align: center;
}

.contact_btn {
    color: black;
    text-decoration: none;
    background-color: #42cb74;
    padding: 0.5rem;
    border: 0.5px solid #003366;
    border-radius: 8px;
}

.contact_btn:hover {
    background-color: green;
    border: 1px solid #003366;
}



/*HOME PAGE CODE*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    /* reset margins */
    padding: 0;
    /* reset padding */
    line-height: 1.6;
    background-color: whitesmoke;
    overflow-x: hidden;
    /* prevent horizontal overflow */
}

.home_header_logo {
    width: 4.375rem;
    height: 2.1875rem;
    margin: 0px;
    padding: 0%;
}

/* ===== GLOBAL IMAGE FIX ===== */
img {
    max-width: 100%;
    /* keeps images inside their container */
    height: auto;
    /* maintains aspect ratio */
    display: block;
    /* removes inline spacing issues */
    margin: 0 auto;
    /* centers images */
}

.title_contacts {
    display: flex;
    align-items: left;
    gap: 0.625rem;
    justify-content: center;
    color: white;
    /*text-align: center;*/
    background-color: chocolate;
    padding: 0.3125rem;
}

.title_contacts a {
    color: white;
    text-decoration: none;
    margin: 0 0.3125rem;
}

.title_contacts a:hover {
    color: blue;
}

.title_contact_icons {
    vertical-align: middle;
}

/* ===== HEADER ===== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 55vh;
    /* half the viewport height */
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Centered text overlay */
.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical centering */
    align-items: center;
    /* horizontal centering */
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
    color: #003366;
    -webkit-text-stroke: 1px white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.hero-text h3 {
    color: orange;
    -webkit-text-stroke: 1px white;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* ===== NAVIGATION ===== */
.main_nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #003366;
    /* #006633; #2d8f4f;*/
}

.main_nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 0;
    padding: 1.25rem;
}

.main_nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 7px;
    transition: background-color 0.3s;
}

.main_nav ul li a.active {
    color: rgb(227, 158, 29);
}

.main_nav a:hover {
    border-bottom: 1px dotted whitesmoke;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ===== CONTAINER ===== */
.container {
    display: flex;
    min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    flex: 0 0 10.625rem;
    background-color: #ddd;
    overflow-y: auto;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 300;
    padding: 0.625rem;
}

.sidebar li {
    list-style: none;
    margin-bottom: 0.625rem;
}

.sidebar a {
    text-decoration: none;
    color: #003366;
}

.sidebar a:hover {
    font-weight: bold;
    color: chocolate;
}

/* ===== MAIN CONTENT ===== */
.home_main {
    flex: 1;
    padding: 1.25rem;
    max-width: 75rem;
    /* keeps content neatly aligned */
    margin: 0 auto;
    /* centers content */
}

/* ===== INTRO SECTION ===== */
.intro-text {
    max-width: 56.25rem;
    margin: 0 auto 1.25rem auto;
    text-align: center;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.intro-text strong {
    color: chocolate;
    /* highlight the CBO status */
    font-weight: bold;
}

.services-list {
    list-style: none;
    padding: 0;
    max-width: 56.25rem;
    margin: 0 auto;
}

.services-list li {
    background:
        /*#fdf3e7*/
        #ffe9d6;
    /* light chocolate tint */
    border-left: 4px solid chocolate;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: transform 0.2s ease-in-out;
}

.services-list li:hover {
    transform: scale(1.02);
    background: orange;
}

.subtitles {
    margin-top: 1.25rem;
    margin-bottom: 0.9375rem;
    font-size: 1.4rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #2fa257;
    /*#2fa257*/
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery_img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.9375rem;
}

.gallery p {
    text-align: center;
}

.gallery_img img {
    width: 100%;
    /* limit gallery image size */
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 0.2s ease-in-out;
}

.gallery_img img:hover {
    transform: scale(1.02);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.testimonial {
    flex: 1 1 18.75rem;
    margin: 0.625rem;
    padding: 1.25rem;
    border-radius: 8px;
    border-top: 4px solid #003366;
    background-color: rgb(220, 133, 71);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.testimonial:hover {
    transform: scale(1.02);

}

.quote {
    font-style: italic;
    font-size: 1.1em;
    color: #333;
}

.author {
    margin-top: 0.625rem;
    font-weight: bold;
    color: #003366;
}

#stats {
    text-align: center;
    padding: 3.125rem 1.25rem;
    background-color: #f4f4f4;
}

#stats h2 {
    font-size: 2em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 1.875rem;
    color: #2fa257;
    margin-top: 0%;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 11.25rem;
}

.stat-card h3 {
    font-size: 2.5em;
    color: #003366;
    /* brand accent color */
    margin: 0;
}

.stat-card p {
    font-size: 1.1em;
    color: #555;
    margin-top: 0.625rem
}


/* ===== FAQ ===== */
.faq {
    margin: 1.25rem auto;
    max-width: 50rem;
}

.faq h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 1.25rem;
    color: #2fa257;
}

details {
    margin-bottom: 0.625rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fafafa;
}

summary {
    cursor: pointer;
    font-weight: bold;
    padding: 0.75rem;
    list-style: none;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "▼";
    position: absolute;
    right: 0.9375rem;
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: #007acc;
}

details[open] summary::after {
    content: "▲";
}

details p {
    padding: 0.75rem;
    margin: 0;
    background: #fff;
    border-left: 3px solid #007acc;
}

.sidebar-toggle {
    display: none;
}

.sidebar-close {
    display: none;
}



/* ===== HOME PAGE RESPONSIVE ===== */

/* 📱 Mobile adjustments */
@media (max-width: 768px) {

    body {
        font-family: 'Segoe UI', sans-serif;
        max-width: 65.5rem;
        padding: 0px 1.25rem;
        margin: 0.3125rem auto;
    }

    /* Hide email icon and link */
    .title_contacts .email-icon,
    .title_contacts a[href^="mailto"],
    .title_contacts .separator {
        display: none;
    }

    /* Optional: also hide the separator bar if it comes before email */
    .title_contacts a[href^="tel"]+span,
    .title_contacts a[href^="tel"]+i.email-icon {
        display: none;
    }

    /* Navigation */
    .main_nav {
        position: static;
    }

    .main_nav ul {
        display: flex;
        flex-direction: column;
        background-color: #003366;
        padding: 0.625rem;
        margin: 0;
        gap: 0.3125rem;
        align-items: center;
    }

    .menu-toggle {
        display: none;
        /* hide hamburger since nav is always visible */
    }

    /* Show sidebar toggle only on mobile, at top */
    .sidebar-toggle {
        display: block;
        font-size: 1.2rem;
        background: #2d8f4f;
        border: none;
        color: rgb(215, 201, 201);
        cursor: pointer;
        margin: 0.625rem;
    }

    /* Sidebar hidden off-screen by default */
    .sidebar {
        position: fixed;
        left: -9.375rem;
        width: clamp(7.5rem, 25%, 15.625rem);
        height: calc(60vh-2rem);
        transition: left 0.3s ease;
        background-color: #ddd;
        z-index: 1500;
        padding: 0.625rem;
        height: 50vh;
    }

    .sidebar.active {
        left: 0;
        /* slide in when active */
    }

    .sidebar-close {
        display: block;
        background: none;
        border: none;
        color: #333;
        font-size: 1.5rem;
        float: right;
        cursor: pointer;
    }

    .social_icons {
        justify-content: center;
    }

    .container {
        flex-direction: column;
    }
}




/*
FUNDAY, 
SCHOOL CLUBS,
SPORTS EQUIPMENT,
PRIVATE CLASSES,
WEBSITE DESIGN,
DONATION,
WEB FORM,
EQUIPMENT FORM,
DONATION FORM
PRIVATE CLASSES FORM
WEBSITE SERVICES FORM
FUNDAY FORM
 RESPONSIVE CODES
*/

.general_header_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
}

.general_header_title {
    display: initial;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 0.625rem;
}

.nav-links {
    gap: none;
}

/* Hamburger button hidden on desktop */
.clubs_menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {

    .general_header {
        position: relative;
        /* ensure header is a proper container */
    }

    .general_body h1 {
        display: initial;
    }

    .general_header h1 {
        display: initial;
        font-size: 1.5625rem;
        margin-bottom: 0px;
    }

    .nav-links img {
        display: none;
    }

    .clubs_card {
        width: 100% - 2rem;
    }

    .clubs_intro_h2 {
        display: initial;
    }

    .general_header_nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0.3125rem;
        margin-top: 0px;
    }

    /* Hamburger stays sticky */
    .menu-toggle {
        align-self: center;
        margin-bottom: 0.0625rem;
        margin-top: 0;
        display: block;
        position: sticky;
        /* stick to top */
        top: 0;
        z-index: 1000;
        background-color: #2d8f4f;
        padding: 0.3125rem;
    }

    /* Scrollable links below */
    .nav-links {
        display: none;
        flex-direction: column;
        max-height: 50vh;
        /* limit height */
        overflow-y: auto;
        /* scrollable */
        margin-top: 0;

    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 0.25rem;
        text-align: center;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
    }

    .footer-section a:hover {
        color: orange;
        text-decoration: none;
    }
}