/* ================ Global ================ */
/*
 
    VERSION: 1.0.0
    DESCRIPTION: Global styling
 
    APPLICATION: Applies to the entire site.
 
/* ================ TABLE OF CONTENTS ================ */
/*
01. General
02. Custom Colors
00. Media Quires
*/
 
/* ==================== 01. General ==================== */
/* Site header and nav styling mod */
.uoheader {
  background-color: black;
}
.site-header {
	background: linear-gradient(0deg, #FFFFFF 25%, #FFFFFF 135%);
  min-height: 126px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-header__logo-image {
  max-height: 83px;
}

.region-primary-menu {
	background-color: black;
}

.region-primary-menu .menu-item a:hover, .region-primary-menu .menu-item a:focus, .region-primary-menu .menu-item--active-trail {
  background: black;
}

.region-primary-menu .menu-item a:visited {
  color: #FFFFFF;
}

/* Project node display */

.path-directory .views-element-container .max-w75 {
    max-width: none !important;
}

.path-directory .m3.views-row {
    margin: 1.6rem 0 !important;
    margin-right: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.path-directory .m3.views-row:first-child {
    margin-top: 0 !important;
}

.path-directory .views-col {
    flex: 1 1 auto;
    box-sizing: border-box;
    padding: 0 15px;
}

.views-field-picture,
.views-field-lname {
    margin: 5px 0;
}

/* Medium small screens. */
@media screen and (min-width: 420px) and (max-width: 600px) {
  .path-directory .views-col {
        padding: 0px !important;
        margin: 15px 0;
    }
  .views-field-picture {
      float: left;
      margin-right: 15px !important;
      max-width: 35% !important;
  }
  .views-field-picture img {
      max-width: 100% !important;
      height: auto !important;
      min-width: auto !important;
  }
  .views-field-lname {
    text-align: left;
  }
}

/* All small screens. */
@media screen and (max-width: 600px) {
    .path-directory .m3.views-row {
        margin: 0 30px 0 0 !important;
        flex-flow: column;
    }
    
    .path-directory .views-col {
        /* padding: 30px; */
        margin: 15px 0;
        width: 100% !important;
        box-sizing: border-box;
    }
    .path-directory .m3.views-row:first-child .views-col {
        padding-top: 0 !important;
    }

    .views-field-picture,
    .views-field-lname {
        text-align: left;
        margin: 5px 0;
    }
}
 
/* ==================== 02. Custom Colors ==================== */
/* Define CSS variables for a custom color palette.
  The naming convention follows a common pattern: 
  --color-{name}-{shade} 
  The shade number (e.g., 500) is used to represent a primary color intensity, 
  similar to how Tailwind CSS handles its default palette.
*/
:root {
  --color-jungle-500: #607366;
  --color-forest-500: #759670;
  --color-sage-500: #91B67F;
  --color-lime-500: #B4CC7F;
  --color-olivine-500: #C1D596;
}

/* Create utility classes to apply the background colors.
  The class names are designed to be descriptive and easy to remember,
  following a pattern like 'bg-{color-name}-{shade}'.
*/
.bg-jungle-500 {
  background-color: var(--color-jungle-500);
}

.bg-forest-500 {
  background-color: var(--color-forest-500);
}

.bg-sage-500 {
  background-color: var(--color-sage-500);
}

.bg-lime-500 {
  background-color: var(--color-lime-500);
}
.bg-lime-500 a {
	color: #004D40;
}
.bg-lime-500 a:focus,
.bg-lime-500 a:hover {
	color: #000000;
}

.bg-olivine-500 {
  background-color: var(--color-lime-500);
}

 
/* ==================== 00. MEDIA QUERIES ==================== */
 
/* === 1550px === */
@media screen and (min-width: 1550px) {
}
 
/* === 960px === */
@media screen and (min-width: 960px) {
}
 
/* === 900px === */
@media screen and (min-width: 900px) {
}
 
/* === 659px === */
@media screen and (min-width: 659px) {
}
 
/* === 480px === */
@media screen and (min-width: 480px) {
}

