/* Hope for America Style Guide Implementation */
:root {
    /* Main Colors from Style Guide */
    --color-off-white: #f6ede8;
	--color-grey: #353336;
	--color-blue: #4b70ad;
	--color-orange: #e45626;
    --color-dark-orange: #d45023;
	--color-dark-blue: #1D2838;
}

html, 
body {
	overflow-x: hidden;
	margin: 0;
	scroll-behavior: smooth;
}

body a {
	text-decoration: none;
}

body div {
    box-sizing: border-box;
}

.crusade-angel-2026-section {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.crusade-angel-2026-section .crusade-section-wrapper {
	max-width: 1080px;
	margin: 0 auto;
}

/* Typography Scale from Style Guide */
.crusade-angel-2026-section h1 {
    font-size: 72px !important; /* Primary Titles - Very Large */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.9;
}

.crusade-angel-2026-section h2 {
    font-size: 56px !important; /* Secondary Titles */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    text-align: center !important;
}

.crusade-angel-2026-section h3 {
    font-size: 24px !important; /* Small Titles */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.crusade-angel-2026-section p,
.crusade-angel-2026-section .body-copy, 
.crusade-angel-2026-section a, 
.crusade-angel-2026-section span {
    font-size: 16px; /* Body Copy */
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Poppins-Medium';
    margin-block-start: 0;
    margin-block-end: 0;
    color: var(--color-off-white)
}

.crusade-angel-2026-section a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.crusade-angel-2026-section h1, 
.crusade-angel-2026-section h2, 
.crusade-angel-2026-section h3, 
.crusade-angel-2026-section h4, 
.crusade-angel-2026-section h5, 
.crusade-angel-2026-section h6 {
	font-family: 'Brice-BoldSemiExpanded';
	color: var(--color-off-white);
    margin-block-start: 0;
    margin-block-end: 0;
}

.crusade-angel-2026-section h1.alternate-title, 
.crusade-angel-2026-section h2.alternate-title, 
.crusade-angel-2026-section h3.alternate-title, 
.crusade-angel-2026-section h4.alternate-title, 
.crusade-angel-2026-section h5.alternate-title, 
.crusade-angel-2026-section h6.alternate-title {
	font-family: 'Oswald-SemiBold';
	font-weight: 600;
}

.crusade-angel-2026-section .section-title, 
.crusade-angel-2026-section .section-subtitle {
    color: var(--color-off-white);
}

/* Button Styling */
.crusade-angel-2026-section .button {
    min-width: 150px;
    background-color: var(--color-blue) !important;
    padding: 12px 30px;
    color: var(--color-off-white) !important;
    font-size: 24px;
    line-height: 27px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
	text-align: center;
}

.crusade-angel-2026-section .button:hover {
    background-color: var(--color-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.crusade-angel-2026-section.hero-banner .logo-container {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 30px;
    left: 50px;
    z-index: 2;
}

.crusade-angel-2026-section.hero-banner .logo-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.crusade-angel-2026-section .menu-burger {
	width: 60px;
	height: 45px;
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 223;
	color: #fff;
	cursor: pointer;

	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	cursor: pointer;

}

.crusade-angel-2026-section .menu-burger span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #FFF;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.crusade-angel-2026-section .menu-burger span:nth-child(1) {
  top: 0px;
}

.crusade-angel-2026-section .menu-burger span:nth-child(2),.crusade-angel-2026-section .menu-burger span:nth-child(3) {
  top: 18px;
}

.crusade-angel-2026-section .menu-burger span:nth-child(4) {
  top: 36px;
}

.crusade-angel-2026-section .menu-burger.menu-open {
  position: fixed;
}

.crusade-angel-2026-section .menu-burger.menu-open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.crusade-angel-2026-section .menu-burger.menu-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.crusade-angel-2026-section .menu-burger.menu-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.crusade-angel-2026-section .menu-burger.menu-open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.crusade-angel-2026-section .menu-outter-container {
	position: fixed;
	top: 0;
	right: -130%;
	min-width: 315px;
	width: 30%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 25px;
	z-index: 222;
	transition: right 0.4s linear 
}

.crusade-angel-2026-section .menu-outter-container .menu-container ul {
    list-style: none;
}

.crusade-angel-2026-section .menu-outter-container .menu-container ul li {
    margin-bottom: 20px;
    text-align: left;
}

.crusade-angel-2026-section .menu-outter-container .menu-container ul li a {
    font-size: 21px;
    line-height: 27px;
    font-family: 'Poppins-Medium';
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.crusade-angel-2026-section .menu-outter-container .menu-container ul li a:hover {
    text-decoration: underline;    
    text-underline-offset: 5px;
}

.crusade-angel-2026-section .menu-outter-container.menu-open {
	right: 0%;
}

/* HERO */
.crusade-angel-2026-section.hero-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.crusade-angel-2026-section.hero-banner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

.crusade-angel-2026-section.hero-banner .crusade-hero-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
    z-index: 2;
}

.hero-banner .hero-content {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 30px;
    padding-top: 115px;
    padding-bottom: 60px;
}

/* VIDEO WRAPPER */
.hero-banner .hero-video-wrapper {
    width: 100%;
    max-width: 500px;
}

.crusade-angel-2026-section.hero-banner .hero-info-image {
    width: 100%;
    max-width: 520px;
    padding-right: 120px;
}

/* 16:9 RESPONSIVE VIDEO */
.hero-banner .hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 10px;
    background-color: #333; /* fallback while loading */
}

.hero-banner .hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.crusade-angel-2026-section.hero-banner .hero-rsvp-btn-container {
    position: absolute;
    left: 50%;
    transform:translateX(-540px);
    bottom: 60px;
    z-index: 2;
}

.crusade-angel-2026-section.hero-banner .hero-rsvp-btn-container .hero-rsvp-btn {
    min-width: 150px;
    background-color: var(--color-blue);
    padding: 12px 30px !important;
    color: var(--color-off-white);
    font-size: 24px;
    line-height: 27px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    border: 0;
    width: 250px;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    text-align: center;
}

.crusade-angel-2026-section.hero-banner .hero-rsvp-btn-container .hero-rsvp-btn:hover {
    background-color: var(--color-dark-blue);
}


.crusade-angel-2026-section.event-description {
    padding: 60px 20px 100px;
    position: relative;
    background-color: #e35627;
}

.crusade-angel-2026-section.event-description::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background: url(../images/Orange-background.jpg);
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

.crusade-angel-2026-section.event-description .crusade-section-wrapper {
    background: url('../images/Dusty_Overlay.jpg') center/cover no-repeat;
    padding: 36px;
    border: 12px solid var(--color-off-white);
    margin: 0 auto;
    z-index: 1;
    position: relative;
}


/* SPECIAL GUESTS */
.crusade-angel-2026-section.special-guests {
    position: relative;
    background-color: var(--color-grey);
    padding: 0;
    background: url('../images/Dusty_Overlay.jpg') center/cover no-repeat;
}

.crusade-angel-2026-section.special-guests .special-guests-artists {
    overflow: hidden;
}

.crusade-angel-2026-section.special-guests .special-guests-artists img {
    width: 100%;
    position: relative;
    object-fit: cover;
    animation: zoom 20s ease-in-out infinite alternate;
}

@keyframes zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.1); }
}

