/*{
    outline: 1px solid red;
}*/

html, body{
    height: 100%;
    font-family: 'Zalando Sans', sans-serif;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #D5E5E8;
    margin: 0;
}
main{
    margin-top: 100px;
    flex: 1;
}

.zalando-sans-<uniquifier> {
  font-family: "Zalando Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.google-sans-flex-<uniquifier> {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}

/*Navigation CSS*/
nav{
    z-index: 3;
    position: fixed;
    top: 0px;
    opacity: .95;
    background-color: #83b9c4;
    width: 100%;
    padding-top: 0px;
    box-sizing: border-box;
}

nav.desktop{
    display: flex;               /* horizontal layout */
    align-items: center;         /* vertical centering */
    padding: 0 16px;
    height: 100px;                /* adjust if needed */
    box-sizing: border-box;
}

nav.desktop ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 500;
    font-style: bold;
    font-size: 18px;
    letter-spacing: 1.5px;
    flex: 1;
}

/* keep logo at the far left */
nav.desktop ul .logo {
    margin-right: auto;
    margin-left: 0px;
    display: flex;
    align-items: center;
}

nav.desktop ul li.logo img{
    max-height: 80px; /* keep logo inside the navbar; adjust to match your nav height */
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
}

/* remove floats — use flex spacing */
nav.desktop ul li{
    margin: 0 8px;
    display: flex;
    align-items: center;
}
nav.desktop ul li a{
    padding: 0.65em 1.1em;
    margin: 0;
    color: whitesmoke;
    display: inline-flex;
    align-items: center;
    float: none; /* important: cancel previous float */
}

