/* Utilities */
.mt { margin-top: 2rem; }
.mb { margin-bottom: 2rem; }
.mt-xl { margin-top: 5rem; }
.mb-xl { margin-bottom: 5rem; }
.mt-sm { margin-top: 1rem; }
.mb-sm { margin-bottom: 1rem; }
.p-0 { padding: 0; }
.pt { padding-top: 2rem; }
.pb { padding-bottom: 2rem; }
.pt-xl { padding-top: 5rem; }
.pb-xl { padding-bottom: 5rem; }
.font-cormorant-garamond { font-family: "Cormorant Garamond", "Raleway", sans-serif; }
.font-semibold { font-weight: 600; }
.flex-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .center-mobile {
        text-align: center;
    }
}

/* Global styles */
p {
    font-family: "Raleway", "Source Sans Pro", sans-serif;
}

.btn-ncmns-green {
    transition: background 0.25s, color 0.25s !important;
}
/* More */
.btn-ncmns-secondary {
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #849E3D;
    color: #849E3D !important;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.075em;
    padding: 5px 50px;
    position: relative;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s !important;
}
.btn-ncmns-secondary:hover {
    background-color: #849E3D;
    color: #fff !important;
}
.blue-section {
    padding: 4em 0;
    background: rgb(15, 39, 70);
    color: white;
}
.link-cards {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 80%;
    & .link-card {
        background-color: #fff;
        border-bottom: 16px solid #849E3D;
        color: black;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        text-align: center;
        & > span.glyphicon {
            font-size: 4em;
            margin-top: 2rem;
        }
        & .link-card-download {
            background-color: #000;
            color: white;
            text-decoration: none;
            font-size: 2em;
            margin: 0 auto 2rem;
            border-radius: 100%;
            width: 65px;
            height: 65px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.25s;
        }
        & .link-card-download:hover {
            transform: scale(1.1);
        }
        & .link-card-download span {
            position: relative;
            top: -2px;
        }
    }
    @media (max-width: 767px) {
        flex-direction: column;
    }
}
.container:has([data-aos]) { /* bugfix with AOS library causing horizontal scroll */
  overflow: hidden;
}
.support-funnel p, .support-funnel h3,
.blue-section p, .blue-section h2 {
    color: inherit;
}
.blue-section p {
    font-weight: 500;
}
.hero {
    height: 550px;
    position: relative;
    @media (max-width: 500px) {
      height: 375px;
    }
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .btn {
        height: auto;
        padding: 12px;
    }
    & h1 {
        margin-top: 0;
        font-size: 8rem;
        color: #fff;
        text-align: center;
        padding: 1rem;
    }
    & p {
        color: #fff;
        font-size: 4rem;
        padding: 1rem;
    }
    @media (max-width: 900px) {
      & h1 { font-size: 5rem; }
      & p { font-size: 3rem; }
    }
    @media (max-width: 500px) {
      & h1 { font-size: 3.5rem; }
      & p { font-size: 2rem; }
    }
}
.p-lg {
    font-size: 2rem;
    line-height: 3rem;
}
.highlight {
    color: #849E3D;
}
.support-funnel {
    background-color: #eee;
    text-align: center;
    display: flex;
    flex-direction: row;
    /* Color scheme */
    &.purple-bucket {
      background-color: #601771;
      color: #ffffff;
    }
    &.green-bucket {
      background-color: #188F3B;
      color: #ffffff;
    }
    &.blue-bucket {
      background-color: #008998;
      color: #ffffff;
    }
    &.yellow-bucket {
      background-color: #AB8C02;
      color: #ffffff;
    }
    &.red-bucket {
      background-color: #A70236;
      color: #ffffff;
    }
}
.support-funnel.funnel-image-right {
    flex-direction: row-reverse;
}
.support-funnel h3 {
    font-size: 2em;
}
.support-funnel-image {
    overflow: hidden;
}
.support-funnel-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
    max-height: 400px;
}
.support-funnel-text {
    display: flex;
    flex-direction: column;
    align-self: center;

    h3 {
        padding: 0px 1em;
    }

    p {
        font-weight: 500;
        padding: 0px 1em;
    }

    button.donate-btn {
        margin: 0px auto 3rem;
        display: block;
        border: 1px solid #fff;
        padding: 6px 20px;
        text-transform: uppercase;
        font-weight: 800;
        font-family: "Raleway", "Source Sans Pro", sans-serif;
        font-size: 1.25em;
        transition: all 0.25s;
        color: #fff;
        & .glyphicon {
            margin-left: 5px;
            transition: all 0.25s;
        }
        &:hover {
            background-color: #fff;
            color: #000;
            & .glyphicon {
                margin-left: 15px;
            }
        }
    }
}
@media (max-width: 767px) {
    .support-funnel {
        flex-direction: column !important;
    }
    .support-funnel-image {
        height: 300px;
    }
}

.donor-list-container {
    max-width: 1400px;
}

.donor-list {
    border-bottom: 1px solid rgb(15, 39, 70);
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.donor-list .donor-list-amount {
    margin-top: 0;
    font-weight: 800;
    line-height: 1em;
    text-align: center;
}
.donor-list .donor-list-supporters {
    padding-top: 1em;
    text-align: center;
}
.donor-list .donor-list-supporters p {
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .donor-list .donor-list-supporters {
        padding-top: 0;
    }
    .donor-list-3col {
        column-count: 2;
        column-gap: 3rem;
    }
    .donor-list .donor-list-amount,
    .donor-list .donor-list-supporters {
        text-align: left;
    }
}
@media (min-width: 1200px) {
    .donor-list-3col {
        column-count: 3;
        column-gap: 4rem;
    }
}
@media (min-width: 1000px) {
    .font-cormorant-garamond.h1 {
        font-size: 44px;
    }
    .link-card h3 {
        font-size: 1.6em;
    }
}
