/**********************************************************************
 * Name: style.css
 * Author: David Meissner
 * Created: xx/xx/2017
 *
 * Description:
 * This page contains all styles for the application unless specified elsewhere.
 *
 * LOG
 * 2017-xx-xx       David Meissner          Created file.
 *
 **********************************************************************/

:root{
    
    /* html */
    --ftc: #323232;
    
    /* header */
    --hdr-h: 140px;
    --hdr-h-max: 140px;
    --hdr-h-med: 105px;
    --hdr-h-min: 70px;
    --hdr-bdc: #bbbbbb;
    --hdr-bgc: #e7ebec;
    /*--hdr-mnu-bgc: rgba(85, 85, 85, 0.5);*/
    /*--hdr-mnu-bgc: rgba(180, 0, 0, 0.9);*/
    --hdr-mnu-bgc: rgba(0, 0, 80, 0.1);
    /*--hdr-ftc: #e1d685;*/
    --hdr-ftc: #000064;
    /*--hdr-ftch: #000050;*/
    /*--hdr-ftch: #ffffff;*/
    
    /* footer */
    --ftr-h: 80px;
    --ftr-h-max: 60px;
    --ftr-h-med: 60px;
    --ftr-h-min: 40px;
    --ftr-bdc: #bbbbbb;
    --ftr-bgc: #e7ebec;
    /*--ftr-ftc: #e1e1e1;*/
    /*--ftr-ftc: #e1d685;*/
    --ftr-ftc: #000064;
    
    /* misc */
    --btn-donate-width: 150px;

}


/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--ftc);
}


body{
    background-color: #f1f1f1;
    margin: 0;
    min-width: 300px;
}

p {
    margin-bottom: 1.25rem;
}


/**************************************************
 * Header
 **************************************************/
header {
    position: fixed; /* fixed at top */
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--hdr-h-min);
    max-height: var(--hdr-h-max);
    height: var(--hdr-h);
    background-color: #333;
    color: var(--hdr-ftc);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: height 0.3s ease;
    
    border-bottom: solid 1px var(--hdr-bdc);
}

/* Adds a 1px transparent space, then 1px black border */
/*header::after {*/
    /*content: "";*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: -2px; !* positions both lines below header *!*/
    /*width: 100%;*/
    /*height: 2px;*/
    /*background:*/
        /*linear-gradient(to bottom,*/
        /*transparent 0px,          !* 1px transparent *!*/
        /*transparent 1px,*/
        /*#000 1px,                 !* 1px black border *!*/
        /*#000 2px);*/
/*}*/


/*.header-wrapper{*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background-color: var(--hdr-bgc);*/
    /*background-image: url('/images/general/flag-bg-01_1920x260.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center top;*/
    /*background-size: 100% auto; !* stretches to fill width and height *!*/
/*}*/

/*.header-wrapper{*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background-color: var(--hdr-bgc);*/
    /*background-image: url('/images/general/flag-bg-01_1920x260.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center center;*/
    /*background-size: cover;*/
/*}*/