.crusade-angel-2026-section.special-guests .special-guests-names {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.crusade-angel-2026-section.special-guests p.special-guests-name {
    position: relative;
    padding: 0 15px;
    font-size: 26px;
    letter-spacing: 0.1px;
    min-width: fit-content;
}

/* BLUE SEPARATOR */
.crusade-angel-2026-section.special-guests .special-guests-name:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background-color: var(--color-blue);
}

.marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 15s linear infinite;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-110%);
    }
}




/* GET INVOLVED */
.crusade-angel-2026-section.get-involved {
    background: url('../images/Dusty_Overlay.jpg') center/cover no-repeat;
    padding: 0;
    text-align: center;
}

.crusade-angel-2026-section.get-involved .get-involved-title-container {
	background-color: var(--color-grey);
    padding-top: 40px;
    padding-bottom: 30px;
    margin-top: -5px;
}

.crusade-angel-2026-section.get-involved .get-involved-title-container .get-involved-title {
	background-color: var(--color-grey);
    padding-top: 40px;
    padding-bottom: 40px;
}

.crusade-angel-2026-section.get-involved .get-involved-grid {
    display: flex;
    gap: 30px;
    margin-top: 70px;
}

.crusade-angel-2026-section.get-involved .involvement-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    color: var(--color-off-white);
    align-items: center;
    text-decoration: none;
    cursor: pointer;

    transition: all 0.3s ease;
}

.crusade-angel-2026-section.get-involved .involvement-card:visited,
.crusade-angel-2026-section.get-involved .involvement-card:active {
    color: #fff;
}