/* keep icon group at the far right */
nav.desktop .icons{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

nav.desktop img.icon{
    width: 20px;
    padding: 6px;
    float: none;
    display: block;
}

nav ul li a:visited,
nav ul li a:link{
    color: whitesmoke;
}
nav ul li a:hover{
    background-color: #46888D;
    border-radius: 5px;
    color: white;
    transition: all .5s;
}

nav .logo a:hover{
    background-color: transparent;
    color: white;
    transition: all .5s;
}
nav li a.current{
    text-decoration: underline;
}

nav.desktop .donate a{
    background-color: rgb(75, 218, 82);
    color: whitesmoke;
    border-radius: 5px;
    transition: all .5s;
}
nav.desktop .donate a:hover{
    background-color: rgb(114, 238, 174);
    transition: all .5s;
}

nav.desktop .volunteer a{
    background-color: #004e81ff;
    color: whitesmoke;
    border-radius: 5px;
    transition: all .5s;
}
nav.desktop .volunteer a:hover{
    background-color: rgb(20, 131, 206);
    transition: all .5s;
}



textarea, 
input.text,
input[type="text"],
input[type="button"],
input[type="submit"]
.input-checkbox{
  -webkit-appearance: none;
  -webkit-border-radius: 0;
    border-radius: 0;
}

/*Content CSS*/
/*Headers*/
h1{
    color: white;
    text-align: center;
    font-family: 'Zalando Sans', sans-serif;
    font-size: 200%;
    font-weight: bold;
    padding-top: 0vh;
}
h2{
    color: #5F99A4;
    text-align: center;
    font-size: 175%;
    font-weight: bold;
    font-family: 'Zalando Sans', sans-serif;
    text-decoration: underline;
    margin-top: 0px;
    padding-top: 30px;
    padding-bottom: 20px;
    z-index: 1;
}

/* Other Pages CSS */
section{
    padding-bottom:50px;
    padding-top:20px;
}
section p{
    color: white;
    font-size: 16px;
    font-family: 'Zalando Sans', sans-serif;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
}

/* Issue Card CSS*/
.carddeck{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    justify-content: center;
    width: 70vw;
    margin: 20px auto;
    gap: 30px;
}
.card{
    background-color: #46888D;
    min-height: 300px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}
.card img{ 
    display: block;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 15px;
    width: 10vh;
    height: 10vh;
    flex-shrink: 0;
}
.cardoverlay{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}
.cardoverlay summary {
    display: contents;
}

.cardoverlay h3 {
    margin-top: 0;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.cardoverlay p {
    flex-grow: 1;
    margin-bottom: 12px;
    min-height: 0;
}

.learnmore{
    gap: 8px;
    background-color: #5F99A4;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}
.learnmore:hover {
    background-color: #6ea7b2;
    text-decoration: none;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

.arrow {
    display: inline-block;
    margin-bottom: 1px;
    font-weight: bold;
    transition: transform 0.3s ease;
    padding-left: 3px;
}

.learnmore:hover .arrow {
    transform: translateX(3px);
}

.overlay{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #333333;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-radius: 25px;
}
.card:hover .overlay{
    opacity: .8;
}

.cardoverlay p{
    margin: 0px;
    margin-left: 10px;
    margin-top: .5vh;
    margin-bottom: .5vh;
    padding: 0px;
    padding-bottom: 10px;
    font-size: .9em;
    font-family: 'Zalando Sans', sans-serif;
}
h3{
    color: white;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: 1.5em;
    font-family: 'Zalando Sans', sans-serif;
    text-align: center;
}
h4{
    color: balck;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: 1em;
    font-family: 'Zalando Sans', sans-serif;
    text-align: left;
}
h5{
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: .9em;
    font-family: 'Zalando Sans', sans-serif;
    text-align: center;
}


/*Top Section CSS*/
.opener{
    background-color: #46888D;
    background-repeat:no-repeat;
	background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.opener.topsection.imageheader{
    position: relative;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

/* Dark overlay for better readability */
.opener.topsection.imageheader::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    z-index: 1;                             /* Behind the text */
}

/* Ensure all text sits above overlay */
.opener.topsection.imageheader * {
    position: relative;
    z-index: 2;
}

/* Optional: Hero text styling */
.opener.topsection.aboutheader h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.opener.topsection.imageheader.about{
        background-image: url('media/headers/arboretum.jpg');
}

.opener.topsection.imageheader.issues{
        background-image: url('media/headers/protest.jpg');
}

.splash.opener{
    display: flex;
    align-items: stretch;
    min-height: 70vh;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #46888D;
}
.right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    overflow: hidden;
}
.right .splashimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.left{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
}
.splashlogo{
    width: 100%;
    max-width: 600px;   /* adjust to taste */
    height: auto;
    margin: 0 auto 24px auto;
    display: block;
}

.tagline {
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
}

.videoplaceholder{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50vh;
    background-color: black;
    color: white;
    font-family: 'Zalando Sans', sans-serif;
    font-size: 28px;
    font-weight: bold;
}
.videoplaceholder h2{
    color:white;
}

.videointro{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
}
iframe{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.issuespreview h2{
    color: #46888D;
    font-size: 34px;
}

.issuespreviewtable{
    justify-content: center;
    width: 70vw;
    margin: 20px auto;
    gap: 30px;
}
.issuespreviewtable ul{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    list-style: none;
    padding: 0;
    width: 100%;
}
.issuespreviewtable li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5em;
}
.issuespreviewtable li::before {
    content: "✓";
    font-weight: bolder;
    color: #46888D;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.836);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.issue-details{
    padding: 20px 40px;
    margin: 0px auto;
    max-width: 800px;
    margin-bottom: 20px;
}

.issue-details p{
    color: rgba(3, 9, 12, 0.783);
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
}

.issue-details h3{
    color:  rgba(3, 9, 12, 0.783);;
    font-size: 34px;
    text-align: left;
    margin: 20px;
    margin-left: 0px;
}

.issue-details h4{
    color:  rgba(3, 9, 12, 0.783);;
    font-size: 24px;
    text-align: left;
    margin: 20px;
    margin-left: 0px;
}

.issue-details ul{
    color: rgba(3, 9, 12, 0.783);;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    margin-left: 20px;
}
.splashbutton.learnmore{
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}

.splashbullet{
    color: #46888D;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-align: left;
    padding: 14px 20px;
    border-radius: 10px;
}
.issuespreview {
    position: relative;
}

.splashdonate{
    background-color: white;
    padding: 20px 0px;
}

.splashdonate h2{
    font-size: 34px;
}

.donategrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 3fr));
    justify-content: center;
    width: 70vw;
    margin: 20px auto;
    gap: 30px;
}
.donatebutton{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    color: white;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: bold;
    font-size: 25px;

    background-color: #46888D;
    min-height: 100px;
    padding: 20px;
    box-sizing: border-box;

    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.donatebutton:hover {
    background-color: #6ea7b2;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

.aboutme{
    min-height: 70vh;
    padding: 20px 40px;
    max-width: 1400px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #D5E5E8;
    margin: 30px;
    margin-left: auto;
    margin-right: auto;
}
.aboutme p{
    color: rgba(3, 9, 12, 0.783);;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 20px;
    line-height: 30px;
    margin-left: 40px;
}
.aboutme h2{
    color: rgba(3, 9, 12, 0.783);;
    font-size: 44px;
}
.endabout{
    background-color: #2b8191;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.endabout h3{
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
}

.legal{
    font-family: 'Zalando Sans', sans-serif;
    text-align: center;
    color: black;
    padding: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.legal section{
    margin-bottom: 40px;
}
.legal h1{
    text-align: center;
    color: black;
    margin: 20px;
}
.legal h2{
    text-align: left;
    color: black;
    margin: 10px;
    margin-left: 0px;
    padding: 0px;
}
.legal h3{
    text-align: left;
    color: black;
    margin-bottom: 0px;
}
.legal h4{
    text-align: left;
    margin: 0px;
    margin-bottom: 30px;
}
.legal p{
    color: black;
    font-size: 16px;
    margin: 0px;
    margin-bottom: 20px;
}
.legal ul{
    text-align: left;
    margin-top: 0px;
    color: black;
    font-size: 16px;
}
.legal a:link{
    color:#0000FF;
}
.legal a:visited{
    color: purple;
}


/* Volunteer Form Styles */
.volunteer-section {
    text-align: center;
    margin: 20px;
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.volunteer-section {
    color: #5F99A4;
    padding-bottom: 5px;
}
.volunteer-section p {
    text-align: center;
    color: black;
    padding-bottom: 10px;
}


/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

form label {
    margin-top: 10px;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 500;
    font-style: bold;
    color: #333;
}

form input, 
form select, 
form textarea {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 10px;
    background-color: #5F99A4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

form button:hover {
    background-color: #6ea7b2;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

.consentdisclaimer{
    display: flex; 
    align-items: flex-start; 
    gap: 8px; 
    margin: 16px 0;
}

input{
    margin-top: 4px; 
    flex-shrink: 0;
}

.disclaimertext{
    color: white;
    margin: 0;
}

/*Footer CSS*/
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    background-color: #5F99A4;
    font-family: 'Zalando Sans', sans-serif;
    color: white;
	width: 100%;
    height: auto;
}
#footer-container{
    margin-top: auto;
}
footer .footer-contact-info p{
    margin: 0px;
    text-align: center;
}
footer .paid-for{
    text-align: center;
    padding: 10px 16px;
    border: solid white 1px;
}
footer .footer-links {
    text-align: center;
    margin: 0px;
    padding: 8px;
}

#cookieConsentBanner{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#eee;
    padding:15px;
    text-align:center;
    z-index:1000;
}
#cookiePolicyLink{
    color: #0000FF;
    text-decoration: underline;
    margin-left:10px;
}

/*Media CSS*/
#overlay{
    background-color: rgba(0,0,0,.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
}
.slideshow-container{
    text-align: center;
    width: 100%;
}

img.icon{
    width: 40px; 
    padding: 10px 10px 10px 10px;
    float: right;
}
.icons{
    margin-right: 10px;
}
img.aboutpic{
    max-height: 50vh;
    margin-top: 0px;
    margin-bottom: 10px;
    border-color: #5F99A4;
    border-width: 10px;
    border-style: solid;
}
img.rightpic{
    float: right;
    clear: left;
    margin-left: 20px;
    margin-right: 20px;
}
img.leftpic{
    float: left;
    clear: right;
    margin-right: 20px;
    margin-left: 20px;
}

img.centerpic{
    display: block;
    margin: auto;
}
img#about_mainpic{
    max-height: 70vh;
}
.slide img{
    max-height: 90vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slide video{
    max-height: 90vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.prev{
    z-index: 1;
    position: absolute;
    left: 10px;
    top: 50vh;
    width: 20px;
    cursor: pointer;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 3px 3px 3px;
}
.next{
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 50vh;
    width: 20px;
    cursor: pointer;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;;
    border-radius: 3px 3px 3px 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    text-decoration: none;
}
a:link{
    color: white;
    font-style: normal;
    text-decoration: none;
}
a:visited{
    color: white;
    font-style: normal;
}

/* Media Queries */
.mobile{
    display: none;
}


/* Mobile Phones and tablet CSS (common phones) */
@media only screen and (max-width: 1080px){   
    /* Image and Video CSS */
    .slide video, .slide img{
        width: 100%;
        max-height: none;
    }
    .next, .prev{
        top: 25vw;
    }
    
    /* Navigation CSS */
    /* Mobile navigation (cleaned, same behavior) */
    nav.mobile{
        display: flex;
        align-items: center;
        padding: 0 16px;
        height: 100px;
        width: 100%;
        box-sizing: border-box;
    }

    nav.mobile ul{
        font-family: 'Google Sans Flex', sans-serif;
        font-weight: 500;
        font-style: bold;
        font-size: 18px;
        letter-spacing: 1.5px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        width: 100%;
    }

    nav.mobile ul li.logo{
        display: flex;
        align-items: center;
        margin: 0;
    }
    nav.mobile ul li.logo img{
        display: block;
        margin: 0;
        height: 80px;
    }

    /* Hamburger (no floats; visual toggled by JS) */
    nav.mobile #hamburger{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 auto;
        padding: 0 10px;
        width: 50px;
        height: 100px;
        font-size: 32px;
        color: white;
        background: transparent;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        box-sizing: border-box;
        cursor: pointer;
    }

    /* Overlay panel (centered, not full-screen) */
    nav.mobile .nav-links{
        position: fixed;
        left: 0;
        right: 0;
        top: 100px;
        margin: 0 auto;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 60vh;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        background: rgba(95,153,164,0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateY(-120%);
        transition: transform 320ms cubic-bezier(.2,.8,.2,1), opacity 240ms;
        opacity: 0;
        z-index: 200;
        pointer-events: none;
        padding: 10px 0;
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }

    /* Open / from-bottom variants */
    nav.mobile .nav-links.open{
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav.mobile .nav-links.from-bottom{
        top: auto;
        bottom: 0;
        height: 50vh;
        transform: translateY(100%);
    }

    /* Menu items */
    nav.mobile .nav-links ul{
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        box-sizing: border-box;
    }

    nav.mobile .nav-links li,
    nav.mobile ul li.dropdown{
        width: 100%;
        text-align: center;
    }

    nav.mobile .nav-links li a,
    nav.mobile ul li a{
        display: block;
        padding: 12px 10px;
        text-align: center;
        margin: 0;
        width: 100%;
        float: none; /* override legacy floats */
        box-sizing: border-box;
    }


    /* Icons row (centered) */
    /* Force mobile icon row to center (override globals) */
    nav.mobile .icons, nav.mobile .nav-links .icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 420px;
        margin: 6px auto !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    nav.mobile .icons a, nav.mobile .nav-links .icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 8px;
    }

    nav.mobile img.icon, nav.mobile .nav-links .icons img.icon {
        float: none !important;
        display: block !important;
        margin: 0 !important;
        width: 32px;
        height: auto;
    }

    /* Cancel legacy floats/margins that interfere with mobile layout */
    nav.mobile .nav-links li, nav.mobile .nav-links li a, nav.mobile ul li a{
        float: none !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    /* hide desktop nav on small viewports */
    nav.desktop{
        display: none;
    }
    h5{
        font-size: 3vw;
        font-family: 'Zalando Sans', sans-serif;
        text-align: left;
    }
    
}


@media only screen and (max-width: 700px){
    /* Main Page Image Change*/
    .endabout {
        flex-direction: column;
        align-items: center; /* optional: center text horizontally */
    }

    .endabout h3 {
        text-align: center; /* optional, usually better on mobile */
    }
    
    img.aboutpic{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }
    img#about_mainpic{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }
    
    img#splashimage{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }

    
}

/* Very Small Screens Mobile (iPhone 5 size and smaller)*/
@media only screen and (max-width: 640px){
    /* Main Page */
    h1{
        text-align: center;
        font-family: 'Zalando Sans', sans-serif;
        font-size: 200%;
        font-weight: bold;
        padding-top: 0vh;
    }

    .endabout {
        flex-direction: column;
        align-items: center; /* optional: center text horizontally */
    }

    .endabout h3 {
        text-align: center; /* optional, usually better on mobile */
    }

    /* Image change */
    img.aboutpic{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }
    
    img#about_mainpic{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }

    img#splashimage{
        display: block;
        text-align: center;
        margin: auto;
        float: none;
        width: 100%;
        max-height: none;
    }

    .slide img{
        width: 100%;
        max-height: none;
        
    }
    .slide video{
        width: 100%;
        max-height: none;
    }
    footer p{
        margin-left: 10px;
    }
    img.icon{
        width: 25px;
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .learnmore,
    .arrow {
        transition: none;
    }
    
    .learnmore:hover .arrow {
        transform: none;
    }
}