.header-wrapper{
    width: 100%;
    height: 100%;
    background:
            linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), /* white overlay */
            /*linear-gradient(rgba(255,255,255), rgba(255,255,255)), !* white overlay *!*/
            url('../images/general/flag-bg-02_2600x300.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-wrapper * {
    color: inherit;
}

    /********************
     * Header Large
     ********************/
    /*.header-wrapper-lg{*/
        /*display: flex;*/
        /*justify-content: center;  !* centers the menu horizontally *!*/
        /*align-items: center;*/
        /*position: relative;       !* allows background image *!*/
        /*height: 100%;            !* adjust as needed *!*/
        /*background: url('/images/general/mneic-01-trans_600x300.png') center center no-repeat;*/
        /*background-size: auto 90%;*/
            /*!*border: solid 1px #0F0;*!*/
    /*}*/

    .header-wrapper-lg{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100%;
        background: url('../images/general/m4m-01-trans_500x260.png') calc(50% - 0px) 50% no-repeat;
        background-size: auto 80%;
    }
    
    
        /* Large screen menu - horizontal */
        .menu-lg {
            display: flex;       /* horizontal by default */
            justify-content: center;
            /*width: 100%;*/
            /*gap: 20px;*/
            position: relative;
            top: 45px; /* 30px lower than center */
            margin: 0;        /* remove default margin */
            padding: 0;       /* remove default left indent */
            
            /*border: solid 1px red;*/
        }
        
        .menu-lg li{
            list-style: none;
            line-height: normal;
            /*border: solid 1px red;*/
        }

        .menu-lg li a {
            display: block;
            padding: 3px 10px;
            text-decoration: none;
            color: var(--hdr-ftc);
            border: solid 1px transparent;
            border-radius: 3px;
            white-space: nowrap;
        }

        .menu-lg li a:hover {
            background-color: var(--hdr-mnu-bgc);
            border: solid 1px var(--hdr-ftc);
            color: var(--hdr-ftc);
            cursor: pointer;
        }
        
        .menu-gap{
            width: 140px;
            border: none;
            /*flex: 1;*/
            /*border: solid 1px var(--hdr-ftc);*/
        }


    /********************
     * Header Small
     ********************/
    .header-wrapper-sm{
        display: none;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: 100%;
        padding: 0 20px; /* optional horizontal padding */
        /*height: 60px;    !* adjust to match header height *!*/
        /*background-color: #333;*/
    }

        .header-wrapper-sm-left{
            width: 100%;
            height: 100%;
            background: url('../images/general/m4m-01-trans_500x260.png') left center no-repeat;
            background-size: auto 90%;
        }
        
            /* Small screen menu wrapper and menu */
            .menu-sm-wrapper {
                display: none; /* hidden by default */
                position: relative; /* for absolute-positioned menu-sm */
            }
            
            .menu-sm {
                display: none; /* hidden until hamburger click */
                position: absolute;
                top: calc(100% + 10px); /* below header */
                right: 0;
                width: 150px;
                background-color: #ffffff;
                /*width: 200px;*/
                flex-direction: column;
                padding: 10px;
                border: solid 1px var(--hdr-bdc);
                border-radius: 4px;
                z-index: 1000;
            }
            
            .menu-sm ul {
                display: flex;       /* flex for container, column for items */
                flex-direction: column;
                list-style: none;
                padding: 0;
                margin: 0;
                /*line-height: 1.5em;*/
                gap: 0.5rem;
            }
        
            .menu-sm ul a{
                color: var(--hdr-ftc);
                text-decoration: none;
            }

            .menu-sm li a {
                display: block;
                padding: 1px 10px 0px;
                text-decoration: none;
                color: var(--hdr-ftc);
                border: solid 1px transparent;
                border-radius: 3px;
                white-space: nowrap;
                /*line-height: 2.5;*/
            }

            .menu-sm li a:hover {
                background-color: var(--hdr-mnu-bgc);
                border: solid 1px var(--hdr-ftc);
                cursor: pointer;
            }


            .menu-sm .donate-button {
                display: inline-block;
                background-color: #c0392b;
                color: #fff !important;   /* override menu link color */
                padding: 8px 12px;
                border-radius: 4px;
                font-weight: bold;
                text-decoration: none;
            }
            
            /* Optional hover effect */
            .menu-sm .donate-button:hover {
                background-color: #e74c3c;
            }


            /*.menu-sm ul li a[href="/donate"] {*/
                /*background: #c0392b;*/
                /*color: #fff;*/
                /*padding: 6px 10px;*/
                /*border-radius: 4px;*/
                /*display: inline-block;*/
            /*}*/
            
            
            /* Hamburger icon */
            .hamburger {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 25px;
                height: 20px;
                cursor: pointer;
            }
            .hamburger span {
                display: block;
                height: 3px;
                background-color: var(--hdr-ftc);
                border-radius: 2px;
            }

    /* Default (large screen) */
    .menu-lg { display: flex; align-items: center; gap: 20px; }
    /*.logo-lg img { height: calc(var(--hdr-h-max) - 20px); } !* logo inside menu *!*/
    /*.logo-sm img { display: none; } !* logo inside menu *!*/