/* Hover / interaction */
.crusade-angel-2026-section.get-involved .involvement-card:hover {
    transform: translateY(-5px);
}

.crusade-angel-2026-section.get-involved .involvement-card:hover img {
    transform: scale(1.03);
}

.crusade-angel-2026-section.get-involved .involvement-card h3 {
    width: fit-content;
    padding: 20px 14px 14px;
    background-color: var(--color-grey);
}

.crusade-angel-2026-section.get-involved .involvement-card img {
    width: 100%;
}

.crusade-angel-2026-section.get-involved .involvement-card p {
    text-align: left;
}

.crusade-angel-2026-section.paper-tear-section {
    width: 100%;
    height: 250px;
    background: url('../images/paper-tear.png') center/cover no-repeat;
}


/* RSVP */
.crusade-angel-2026-section.contact-section {
    background: url('../images/Orange-background.jpg') center/cover no-repeat;
    padding: 100px 20px;
    position: relative;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper {
	max-width: 625px;
	margin: 0 auto;
	padding: 40px 35px 50px;	
	background-color: var(--color-grey);
	position: relative;
	z-index: 2;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper h2 {
	text-align: center;
	max-width: 495px;
	margin: 0 auto;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper>p {
	text-align: center;
	max-width: 495px;
	margin: 0 auto;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form label {
	display: block;
    font-family: 'Brice-BoldSemiExpanded';
    color: var(--color-off-white);
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form input {
    width: calc(100% - 30px);
    font-size: 22px;
    line-height: 1.2;
    padding: 5px 5px !important;
    margin-bottom: 15px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form input.button {
    border: 0;
    width: fit-content;
    margin: 0 auto;
    display: block;
    padding: 12px 30px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form input[type=submit] {
	min-width: 150px;
	background-color: var(--color-blue);
	padding: 12px 30px !important;
	color: var(--color-off-white);
	font-size: 24px;
	line-height: 27px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	font-family: 'Poppins-Medium';
	cursor: pointer;
    border: 0;
    width: fit-content;
    margin: 20px auto 10px;
    display: block;
    padding: 12px 30px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form input[type=submit]:hover {
    animation: pulsate 1s ease-out infinite;
    background-color: var(--color-dark-blue);
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form ul.multi-container {
    list-style: none;
    padding-left: 0;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form ul.multi-container li label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form ul.multi-container li label input {
    width: fit-content;
    margin: 10px 20px 10px 0;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form ul.multi-container li label span {
    margin-top: 10px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form .rc-anchor {
    margin-bottom: 20px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper form .wpcf7-not-valid-tip,
.crusade-angel-2026-section.contact-section .crusade-section-wrapper form .wpcf7-response-output {
    font-family: 'Poppins-Medium';
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    margin-top: -5px;
    display: block;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper .wpcf7 .screen-reader-response p {
    font-size: 14px;
    line-height: 20px;
}

.crusade-angel-2026-section.contact-section .crusade-section-wrapper .wpcf7 .screen-reader-response ul li::marker {
  color: #fff;
} 

.crusade-angel-2026-section.contact-section .crusade-section-wrapper .wpcf7 .screen-reader-response ul li, 
.crusade-angel-2026-section.contact-section .crusade-section-wrapper .wpcf7 .screen-reader-response ul li a {
    font-family: 'Poppins-Medium';
    color: #fff;
    font-size: 12px;
    line-height: 18px;
}

.crusade-angel-2026-section.contact-section h3 {
	text-align: center;
	max-width: 495px;
	margin: 20px auto 10px;
    font-size: 35px;
    line-height: 1.2;
}

.crusade-angel-2026-section.contact-section .social-media-container {
	text-align: center;
	margin: 10px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.crusade-angel-2026-section.contact-section .social-media-container .social-media-item {
	width: 30px;
	height: 30px;
	padding: 5px;
	margin-right: 10px;
}

.crusade-angel-2026-section.contact-section .social-media-container .social-media-item:hover {
	width: 32px;
	height: 32px;
	padding: 4px;
}

.crusade-angel-2026-section.contact-section .social-media-container .social-media-item img {
	max-width: 30px;
	max-height: 30px;
}

.crusade-angel-2026-section.contact-section .social-media-container .social-media-item a:hover img {
	max-width: 32px;
	max-height: 32px;
}


/* FOOTER */
.crusade-angel-2026-section.footer {
    background-color: var(--color-grey);
    padding: 40px 20px;
    text-align: left;
}

.crusade-angel-2026-section.footer img {
    max-width: 300px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .row {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .row .col {
	align-content: center;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .row .col1 {
	width: calc(20% - 20px);
	margin-right: 30px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .row .col2 {
	width: calc(60% - 20px);
	margin-right: 30px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .row .col3 {
	width: calc(20% - 20px);
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .social-media-container {
	text-align: center;
	margin: 10px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .social-media-container .social-media-item {
	width: 40px;
	height: 40px;
	padding: 5px;
	margin-right: 10px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .social-media-container .social-media-item:hover {
	width: 42px;
	height: 42px;
	padding: 4px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .social-media-container .social-media-item img {
	max-width: 30px;
	max-height: 30px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .social-media-container .social-media-item a:hover img {
	max-width: 42px;
	max-height: 42px;
}

.crusade-angel-2026-section.footer .crusade-section-wrapper .copyright-text {
	font-size: 16px;
	color: var(--color-off-white);
}


/* TABLET */
@media (max-width: 1024px) {
    .crusade-angel-2026-section h1 {
        font-size: 42px !important;
    }
    .crusade-angel-2026-section h2 {
        font-size: 36px !important;
    }
    .crusade-angel-2026-section h3 {
        font-size: 22px !important;
    }
    .crusade-angel-2026-section.hero-banner {
        background-position: center left;
    }
    .crusade-angel-2026-section.hero-banner.homepage-hero-banner {
        flex-direction: column;
        justify-content: center;
    }
    .crusade-angel-2026-section.hero-banner .logo-container {
        left: 20px;
    }
    .crusade-angel-2026-section .menu-burger {
        right: 20px;
    }
    .crusade-angel-2026-section .menu-outter-container {
        width: 50%;
    }
    .crusade-angel-2026-section.hero-banner .crusade-hero-wrapper {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 100px;
    }
    .hero-banner .hero-content {
        padding-top: 30px;
        flex: 1;
        align-items: center;
    }
    .crusade-angel-2026-section.hero-banner .hero-info-image {
        padding-right: 0;
    }
    .crusade-angel-2026-section.hero-banner .hero-rsvp-btn-container {
        position: relative;
        width: 100%;
        transform: translateX(0px);
        left: unset;
        display: flex;
        justify-content: center;
        margin-top: 30px;

    }
    .crusade-angel-2026-section.get-involved .crusade-section-wrapper {
        padding-left: 20px;
        padding-right: 20px; 
    }
    .crusade-angel-2026-section.get-involved .get-involved-grid {
        flex-wrap: wrap;
    }

    .crusade-angel-2026-section.get-involved .involvement-card {
        flex: 1 1 45%;
        margin-bottom: 36x;
    }
    .crusade-angel-2026-section.footer {
        padding: 40px 0;
    }
    .crusade-angel-2026-section.footer .crusade-section-wrapper .row {
        flex-direction: column;
    }
    .crusade-angel-2026-section.footer .crusade-section-wrapper .row .col {
        text-align: center;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}


/* MOBILE */
@media (max-width: 767px) {
    .crusade-angel-2026-section.hero-banner, 
    .crusade-angel-2026-section.hero-banner.basic-hero-banner {
        min-height: 80vh !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important;
    }
    .crusade-angel-2026-section .menu-outter-container {
        width: 100%;
    }
    .crusade-angel-2026-section.hero-banner.basic-hero-banner .crusade-section-wrapper {
        margin: 0 5%;
    }

    .crusade-angel-2026-section.get-involved .get-involved-grid {
        flex-direction: column;
    }

    .crusade-angel-2026-section.special-guests .special-guests-content {
        flex-direction: column;
    }

    .crusade-angel-2026-section.rsvp .rsvp-card {
        padding: 20px;
    }
}


/* FAQ PAGE */


.crusade-angel-2026-section.hero-banner.basic-hero-banner { 
    background: url('../images/Dusty_Overlay.jpg') center/cover no-repeat;
    padding: 0;
    text-align: center;
    min-height: 500px;
}

.crusade-angel-2026-section.hero-banner.basic-hero-banner:after { 
    display: none;
}

.crusade-angel-2026-section.faq-section {
    padding: 60px 20px 100px;
    position: relative;
    background-color: #e35627;
}

.crusade-angel-2026-section.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background: url(../images/Orange-background.jpg);
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

.crusade-angel-2026-section.faq-section > * {
    z-index: 1;
    position: relative;
}

.crusade-angel-2026-section.faq-section .faq {
    background-color: var(--color-grey);
    padding: 36px;
    margin-bottom: 36px;
}

.crusade-angel-2026-section.faq-section .faq .faq-item {
    border-bottom: 2px solid var(--color-off-white);
}

.crusade-angel-2026-section.faq-section .faq .faq-item:last-of-type {
    border-bottom: none;
}

.crusade-angel-2026-section.faq-section .faq .faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
    user-select: none;
}

.crusade-angel-2026-section.faq-section .faq .chevron {
    display: inline-block;
    transition: transform 0.25s ease;
}

.crusade-angel-2026-section.faq-section .faq .chevron.rotate {
    display: inline-block;
    transition: transform 0.25s ease;
}

.crusade-angel-2026-section.faq-section .faq .faq-answer {
    display: none;
    padding: 0 0 20px 0;
    color: var(--color-off-white);
}

.crusade-angel-2026-section.faq-section .faq .faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.crusade-angel-2026-section.faq-section .faq .faq-item.active .chevron {
    transform: rotate(180deg);
}

.crusade-angel-2026-section.faq-section .event-info p {
    text-shadow: 1px 1px var(--color-grey);
}

@media (max-width: 1024px) {
    .crusade-angel-2026-section.faq-section .faq .faq-question {
        font-size: 16px !important;
        padding-right: 5px;
    }
    .crusade-angel-2026-section.faq-section .faq .faq-answer > *{
        font-size: 14px;
    }
}


/* FAQ PAGE END */


/* GET INVOLVED PAGE */


.crusade-angel-2026-section.get-involved-section {
    padding: 60px 20px 100px;
    position: relative;
    background-color: #e35627;
}

.crusade-angel-2026-section.get-involved-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background: url(../images/Orange-background.jpg);
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

.crusade-angel-2026-section.get-involved-section > * {
    z-index: 1;
    position: relative;
}

.crusade-angel-2026-section.get-involved-section .crusade-section-wrapper {    
    background-color: var(--color-grey);
    padding: 36px;
    border: 12px solid var(--color-off-white);
    margin: 0 auto;
}

.crusade-angel-2026-section.get-involved-section .get-involved-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.crusade-angel-2026-section.get-involved-section .get-involved-content {
    flex: 1;
}

.crusade-angel-2026-section.get-involved-section .get-involved-content .get-involved-button {
    min-width: 150px;
    background-color: var(--color-blue);
    padding: 12px 30px !important;
    color: var(--color-off-white);
    font-size: 24px;
    line-height: 27px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    border: 0;
    width: fit-content;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    text-align: center;
}

.crusade-angel-2026-section.get-involved-section .get-involved-content .get-involved-button:hover {
    background-color: var(--color-dark-blue);
}

.crusade-angel-2026-section.get-involved-section .get-involved-image {
    flex: 1;
    overflow: hidden;
}

.crusade-angel-2026-section.get-involved-section .get-involved-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: scale 0.3s ease-in;
}

.crusade-angel-2026-section.get-involved-section .get-involved-image img:hover {
    scale: 1.05;
}

@media (max-width: 1024px) {
    .crusade-angel-2026-section.get-involved-section {
        padding: 60px 0 100px;
    }
    .crusade-angel-2026-section.get-involved-section .crusade-section-wrapper {        
        margin: 0 5% 36px;
    }
    .crusade-angel-2026-section.get-involved-section .get-involved-row {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

/* GET INVOLVED PAGE END */



/* SHARE PAGE */


.crusade-angel-2026-section.share-section {
    padding: 60px 20px 100px;
    position: relative;
    background-color: #e35627;
}
.crusade-angel-2026-section.share-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background: url(../images/Orange-background.jpg);
    background-size: cover;
    background-position: top center;
}

.crusade-angel-2026-section.share-section .share-block {
    margin-bottom: 100px;
    padding: 36px;
    background: url(../images/Dusty_Overlay.jpg);
    border: 12px solid var(--color-off-white);
    z-index: 1;
    position: relative;
}

.crusade-angel-2026-section.share-section .share-block h2 {
    margin-bottom: 36px;
}

.crusade-angel-2026-section.share-section .share-slider {
    padding-bottom: 24px;
}

.crusade-angel-2026-section.share-section .share-slider .swiper-slide {
    height: auto;
    display: flex;
    margin-bottom: 24px;
    margin-top: 24px;
    flex-direction: column;
}

.crusade-angel-2026-section.share-section .share-slider .swiper-slide a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crusade-angel-2026-section.share-section .share-slider .swiper-button-next, 
.crusade-angel-2026-section.share-section .share-slider .swiper-button-prev {
    color: var(--color-blue);
}

.crusade-angel-2026-section.share-section .share-slider .swiper-pagination-bullets {
    bottom: -4px;
}

.crusade-angel-2026-section.share-section .share-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: var(--color-blue);
}

.crusade-angel-2026-section.share-section .share-slider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 0.8;
}

.crusade-angel-2026-section.share-section .share-slider img {
    width: 100%;
    height: 384px;
    object-fit: cover;
}

.crusade-angel-2026-section.share-section .share-block-one .share-slider img.landscape, 
.crusade-angel-2026-section.share-section .share-block-two .share-slider img.landscape {
    object-fit: contain;
}

.crusade-angel-2026-section.share-section .documents-block .share-slider img.landscape {
    object-fit: contain;
    height: auto;
}

.crusade-angel-2026-section.share-section .share-slider .share-download-button {
    min-width: 150px;
    width: auto;
    background-color: var(--color-blue);
    padding: 12px 30px !important;
    color: var(--color-off-white);
    font-size: 24px;
    line-height: 27px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    border: 0;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    text-align: center;
}
@media (max-width: 1024px) {
    .crusade-angel-2026-section.share-section {
        padding: 60px 0 100px;
    }
    .crusade-angel-2026-section.share-section .crusade-section-wrapper {
        margin: 0 5% 36px;
    }
    .crusade-angel-2026-section.share-section .share-slider img {
        height: 295px;
    }
}
/* SHARE PAGE END */


/* PRAYERS PAGE */
.crusade-angel-2026-section.prayers-form-section {
    padding: 60px 20px 100px;
    position: relative;
    background-color: #e35627;
}

.crusade-angel-2026-section.prayers-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background: url(../images/Orange-background.jpg);
    background-size: cover;
    background-position: top center;
}

.crusade-angel-2026-section.prayers-form-section .crusade-section-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    background-color: var(--color-grey);
    padding: 36px;
}

.crusade-angel-2026-section.prayers-form-section .crusade-section-wrapper .section-subtitle {
    margin-bottom: 24px;
}

.crusade-angel-2026-section form#prayer-form label {
    display: block;
    font-family: 'Brice-BoldSemiExpanded';
    color: var(--color-off-white);
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-angel-2026-section form#prayer-form label span {
    font-size: 12px;
}

.crusade-angel-2026-section form#prayer-form input {
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 8px;
    padding-inline: 0;
}

.crusade-angel-2026-section form#prayer-form textarea {
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px;
    margin-bottom: 15px;
}

.crusade-angel-2026-section form#prayer-form #post_online {
    margin-left: 5px;
    margin-top: 10px;
    width: fit-content;
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}

.crusade-angel-2026-section form#prayer-form input.button {
    border: 0;
    width: fit-content;
    margin: 15px auto 5px;
    display: block;
    font-size: 24px;
    line-height: 27px;
    padding: 12px 30px;
}

.crusade-angel-2026-section form#prayer-form .info {
    font-size: 12px;
    line-height: 1.2;
    margin-top: -5px;
    margin-bottom: 0;
}

.crusade-angel-2026-section.prayers-section {
    padding: 80px 20px;
    position: relative;
    background: url('../images/Dusty_Overlay.jpg') center/cover no-repeat;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper {
    position: relative;
    z-index: 1;
}

.crusade-angel-2026-section.prayers-section .section-title {
    margin-bottom: 60px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid .prayer-post {
    padding: 30px;
    background-color: var(--color-off-white);
    border-radius: 5px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid .prayer-post .prayer-content {
    font-family: 'Brice-BoldSemiExpanded';
    color: var(--color-dark-blue);
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 12px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid .prayer-post .prayer-content>*{
    color: var(--color-dark-blue);
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid .prayer-post .prayer-for {
    display: block;
    font-family: 'Brice-BoldSemiExpanded';
    color: var(--color-dark-blue);
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .pagination .page-numbers {
    margin-left: 5px;
    margin-right: 5px;
}

.crusade-angel-2026-section.prayers-section .crusade-section-wrapper .pagination .page-numbers.current {
    color: var(--color-orange);
}

@media (max-width: 1024px) {
    .crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .crusade-angel-2026-section.prayers-section .crusade-section-wrapper .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* PRAYERS PAGE END */