@charset "UTF-8";
/* CSS Document for Worthi.org */

:root {
    /* Primary Teal - Base and Utility Colors */
    --bs-primary: #009aa6;
    --bs-primary-rgb: 0, 154, 166;
    --bs-primary-bg-subtle: var(--bs-primary-tint-90);
    --bs-primary-border-subtle: var(--bs-primary-tint-40);
    --bs-primary-text-emphasis: var(--bs-primary-shade-60);

    /* Primary Teal - All Shades (Dark to Light) */
    --bs-primary-shade-90: #000f11;
    --bs-primary-shade-80: #001f21;
    --bs-primary-shade-70: #002e32;
    --bs-primary-shade-60: #003e42;
    --bs-primary-shade-50: #004d53;
    --bs-primary-shade-40: #005c64;
    --bs-primary-shade-30: #006c74;
    --bs-primary-shade-20: #007b85;
    --bs-primary-shade-10: #008b95;

    /* Primary Teal - All Tints (Light to Dark) */
    --bs-primary-tint-90: #e6f5f6;
    --bs-primary-tint-80: #ccebed;
    --bs-primary-tint-70: #b3e1e4;
    --bs-primary-tint-60: #99d7db;
    --bs-primary-tint-50: #80cdd3;
    --bs-primary-tint-40: #66c2ca;
    --bs-primary-tint-30: #4db8c1;
    --bs-primary-tint-20: #33aeb8;
    --bs-primary-tint-10: #1aa4af;

    /* Secondary Yellow - Base and Utility Colors */
    --bs-secondary: #f9b233;
    --bs-secondary-rgb: 249, 178, 51;
    --bs-secondary-bg-subtle: var(--bs-secondary-tint-90);
    --bs-secondary-border-subtle: var(--bs-secondary-tint-40);
    --bs-secondary-text-emphasis: var(--bs-secondary-shade-60);

    /* Secondary Yellow - All Shades (Dark to Light) */
    --bs-secondary-shade-90: #191205;
    --bs-secondary-shade-80: #32240a;
    --bs-secondary-shade-70: #4b350f;
    --bs-secondary-shade-60: #644714;
    --bs-secondary-shade-50: #7d591a;
    --bs-secondary-shade-40: #956b1f;
    --bs-secondary-shade-30: #ae7d24;
    --bs-secondary-shade-20: #c78e29;
    --bs-secondary-shade-10: #e0a02e;

    /* Secondary Yellow - All Tints (Light to Dark) */
    --bs-secondary-tint-90: #fef7eb;
    --bs-secondary-tint-80: #fef0d6;
    --bs-secondary-tint-70: #fde8c2;
    --bs-secondary-tint-60: #fde0ad;
    --bs-secondary-tint-50: #fcd999;
    --bs-secondary-tint-40: #fbd185;
    --bs-secondary-tint-30: #fbc970;
    --bs-secondary-tint-20: #fac15c;
    --bs-secondary-tint-10: #faba47;

    /* Card Theme Colors */
    --regular-giving: #7bbf8f;
    --legacy-donations: #9e2a2f;
    --value-exchange: #f48c42;
    --charity-lotteries: #8a3abf;

}

/* Background Color Utility Classes */
/* Primary Colors */
[class*="bg-primary-shade-"],
[class*="bg-primary-tint-"],
.bg-primary {
    background-color: var(--bs-primary);
}

.bg-primary-subtle {
    background-color: var(--bs-primary-bg-subtle);
}

/* Generate all primary tint classes */
.bg-primary-tint-90 {
    background-color: var(--bs-primary-tint-90);
}

.bg-primary-tint-80 {
    background-color: var(--bs-primary-tint-80);
}

.bg-primary-tint-70 {
    background-color: var(--bs-primary-tint-70);
}

.bg-primary-tint-60 {
    background-color: var(--bs-primary-tint-60);
}

.bg-primary-tint-50 {
    background-color: var(--bs-primary-tint-50);
}

.bg-primary-tint-40 {
    background-color: var(--bs-primary-tint-40);
}

.bg-primary-tint-30 {
    background-color: var(--bs-primary-tint-30);
}

.bg-primary-tint-20 {
    background-color: var(--bs-primary-tint-20);
}