.header-pad {
    height: var(--hdr-h-max);
}




/**************************************************
 * Main
 **************************************************/

main {
    margin-top: var(--hdr-h-max);
    margin-bottom: var(--ftr-h-max);
    /*padding: 15px 20px;*/
    /*padding: auto;*/
    min-height: calc(100vh - var(--hdr-h-max) - var(--ftr-h-max));
    /*border: solid 1px red;*/
}

.section{
    /*min-height: 60vh; !* 120% of viewport height *!*/
    /*padding: 20px 20px;*/
    padding: 20px;
    /*background: #fff;*/
    /*border: solid 1px red;*/
}

h1{
    margin-bottom: 20px;
}

h2 {
    font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.2rem; /* adjust as needed */
    margin-bottom: 15px;
}

h3 {
    font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
    font-weight: 500; /* Medium */
    font-size: 1.25rem; /* smaller than H2 */
    /*line-height: 1.3;*/
    letter-spacing: 0.02em; /* subtle spacing */
    /*margin-bottom: 1rem; !* separates from paragraph *!*/
}

.section p {
    line-height: 1.6;
}

ul {
    padding-left: 2rem;
}

li {
    line-height: 2;
}

.logo{
    max-width: 100%;
    height: auto;
}

.image{
    max-width: 100%;
    height: auto;
}




/**************************************************
 * Footer
 **************************************************/
footer {
    position: fixed; /* fixed at bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: var(--ftr-h-min);
    max-height: var(--ftr-h-max);
    height: var(--ftr-h);
    background-color: #222;
    border-top: solid 1px var(--ftr-bdc);
    
    color: var(--ftr-ftc);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: height 0.3s ease;
}

/* Adds 1px transparent line above, then 1px black border above that */
/*footer::before {*/
    /*content: "";*/
    /*position: absolute;*/
    /*left: 0;*/
    /*top: -2px; !* places the 2px strip above the footer *!*/
    /*width: 100%;*/
    /*height: 2px;*/
    /*background:*/
        /*linear-gradient(to top,*/
        /*transparent 0px,      !* 1px transparent *!*/
        /*transparent 1px,*/
        /*#000 1px,             !* 1px black border *!*/
        /*#000 2px);*/
/*}*/

/*.footer-wrapper{*/
    /*height: 100%;*/
    /*width: 100%;*/
    /*position: relative; !* so ::before stays inside *!*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*text-align: center;*/
/*}*/

.footer-wrapper {
    display: flex;
    justify-content: space-between;  /* left/right flush */
    align-items: center;             /* vertical center */
    width: 100%;
    height: 100%;
    padding: 0 2rem;                 /* spacing from edges; adjust to your taste */
    box-sizing: border-box;
    position: relative;              /* keeps pseudo-background in place */
    
    background:
            linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), /* white overlay */
                /*linear-gradient(rgba(255,255,255), rgba(255,255,255)), !* white overlay *!*/
            url('../images/general/flag-bg-01_1920x260.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
    /*text-align: left;*/
}


/*.header-wrapper{*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background:*/
            /*linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), !* white overlay *!*/
                /*!*linear-gradient(rgba(255,255,255), rgba(255,255,255)), !* white overlay *!*!*/
            /*url('/images/general/flag-bg-02_2600x300.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center center;*/
    /*background-size: cover;*/
/*}*/



.footer-wrapper::before {
    content: ""; /* required for pseudo-element to appear */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-image: url('/images/general/flag-bg-01_1920x260.png');*/
    /*background:*/
            /*linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), !* white overlay *!*/
                /*!*linear-gradient(rgba(255,255,255), rgba(255,255,255)), !* white overlay *!*!*/
            /*url('/images/general/flag-bg-01_1920x260.png');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center top;*/
    /*background-size: cover; !* stretches to fill *!*/
    /*transform: scaleX(-1); !* flips horizontally *!*/
    z-index: 0; /* stays behind text */
}

.footer-wrapper > * {
    position: relative;
    z-index: 1; /* keep text and other content above background */
    color: var(--ftr-ftc);
    /*font-weight: bold;*/
}

.footer-wrapper * {
    color: inherit; /* ensures everything inherits from footer-wrapper */
}


.footer-pad {
    height: var(--ftr-h-max);
}


.footer-right a {
    /*margin: 0 0.25rem;*/
    color: var(--ftr-ftc);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}


.footer-left,
.footer-right {
    display: flex;
    align-items: center;  /* vertical center of their own container */
    height: 100%;         /* same height as footer-wrapper */
    color: var(--ftr-ftc);
    /*font-weight: bold;*/
}



/* Divider styling */
.divider {
    height: 1px; /* spacing between sections */
    background-color: #cccccc; /* 1px line color */
    /*margin: 20px 0; !* extra space if needed *!*/
}



/**************************************************
 * Collapsible List
 **************************************************/

#list-wrapper{
    /*padding: 20px;*/
}

