@import url(https://fonts.googleapis.com/css2?family=Noto+Sans);
:root {
    --wc-main: rgba(14, 90, 139, 1);
    --wc-main-60: rgba(60, 93, 128, 0.6);
    --wc-green: rgba(106, 149, 57, 1);
    --wc-green-60: rgba(113, 148, 53, 0.6);
    --wc-light_blue: rgba(131, 182, 209, 1);
    --wc-light_blue-60: rgba(131, 182, 209, 0.6);
    --wc-purple: rgba(102, 76, 109, 1);
    --wc-purple-60: rgba(102, 76, 109, 0.6);
    --wc-tan: rgba(221, 219, 212, 1);
    --wc-tan-60: rgba(221, 219, 212, 0.6);
    --wc-dark-grey: rgba(9, 14, 23, 1);
    --wc-font-sans-serif: font-family: "Kanit", sans-serif;
    --wc-font-header: font-family: "Montserrat", sans-serif;
    --wc-body-font-family: var(--wc-font-sans-serif);
    --wc-code-background-dark: rgba(9, 14, 23, 1);
    --image-clamp: clamp(
        20px,
        20%,
        150px
    ); /*Set a clamp value for the logo that can be used in the calc function to center the header text*/
}

/* header {
  display: flex;
  border-bottom: 4px solid var(--wilcoBlue);
  margin-bottom: 10px;
} */

header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.header-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2em;
    color: var(--wc-main);
    /*margin-left: calc(var(--image-clamp) * -1);*/
    padding-top: 10px;
    align-self: center;
}

.header-logo {
    width: var(--image-clamp);
}

.logo {
    width: 10%;
    padding-right: 5px;
}

.logo img {
    width: 100%;
}

/* .headLink {
  display: flex;
  text-decoration: none;
  color: var(--wilcoBlue);
  align-items: center;
} */

header {
    display: flex;
    justify-content: space-between;
    container-type: inline-size;
}

.logoAndTitle {
    display: flex;
    flex-direction: row;
    container: inline-size;
}

@container (width <= 500px) {
    h1.header-text {
        margin-left: 0;
    }
    .logoAndTitle {
        flex-direction: column;
    }
}

#menu {
    position: absolute;
    position-anchor: --menuButton;
    position-area: end;
    a {
        font-family: var(--wc-font-header);
        color: var(--wc-main);
        text-decoration: none;
        font-weight: bold;
    }
    a:hover {
        color: var(--wc-purple);
    }
    li {
        padding: 10px 0;
        transition-delay: 2s;
        list-style-type: none;
    }
    li:hover {
        background-color: var(--wc-tan-60);
    }
}

/* #menuToggle input:checked ~ ul {
  transform: translate(0, 0); /* Bring the menu back into view */
/*} */

#menuLinks {
    padding-right: 1.5rem;
}

#menuButton {
    background-image: url(../includes/imgs/menu.png);
    /* border-radius: 8px; */
    border: none;
    margin: 4px;
    background-size: cover;
    width: 30px;
    height: 30px;
    cursor: pointer;
    anchor-name: --menuButton;
}

#menu {
    position: absolute;
    position-anchor: --menuButton;
    position-area: left span-bottom;
}

#vsInfo {
    max-width: 60ch;
    justify-self: center;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 15px 10px;
    width: 100%;
    min-height: 50vh;
    align-items: center;
    /* min-height: 630px; */
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100%;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.quickLink > a {
    display: inline;
    line-height: normal;
    padding: initial;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 340px);
}

.top-info {
    max-width: 75ch;
}

.cards {
    /* width: 80vw; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: var(--wc-tan-60);
    border-radius: 15px;
    padding: 1em;
    width: 300px;
    position: relative;
    border: var(--wc-tan) 2px solid;
    position: relative;
    cursor: pointer;

    svg {
        position: absolute;
        z-index: 1;
        width: 25%;
        right: 10px;
        bottom: 10px;
        opacity: 0.15;

        .blue {
            fill: var(--wc-light_blue-60);
        }
    }
}

.card:hover {
    border: var(--wc-green) 2px solid;
}

.card > h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    z-index: 5;
}

.card-description {
    display: block;
    z-index: 5;
}

.card-link {
    color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

#menuItemExit {
    color: hsla(0, 100%, 62%, 1);
}

.ripCord {
    position: fixed;
    bottom: 1vh;
    right: 1vw;
    min-width: 50px;
    max-width: 6rem;
    text-align: center;
    z-index: 1000;
}

.ripCord a {
    text-decoration: none;
    color: var(--wilcoBlue);
    font-weight: 600;
}

.ripCordSVG {
    width: 50%;
    background-color: red;
    border-radius: 25%;
    padding: 5px;
}

.ripCord a:hover {
    color: #000;
    fill: #fff;
}

.inline {
    display: inline;
}

/* #victimsServicesUnit a:hover {
  background-color: var(--wilcoBlue);
}
#deathOALovedOne a:hover {
  background-color:  var(--wilcoBlue);
}

#dvsa a:hover {
  background-color:  var(--wilcoBlue);
}
#childrenAdolescents a:hover {
  background-color:  var(--wilcoBlue);
}
#mentalHealth a:hover {
  background-color:  var(--wilcoBlue);
}
#countyAttorney a:hover {
  background-color:  var(--wilcoBlue);
}
#districtAttorney a:hover {
  background-color:  var(--wilcoBlue);
}
#contact a:hover {
  background-color:  var(--wilcoBlue);
} */

main a {
    color: var(--wilcoBlue);
    line-height: 2rem;
    display: block;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

main ol {
    margin-bottom: 1rem;
}

main ol ol {
    list-style-type: lower-alpha;
}

main ol ol ol {
    list-style-type: upper-roman;
}

.container a:hover {
    color: #fff;
    box-shadow: rgb(110, 110, 110) 0 0 0 2px;
}

.desktopView {
    display: none;
}

@media (min-width: 750px) {
    .desktopView {
        display: block;
    }
    #victimsServicesUnit {
        display: none;
    }
    #blank {
        display: none;
    }
    /* .headerTitle {
    font-size: 1.5rem;
  } */
    main {
        width: 80vw;
        margin-left: 10vw;
    }
}

/* @media (max-width:749px) {
  .ripCord {
    position:relative
  }
  This is to test if git is working correctly
} */