.bg-primary-tint-10 {
    background-color: var(--bs-primary-tint-10);
}

/* Generate all primary shade classes */
.bg-primary-shade-90 {
    background-color: var(--bs-primary-shade-90);
}

.bg-primary-shade-80 {
    background-color: var(--bs-primary-shade-80);
}

.bg-primary-shade-70 {
    background-color: var(--bs-primary-shade-70);
}

.bg-primary-shade-60 {
    background-color: var(--bs-primary-shade-60);
}

.bg-primary-shade-50 {
    background-color: var(--bs-primary-shade-50);
}

.bg-primary-shade-40 {
    background-color: var(--bs-primary-shade-40);
}

.bg-primary-shade-30 {
    background-color: var(--bs-primary-shade-30);
}

.bg-primary-shade-20 {
    background-color: var(--bs-primary-shade-20);
}

.bg-primary-shade-10 {
    background-color: var(--bs-primary-shade-10);
}

/* Secondary Colors */
[class*="bg-secondary-shade-"],
[class*="bg-secondary-tint-"],
.bg-secondary {
    background-color: var(--bs-secondary);
}

.bg-secondary-subtle {
    background-color: var(--bs-secondary-bg-subtle);
}

/* Generate all secondary tint classes */
.bg-secondary-tint-90 {
    background-color: var(--bs-secondary-tint-90);
}

.bg-secondary-tint-80 {
    background-color: var(--bs-secondary-tint-80);
}

.bg-secondary-tint-70 {
    background-color: var(--bs-secondary-tint-70);
}

.bg-secondary-tint-60 {
    background-color: var(--bs-secondary-tint-60);
}

.bg-secondary-tint-50 {
    background-color: var(--bs-secondary-tint-50);
}

.bg-secondary-tint-40 {
    background-color: var(--bs-secondary-tint-40);
}

.bg-secondary-tint-30 {
    background-color: var(--bs-secondary-tint-30);
}

.bg-secondary-tint-20 {
    background-color: var(--bs-secondary-tint-20);
}

.bg-secondary-tint-10 {
    background-color: var(--bs-secondary-tint-10);
}

/* Generate all secondary shade classes */
.bg-secondary-shade-90 {
    background-color: var(--bs-secondary-shade-90);
}

.bg-secondary-shade-80 {
    background-color: var(--bs-secondary-shade-80);
}

.bg-secondary-shade-70 {
    background-color: var(--bs-secondary-shade-70);
}

.bg-secondary-shade-60 {
    background-color: var(--bs-secondary-shade-60);
}

.bg-secondary-shade-50 {
    background-color: var(--bs-secondary-shade-50);
}

.bg-secondary-shade-40 {
    background-color: var(--bs-secondary-shade-40);
}

.bg-secondary-shade-30 {
    background-color: var(--bs-secondary-shade-30);
}

.bg-secondary-shade-20 {
    background-color: var(--bs-secondary-shade-20);
}

.bg-secondary-shade-10 {
    background-color: var(--bs-secondary-shade-10);
}


/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
}

h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-primary);
}

/* Paragraph Styles */
body {
    font-family: 'Karla', Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    overflow-x: hidden;
}

.lead {
    font-size: 1.3em;
}

.strapline {
    font-size: 1.1em;
    text-align: center;
    color: var(--bs-primary);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .strapline {
        font-size: 1.3em;
    }
}

.fade-rise {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeRise 1.5s ease-out forwards;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update the continuous pulse animation */
@keyframes continuousPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.circle-card .fa-2x {
    animation: continuousPulse 3s ease-in-out infinite;
    transform-origin: center;
}

/* Adjust animation for smaller screens */
@media (max-width: 576px) {
    .circle-card .fa-2x {
        animation: continuousPulse 3s ease-in-out infinite;
    }

    @keyframes continuousPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }
}

/* Img Styles */
.logo-outlined {
    width: 200px;
    height: auto;
    margin: 0px 25px 0px 25px;
}

@media (min-width: 768px) {
    .logo-outlined {
        width: 300px;
    }
}

/* Charity Logo Zoom */

@keyframes logoZoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-zoom {
    opacity: 0;
    transform: scale(0.7);
}