#list-header{
    line-height: 1.6em
}

#list-wrapper h1{
    margin-bottom: 20px;
}

.list-container{
    margin-left: 20px;
}

.list-category{
    margin-bottom: 20px;
}

.list {
    list-style: none;
    padding: 0;
    /*max-width: 600px;*/
    margin: auto;
}

.list-item {
    /*margin-bottom: 5px;*/
    overflow: hidden;
    /*border: 1px solid #ccc;*/
    /*border-radius: 5px;*/
}

.list-header {
    /*background-color: #f5f5f5;*/
    cursor: pointer;
    /*padding: 10px 15px;*/
    font-weight: bold;
    display: flex;
    align-items: center;
    user-select: none;
}

.list-header span.symbol {
    margin-right: 10px;
    /*font-weight: bold;*/
    font-size: 1.3rem;
}

.list-body {
    display: none;
    /*height: 0;*/
    padding: 10px;
    background-color: #fff;
    
    border: 1px solid #ccc;
    border-radius: 5px;
}

.list-body p, ul {
    /*margin: 10px 0;*/
    margin-bottom: 10px;
    font-size: .9rem;
}

.list-body ol {
    margin: 0 30px;
    font-style: italic;
}



/**************************************************
 * Page Formatting
 **************************************************/

.pg-title, .h1{
    margin: -10px 0 5px 0;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
}

.pg-section-title, .h2{
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
}

.h2 span{
    margin-left: 10px;
    font: inherit;
    color: red;
}

.h3{
    font-size: 1.25em;
    font-weight: bold;
}

.pg-hdr{
    margin-bottom: 20px;
    text-align: center;
}

.pg-text{
    margin-bottom: 20px;
    line-height: 1.3em;
}

.snippet{
    margin: 0 30px;
    font-style: italic;
}




/**************************************************
 * Contact Form
 **************************************************/

.contact {
    max-width: 800px;
    margin: 0 auto;
    /*font-size: 1.5rem;*/
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.8em; /* smaller vertical gap */
}

.form-upper {
    display: flex;
    flex-direction: column;
    gap: 0.6em; /* smaller vertical gap between rows */
    margin-bottom: 20px;
}


.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal-width columns */
    gap: 0.8em;                     /* spacing between columns */
    margin-bottom: 0.3em;
    /*border: solid 1px red;          !* optional, for debugging *!*/
}

.form-row {
    display: flex;
    flex-direction: column;
    min-height: 0;                  /* prevents extra height from flex children */
    /*border: solid 1px red;          !* optional, for debugging *!*/
}




/*********
 * Human check box
 */
.human-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    width: 0;
}

