/*
 Theme Name:       UW WordPress Theme - Child Theme
 Theme URI:        https://github.com/uweb/uw_wp_theme-master_child
 GitHub Theme URI: https://github.com/uweb/uw_wp_theme_child
 Primary Branch:   main
 Author:           UW Web Team
 Author URI:       https://github.com/uweb
 Description:      A child theme based on the UW WordPress Theme
 Template:         uw_wp_theme-master
 Version:          1.1
 License:          GNU General Public License v2 or later
 License URI:      http://www.gnu.org/licenses/gpl-2.0.html
 Tags:             two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:      uw_wp_theme_child
*/

/* staff gallery */
.staff-member {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.staff-member img {
    width: 300px;
    height: auto;
    border-radius: 5%;
    margin-bottom: 10px;
}

.staff-member h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.staff-member p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #666;
}

/* individual staff pages */
.staff-profile-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.staff-profile-photo {
    flex: 0 0 300px;
    max-width: 300px;
    align-self: left;
}

.staff-profile-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.staff-profile-info {
    flex: 1 1 0;
}

.staff-profile-info h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.5em;
}

.staff-profile-info p {
    margin: 0;
    line-height: 1.7;
}

@media (min-width: 700px) {
    .staff-profile-flex {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .staff-profile-photo {
        align-self: flex-start;
    }
}

/* crisis services button */
a.crisis-services {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; 
    bottom: 0;
    height: 40px;
    width: 100%;
    background-color: #ffc700;
    font-family: "Encode Sans Compressed";
    font-size: 17px;
    color: black;
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
}

body {
    margin-bottom: 40px;	
}

a.crisis-services:hover,
a.crisis-services:focus {
    text-decoration: underline;
    outline: none;
    transition: all 0.2s ease;
}

a.crisis-services span.deemphasized {
    font-weight: 400;
}