.logo-zoom-active {
    animation: logoZoomIn 0.6s ease-out forwards;
}

.row-cols-2 .col:nth-of-type(1) .logo-zoom-active {
    animation-delay: 0.1s;
}

.row-cols-2 .col:nth-of-type(2) .logo-zoom-active {
    animation-delay: 0.2s;
}

.row-cols-2 .col:nth-of-type(3) .logo-zoom-active {
    animation-delay: 0.3s;
}

.row-cols-2 .col:nth-of-type(4) .logo-zoom-active {
    animation-delay: 0.4s;
}

.row-cols-2 .col:nth-of-type(5) .logo-zoom-active {
    animation-delay: 0.5s;
}

.row-cols-2 .col:nth-of-type(6) .logo-zoom-active {
    animation-delay: 0.6s;
}


/* Img scrolling circles */
.circle-scroll {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200px;
    margin: 20px 0;
}

.circle-container {
    display: flex;
    gap: 30px;
    animation: scroll 60s linear infinite;
    /* Add these properties */
    width: fit-content;
    padding-right: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.circle-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0;
    /* Remove the margin here since we're using gap */
    flex-shrink: 0;
    object-fit: cover;
    border: 5px solid var(--bs-secondary);
}

/* Optional: Pause animation on hover */
.circle-scroll:hover .circle-container {
    animation-play-state: paused;
}

/* Card Styles */
.circle-card.circle-card-giving,
.circle-card.circle-card-legacy,
.circle-card.circle-card-value,
.circle-card.circle-card-lottery {
    color: #fff;
}

.circle-card.circle-card-giving .card-title,
.circle-card.circle-card-legacy .card-title,
.circle-card.circle-card-value .card-title,
.circle-card.circle-card-lottery .card-title,
.circle-card.circle-card-giving .card-text,
.circle-card.circle-card-legacy .card-text,
.circle-card.circle-card-value .card-text,
.circle-card.circle-card-lottery .card-text {
    color: #fff;
}

.circle-card-giving {
    background-color: var(--regular-giving);
}

.circle-card-legacy {
    background-color: var(--legacy-donations);
}

.circle-card-value {
    background-color: var(--value-exchange);
}

.circle-card-lottery {
    background-color: var(--charity-lotteries);
}

/* Update circle card styles */
.circle-card.circle-card-regular,
.circle-card.circle-card-legacy,
.circle-card.circle-card-value,
.circle-card.circle-card-lottery {
    color: #fff;
}

.circle-card.circle-card-regular .card-title,
.circle-card.circle-card-legacy .card-title,
.circle-card.circle-card-value .card-title,
.circle-card.circle-card-lottery .card-title {
    color: #fff;
}

/* Circle Card Styles */
.circle-card {
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    text-align: center;
    border: none;
    max-width: 280px;
    margin: 0 auto;
}