.human-box {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.human-check-box {
    width: 30px;
    height: 30px;
    border: 1px solid #bbb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-size: 18px;
    background-color: #fff;
}

.human-label {
    /*display: flex;*/
    align-items: center;
    font-style: italic;
    white-space: nowrap;
}


.input-hidden{
    display: none;
}

label {
    margin-bottom: 0.3em;
    font-weight: bold;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #757575;
}

textarea {
    /*min-width: 400px;*/
    /*max-width: 1000px;*/
    max-width: 100%;
    width: 100%;
    margin-top: 0.5em; /* optional small spacing from label */
    resize: vertical;      /* allow vertical resize only */
    box-sizing: border-box; /* ensures padding and borders don't break width */
    /*margin: 0;*/
}

button {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.2rem;
}

button:hover {
    background-color: #555;
}

/*.checkbox {*/
    /*-webkit-appearance: none; !* Remove native style *!*/
    /*appearance: none;*/
    /*width: 24px;*/
    /*height: 24px;*/
    /*border: 1px solid #ccc;*/
    /*border-radius: 4px;*/
    /*outline: none;*/
    /*cursor: pointer;*/
/*}*/





.help{
    margin-bottom: 10px;
}

.checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.checkbox:checked {
    background-color: #007BFF;
}

/*.checkbox-container {*/
    /*display: block;       !* Makes each label take full width *!*/
    /*margin-bottom: 12px;  !* Space between checkboxes *!*/
/*}*/

/*.checkbox-label {*/
    /*display: inline-flex;      !* makes label a flex container *!*/
    /*align-items: center;       !* vertical center *!*/
    /*gap: 8px;                  !* space between checkbox and text *!*/
    /*margin-bottom: 16px;*/
/*}*/

.checkbox-text {
    position: relative;
    top: 2px;   /* only moves the text down 1px, checkbox stays in place */
}


.checkbox-item {
    display: flex;            /* flex container for checkbox + label */
    align-items: center;      /* vertically center the text with checkbox */
    gap: 12px;                 /* space between checkbox and label */
    margin-bottom: 16px;      /* space between rows */
}

.checkbox-label {
    /* any styling you want for the label text */
    position: relative;
    top: 1px;
    font-weight: normal;
    font-size: 16px;
}




/**************************************************
 * Donate
 **************************************************/
.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    
    width: 100%;
}

/* Default (desktop >700px) */
.donation-btn {
    background-color: #c0392b;
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    
    flex: 1 1 auto;
    max-width: var(--btn-donate-width);
}

.donation-btn:hover {
    background-color: #e74c3c;
}

.donation-mail {
    margin-top: 20px;
    line-height: 1.6;
    text-align: center;
}

.donation-mail strong {
    display: block;
    margin-top: 5px;
}

/*.donation-message {*/
    /*margin-bottom: 20px;*/
    /*line-height: 1.6;*/
    /*!*text-align: center; !* matches the buttons visually *!*!*/
    /*!*max-width: 600px;*!*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*font-size: 1.1rem;*/
/*}*/








/**************************************************
 * MEDIA QUERIES
 **************************************************/

/* <=700px: 2 rows, 3 buttons each */
@media (max-width: 700px) {
    .donation-btn {
        flex: 0 0 calc(33.333% - 10px); /* 3 per row */
        max-width: none;
    }
}



.donate-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    
    background-color: #c0392b;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    background-color: #e74c3c;
}

.donate-wrapper-sm {
    margin-bottom: 5px;
}

.donate-button-sm {
    display: block;
    /*margin-top: 12px;*/
    background-color: #c0392b;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.donate-button-sm:hover {
    background-color: #e74c3c;
}




