@font-face {
    font-family: "Monorale";
    font-weight: 500;
    src:
    local("Monorale"),
    url("../fonts/monorale/monorale-medium.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Monorale";
    font-weight: 600;
    src:
    local("Monorale"),
    url("../fonts/monorale/monorale-semibold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Monorale";
    font-weight: 700;
    src:
    local("Monorale"),
    url("../fonts/monorale/monorale-bold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Monorale";
    font-weight: 800;
    src:
    local("Monorale"),
    url("../fonts/monorale/monorale-extrabold.woff") format("woff");
    font-display: swap;
}

/* Adjusted kale for WCAG AA contrast */
:root {
    --peta-blue:#2375C9;
    --narwhal:#254D68;
    --kale:#1FA382; 
    --sky:#E3F4FF;
    --peony:#FB5D5D;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
    font-family: 'Monorale', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Set some base styles, so it is easy to see */
.skip-link {
    position: absolute;
    display: inline-block;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1;
    background-color: var(--peony);
    color: white;
    /* Ensure the Y position is set to zero and any movement on the transform property */
    transform: translateY(0);
    transition: transform 250ms ease-in;
}

/* When it is not focused, transform its Y position by its total height, using a negative value, so it hides above the viewport */
.skip-link:not(:focus) {
    transform: translateY(-2rem);
}

p {
    font-size: 1rem;
    color: var(--narwhal);
    line-height: 1.6;
}

p a {
    font-weight: 800;
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}

p.hero {
    font-size: 1.2rem;
}
p.hero a {
    font-weight: 500;
}

h1 {
    font-size: 2.986rem;
    font-weight: 700;
    line-height: .8;
    margin: 0 0 1rem;
}
h2 {
    font-size: 2.488rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 2rem;
}
@media (min-width: 1280px) {
    h2 {
        font-size: 3rem;
    }
}
h3 {
    font-size: 2.074rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
}
h4 {
    font-size: 1.728rem;
    font-weight: 700;
    line-height: .8;
    margin: 0 0 1rem;
}

.bar {
    padding: 60px 30px;
}
@media (min-width: 768px) {
    .bar {
        padding: 100px 50px;
    }
}
@media (min-width: 1280px) {
    .bar {
        padding: 100px 100px;
    }
}
@media (min-width: 1920px) {
    .bar {
        padding: 130px 0;
    }
    .bar--wrap {
        max-width: 1600px;
        margin: 0 auto;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul li {
    margin: 0;
    padding: 0;
}


.button {
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    inline-size: max-content;
    clear: right;
    padding: 15px;
    color: #FFF;
}
.button:hover {
    background: var(--peony) !important;
}

header {
    background: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
@media (min-width: 1280px) {
    header {
        padding: 25px 60px;
    }
}
@media (min-width: 1280px) {
    header img {
       width: 90px;
       height: auto;
    }
}
header img {
    display: block;
}
.header--button {
    background: var(--peony);
    color: #FFF;
    font-size: .8rem;
    line-height: 1;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid var(--peony);
}
.header--button:hover {
    background: #FFF;
    color: var(--narwhal);
    border: 1px solid var(--narwhal);
}
@media (min-width: 1280px) {
    .header--button {
        padding: 15px 30px;
    }
}

.intro {
    padding: 0;
    position: relative;
    height: 690px;
    overflow: hidden;
}
.intro--wrap {
    padding: 60px 30px;
    bottom: 0;
    top: auto;
    position: absolute;
    z-index: 2;
}
.intro .desktop-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    top: 0;
}
.intro .desktop-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 21.07%, rgba(0, 0, 0, 0.70) 65.65%)
}
.intro h1, 
.intro p {
    color: #FFF;
}
.intro p {
    font-size: 1.2rem;
    line-height: 1.2;
}
.intro .bunny {
    margin-bottom: 30px;
}
.intro p a {
    color: #FFF;
    font-weight: normal;
}
@media (min-width: 768px) {
    .intro {
        height: 952px;
    }
    .intro--wrap {
        padding: 100px 50px;
    }
    .intro .desktop-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 21.07%, rgba(0, 0, 0, 0.70) 95.65%)
    }
}
@media (min-width: 1280px) {
    .intro {
        height: 580px;
    }
    .intro .desktop-background {
        object-position: 0 30%;
    }
    .intro--wrap {
        padding: 100px 100px;
    }
    .intro h1 {
        font-size: 3.815rem;
    }
    .intro p {
        font-size: 1.25rem;
    }
}
@media (min-width: 1536px) {
    .intro {
        height: 746x;
    }
    .intro .desktop-background {
        width: 100%;
        height: 100%;
    }
}
@media (min-width: 1920px) {
    .intro {
        height: 940px;
    }
    .intro--wrap {
        padding: 130px 0;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.about-peta {
    background: #FFF;
}
.about-peta h2 {
    color: var(--narwhal);
}
.about-peta p:last-child {
    margin-bottom: 2rem;
}
.about-peta .button {
    display: inline-block;
    background: var(--kale);
    margin: 0 .625rem .625rem 0;
    font-size: .835rem;
    display: block;
}
.about-peta p a {
    color: var(--narwhal);
}
@media (min-width: 1280px) {
    .about-peta .button {
        display: inline-block;
        font-size: 1rem;
    }
}

.why-animal-rights {
    background: var(--sky);
}
.why-animal-rights h2 {
    color: var(--narwhal);
}
.why-animal-rights p a {
    color: var(--narwhal);
}
.why-animal-rights p:last-child {
    margin-bottom: 3rem;
}
.why-animal-rights .button {
    background: var(--peta-blue);
    margin: 0 0 .625rem 0;
    font-size: .835rem;
}
@media (min-width: 1280px) {
    .why-animal-rights .bar--wrap {
        display: flex;
        align-items: center;
    }
    .why-animal-rights .button {
        font-size: 1rem;
    }
    .why--wrap {
        width: 60%;
        margin-right: 120px;
    }
}
@media (max-width: 500px) {
    .why-animal-rights .button {
        max-inline-size: 80%;
    }
}

.ways-to-help {
    background: var(--kale);
}
.ways-to-help h2 {
    color: #FFFFFF;
}
.ways-to-help ul li {
    display: inline;
}
.ways-to-help .button {
    background: var(--narwhal);
    font-size: .835rem;
    clear: none;
    margin: 0 .625rem .625rem 0;
    font-size: .835rem;
}
@media (min-width: 1280px) {
    .ways-to-help--wrap {
        display: flex;
    }
    .ways-to-help h2 {
        margin-right: 100px;
    }
    .ways-to-help .button {
        font-size: 1rem;
    }
}

.video {
    background: var(--narwhal);
}
.video h2 {
    color: var(--sky);
}
.video .button {
    background: var(--peta-blue);
    font-size: .835rem;
}
.video .xl--only {
    display: none
}
.video--video-wrap {
    margin: 30px 0;
}
.vimeo-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.vimeo-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
@media (min-width: 1920px) {
    .video--wrap {
        display: flex;
        align-items: center;
    }
    .video h2 {
        margin-right: 50px;
    }
    .video--video-wrap {
        max-width: 1080px;
        flex: 0 0 100%;
    }
    .video .xl--only {
        display: block;
    }
    .video .xl--hide {
        display: none;
    }
}

.more-grid {
    background: var(--sky);
}
.more-grid .bar--wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px; /* or grid-gap: 10px; */
}
.more-grid .grid {
    text-align: center;
}
.more-grid .grid span {
    border-radius: 50%;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    margin: 0 auto 1rem;
    cursor: pointer;
}
.more-grid .grid span img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .5s ease;
}
.more-grid a.grid:hover span img {
    transform: scale(1.1);
}
.more-grid h3 {
    color: var(--narwhal);
    font-size: 1.1925rem;
    display: block;
}
.more-grid a {
    text-decoration: none;    
}
.more-grid a:hover h3 {
    color: var(--peta-blue);
}
.more-grid a:hover h3 {
    color: var(--peta-blue);
}
@media (min-width: 768px) {
    .more-grid .bar--wrap  {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 32px;
    }
}
@media (min-width: 1280px) {
    .more-grid .bar--wrap  {
        gap: 60px;
    }
}
@media (min-width: 1280px) {
    .more-grid .bar--wrap  {
        gap: 60px;
    }
}
@media (min-width: 1920px) {
    .more-grid .bar--wrap {
        max-width: 1600px
    }
}



footer {
    background: var(--peta-blue);
    color: #FFF;
    padding: 60px 30px;
}
footer p {
    font-size: .8rem;
    color: #FFF;
}
footer p a {
    color: #FFF;
    text-decoration: none;
    font-weight: normal;
    display: block;
}
footer p a:hover {
    text-decoration: underline;
}
@media (min-width: 1280px) {
    footer {
        padding: 90px 60px;
    }
    footer p a {
        padding-left: 20px;
        margin-left: 20px;
        border-left: solid var(--narwhal) 1px;
        display: inline-block;
    }
}