.circle-card .card-body {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.circle-card .card-title {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.circle-card .card-text {
    font-size: 0.9em;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .circle-card .card-title {
        font-size: 1.1em;
        margin-bottom: 0.3em;
    }

    .circle-card .fa-2x {
        margin-bottom: 5px !important;
    }

    .circle-card .card-text {
        font-size: 0.85em;
    }
}

@media (max-width: 992px) {
    .circle-card {
        max-width: 240px;
    }

    .circle-card .card-body {
        padding: 1.2em;
    }

    .circle-card .card-title {
        font-size: 1.1em;
    }

    .circle-card .card-text {
        font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    .circle-card {
        max-width: 220px;
    }

    .circle-card .card-body {
        padding: 1em;
    }

    .circle-card .card-title {
        font-size: 1em;
    }

    .circle-card .card-text {
        font-size: 0.8em;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .circle-card {
        max-width: 180px;
    }

    .fa-2x {
        font-size: 1.5em;
    }

    .circle-card .card-title {
        font-size: 0.9em;
    }

    .circle-card .card-text {
        font-size: 0.85em;
    }
}

/* Border Styles */
.border-primary-tint-60 {
    border: 1px solid var(--bs-primary-tint-60) !important;
}

/* Footer */

.small-print {
    font-size: 0.7em;
    padding-bottom: 0px;
}

.universal-footer {
    margin-top: 0px;
}

.universal-footer li {
    font-size: 0.7em;
}


@media (max-width:991px) {
    .footer-space {
        margin-top: 20px;
    }

    /*Only apply to html footer tag to prevent stacking columns siting flush against it*/
}

footer {
    width: 100%;
    color: #000;
    font-family: 'Karla', Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-align: center;
}


@media (max-width: 480px) {
    footer {
        padding: 0px;
    }

}

footer a,
footer a:hover,
footer a:visited,
footer a:focus {
    outline: 0;
}

@media (max-width: 991px) {

    footer a:hover {
        text-decoration: none;
    }

    footer li {
        display: block;
        list-style: none;
        padding: 15px 0px;
    }

    footer li:last-child {
        border-bottom: none;
    }

    footer ul {
        padding: 0px;
    }

}


@media (min-width: 992px) {

    footer li {
        display: inline-block;
        padding-right: 6px;
        padding-left: 6px;
        list-style: none;
    }

    footer li:last-child {
        border-right: none;
    }

    footer ul {
        padding: 0px;
    }

}

@media (min-width: 1281px) {
    .copyright {
        float: right;
    }

    footer li:nth-last-of-type(-n+1) {
        /*removes border right on last item in the desktop footer*/
        border-right: none;
    }

}


@media (min-width: 992px) and (max-width: 1093px) {

    /*removes border right on all list items - to be removed only when there are more than two list items*/
    footer li {
        border-right: none !important;
    }
}

.universal-footer>li,
.universal-footer>li a,
.universal-footer>li a:hover,
.universal-footer>li a:visited,
.universal-footer>li a:focus {
    color: #000;
}

@media (min-width: 992px) {
    .universal-footer>li {
        border-right: 1px solid #000;
    }
}


@media (max-width: 991px) {
    /*targets footer below 991px*/

    .universal-footer>li {
        border-bottom: 1px dotted #000;
    }
}

/* Heart Header */

.halftone-header {
    /* background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='fadeGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgb(77,184,193);stop-opacity:0.3' /%3E%3Cstop offset='100%25' style='stop-color:rgb(77,184,193);stop-opacity:0' /%3E%3C/linearGradient%3E%3Cpattern id='hearts' width='31' height='31' patternUnits='userSpaceOnUse'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z' fill='rgb(77,184,193)' transform='scale(0.65)' /%3E%3C/pattern%3E%3Cmask id='fadeOut'%3E%3Crect width='100%25' height='100%25' fill='url(%23fadeGrad)' /%3E%3C/mask%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='transparent' /%3E%3Crect width='100%25' height='100%25' fill='url(%23hearts)' mask='url(%23fadeOut)' /%3E%3C/svg%3E"); */
    background-size: cover;
    position: relative;
}


/* Privacy Policy */

.accordion-body {
    font-size: 0.9em;
}

.accordion-body h5 {
    font-size: 1em;
}

.primary-heading-list li::marker {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-weight: normal !important;
}

#privacyAccordion .accordion-body a {
    color: inherit;
    text-decoration: underline;
}

#privacyAccordion .accordion-body a:hover {
    color: inherit;
    text-decoration: none;
}

.rights-list {
    padding-left: 2rem;
}

.rights-list li {
    margin-bottom: 1rem;
}

.rights-list li::marker {
    color: var(--bs-primary);
    font-weight: bold;
}

.rights-list li strong {
    color: var(--bs-primary);
}

/* Update bullet styles for accordion content */
#privacyAccordion .accordion-body ul li::marker {
    color: var(--bs-primary);
}

@media (min-width: 768px) {

    .text-center .fa-arrows-h,
    .text-center small {
        display: none;
    }
}



/* Horizontal Card Img - allows image to fill col at all breakpoints*/

.card-img-left {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




/* Stacked cards wrapper and list */

.stacked-wrapper {
    position: relative;
    min-height: 100vh;
}

.stacked-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: 1rem auto 2rem auto;
    /* Ensure all cards have equal height */
    display: flex;
    flex-direction: column;
}

/* Make card rows equal height */
.stacked-card .row {
    flex: 1;
    display: flex;
    align-items: stretch;
}

/* Ensure card body fills available space */
.stacked-card .card-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Stacking behavior for LG screens only (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .stacked-card {
        position: sticky;
        top: 6vh;
        z-index: 1;
        transform: translateZ(0);
        transition: all 0.3s ease;
        margin: 1rem auto 4rem auto;
        min-height: 570px;
    }

    .stacked-card.active {
        z-index: 20;
    }
}

/* Stacking behavior for XL and XXL screens (1200px and above) */
@media (min-width: 1200px) {
    .stacked-card {
        position: sticky;
        top: 6vh;
        z-index: 1;
        transform: translateZ(0);
        transition: all 0.3s ease;
        margin: 1rem auto 4rem auto;
        min-height: 482px;
    }

    .stacked-card.active {
        z-index: 20;
    }
}

/* Normal list behavior on MD and smaller screens */
@media (max-width: 991px) {
    .stacked-card {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        z-index: auto !important;
        margin-bottom: 2rem;
    }

    .stacked-wrapper {
        min-height: auto;
    }
}

.stacked-card .btn {
    width: auto;
    /* Not full width */
    align-self: center;
    /* use flex-start for Left aligned */
    margin-top: auto;
    /* Still pushes to bottom */
}


/* Charity Branding */

.charity-story-logo {
    width: 250px;
}


/* Make-a-Wish */
.maw-primary1-color {
    color: #0057b8;
}

/* Primary Colour Blue */
.maw-bg1-color {
    background-color: #F0F5FB;
}

/* Background Colour pale blue */

.maw-btn {
    background-color: #0057b8;
    border-color: #0057b8;
}

/* Make-a-Wish Button*/
.maw-btn:hover {
    background-color: #004b9f;
    border-color: #004b9f;
}



/* Blue Cross */
.bluex-primary1-color {
    color: #0066BB;
}

/* Primary Colour Blue */
.bluex-primary2-color {
    color: #30BAED;
}

/* Primary Colour Sky Blue*/
.bluex-bg1-color {
    background-color: #E1F4FB;
}

/* Background Colour Pale Blue */

.bluex-btn {
    background-color: #0066BB;
    border-color: #0066BB;
}

/* Blue Cross Button*/
.bluex-btn:hover {
    background-color: #fff;
    border-color: #0066BB;
    color: #0066BB;
}


/* Alzheimer’s Research UK */
.aruk-primary1-color {
    color: #fa6222;
}

/* Primary Colour Orange */
.aruk-primary2-color {
    color: #000;
}

/* Primary Colour Black*/
.aruk-bg1-color {
    background-color: #F3F4F4;
}

/* Background Colour light grey */

.aruk-btn {
    background-color: #fa6222;
    border-color: #fa6222;
}

/* Alzheimer’s Research UK Button*/
.aruk-btn:hover {
    background-color: #E44705;
    border-color: #E44705;
}

/* Stroke Association */
.strokeassoc-primary1-color {
    color: #391171;
}

/* Primary Colour Purple */
.strokeassoc-secondary1-color {
    color: #333;
}

/* Primary Colour Dark grey*/
.strokeassoc-accent1-color {
    color: #FFD151;
}

/* Accent Colour yellow */
.strokeassoc-bg1-color {
    background-color: #F5F5F5;
}

/* Background Colour pale grey */

.strokeassoc-btn {
    background-color: #FFD151;
    border-color: #FFD151;
    color: #391171;
}

/* Stroke Assoc Button*/
.strokeassoc-btn:hover {
    background-color: #391171;
    border-color: #391171;
    color: #FFD151;
}


/* Trussell */
.trussell-primary1-color {
    color: #00ab52;
}

/* Primary Colour Bright Green*/
.trussell-primary2-color {
    color: #0A3D2E;
}

/* Primary Colour Dark Green */
.strokeassoc-accent1-color {
    color: #FF5414;
}

/* Accent Colour Orange */
.trussell-bg1-color {
    background-color: #E8F1EC;
}

/* Background Colour light grey */

.trussell-btn {
    background-color: #00ab52;
    border-color: #00ab52;
    color: #000;
}

/* Trussell Button*/
.trussell-btn:hover {
    background-color: #7ACFA3;
    border-color: #7ACFA3;
    color: #000;
}