/* Medium screens: 601px – 1000px */
@media (max-width: 1000px)
{
    
    body{
        font-size: .92rem;
    }
    
    /* header */
    header { height: var(--hdr-h-med);}
    .header-pad{height: var(--hdr-h-med);}
    .header-wrapper-sm-left{display: none;}
    
    .header-wrapper-lg{background-position: calc(50% - 0px);}
    
    
    /* main */
    main {
        margin-top: var(--hdr-h-med);
        /*margin-bottom: var(--ftr-h-med);*/
        min-height: calc(100vh - var(--hdr-h-med) - var(--ftr-h-med));
    }
    
    .h1{
        font-size: 2rem;
    }
    
    .h2{
        font-size: 1.5rem;
    }
    
    
    .footer-wrapper {
        font-size: .9em;
    }
    
    
    /* menu */
    .menu-gap{width: 130px;}
    .menu-lg{
        gap: 10px;
        top: 30px;
    }
    /*.menu-lg { display: flex;}*/
    /*.menu-sm .menu-sm-wrapper { display: none !important; }*/
    
    /*.menu-lg li a {padding: 1px 10px 0px;}*/
    .menu-lg li a {padding: 3px 10px;}
    
    
    /* footer */
    footer { height: var(--ftr-h-med); }
    
    
    .donate-button {
        padding: 8px 15px;   /* smaller inside spacing */
        font-size: 14px;     /* smaller text */
        border-radius: 4px;  /* optional */
        top: 15px;           /* optional: tighter positioning */
        right: 15px;
    }
    
}

/* Small screens: 0 – 600px */
@media (max-width: 700px)
{
    
    body{
        font-size: .84rem;
    }
    
    /* header */
    header { height: var(--hdr-h-min); }
    /*.logo-sm img { display: block; height: 50px; }*/
    .header-wrapper-sm{display: flex;}
    .header-wrapper-lg{display: none;}
    .header-wrapper-sm-left{display: block; height: var(--hdr-h-min);}
    .header-pad {height: var(--hdr-h-min);}
    
    
    /* main */
    main {
        margin-top: var(--hdr-h-min);
        /*margin-bottom: var(--ftr-h-min);*/
        min-height: calc(100vh - var(--hdr-h-min) - var(--ftr-h-min));
    }
    
    .h1{
        font-size: 1.8rem;
    }
    
    .h2{
        font-size: 1.4rem;
    }
    
    
    /* footer */
    footer { height: var(--ftr-h-med); }
    
    .footer-wrapper {
        font-size: .8em;
        /*flex-direction: column;   !* stack items vertically *!*/
        /*align-items: flex-start;*/
        /*!*align-items: center;      !* center both items *!*!*/
        /*!*text-align: center;       !* text centered *!*!*/
        /*gap: 0.5rem;              !* spacing between copyright and links *!*/
        /*padding: 0.5rem 1rem;     !* optional, smaller horizontal padding *!*/
        
        /*!*border: solid 1px #FF0;*! !*testing*!*/
    }
    
    
    /* menu */
    .menu-lg { display: none;}        /* hide large menu */
    .menu-sm-wrapper { display: block; } /* show hamburger wrapper */
    
    
    /* forms */
    .form-row-pair {
        display: flex;
        flex-direction: column;
    }
    
    
    .donation-options {
        justify-content: center; /* keep centered */
    }
    
    .donation-btn {
        flex: 0 0 calc((100% - 20px) / 3);
        /* 3 buttons per row, accounting for 2 gaps (10px each) */
        max-width: calc((100% - 20px) / 3);
    }
    
    
    #donate-button{
        display: none;
        /*position: static;   !* removes fixed behavior *!*/
        /*top: auto;*/
        /*right: auto;*/
    }
    
}


/**************************************************
 * Contact Form
 **************************************************/

/*@font-face {*/
    /*font-family: 'Montserrat';*/
    /*src: url('/common/assets/fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');*/
    /*font-weight: 400;*/
    /*font-style: normal;*/
    /*font-display: swap;*/
/*}*/

/*@font-face {*/
    /*font-family: 'Montserrat';*/
    /*src: url('/common/assets/fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');*/
    /*font-weight: 500;*/
    /*font-style: normal;*/
    /*font-display: swap;*/
/*}*/

/*@font-face {*/
    /*font-family: 'Montserrat';*/
    /*src: url('/common/assets/fonts/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');*/
    /*font-weight: 600;*/
    /*font-style: normal;*/
    /*font-display: swap;*/
/*}*/