
:root {
    --icare-red: #b31f24;
    --icare-dark: #222222;
    --icare-text: #333333;
    --icare-light: #f7f7f7;
    --icare-border: #dddddd;
}


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--icare-text);
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--icare-red);
    text-decoration: none;
}

a:hover {
    color: var(--icare-red);
}

p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}


/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    min-height: 300px;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)
        ),
        url("https://www.mybrothers-keepers.org/wp-content/uploads/2023/10/team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    background: #ffffff;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--icare-dark);
}

.about-content h2 span {
    color: var(--icare-red);
}

.about-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about-links a {
    font-weight: 600;
}


/* =========================================
   TEAM
========================================= */

.team-section {
    background: #ffffff;
}

.team-card {
    height: 100%;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team-image {
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
}

.team-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-content h5 {
    color: var(--icare-red);
    font-size: 16px;
    margin-bottom: 15px;
}

.team-content p {
    font-size: 15px;
}

.team-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.team-links a {
    font-weight: 600;
    font-size: 14px;
}


/* =========================================
   SECTION TITLE
========================================= */

.section-title h2 {
    color: var(--icare-dark);
    font-size: 38px;
    margin: 0;
}


/* =========================================
   PROGRAMS
========================================= */

.programs-section {
    background: #ffffff;
}

.program-item {
    border-bottom: 1px solid var(--icare-border);
}

.program-title {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 20px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--icare-dark);
    font-size: 20px;
    font-weight: 700;
}

.program-title:hover {
    color: var(--icare-red);
}

.program-title i {
    color: var(--icare-red);
    font-size: 16px;
}

.program-content {
    padding: 0 5px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}


/* =========================================
   BUTTON
========================================= */

.custom-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--icare-red);
    color: #ffffff !important;
    border-radius: 3px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.custom-btn:hover {
    background: #8e171b;
    color: #ffffff !important;
    transform: translateY(-2px);
}


/* =========================================
   DIVIDER
========================================= */

.divider-section {
    padding: 30px 0;
    background: #ffffff;
}

.custom-divider {
    width: 90px;
    height: 3px;
    background: var(--icare-red);
    margin: auto;
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
    background: var(--icare-light);
}

.testimonial-box {
    max-width: 900px;
    min-height: 300px;
    margin: auto;
    padding: 45px 70px;
    background: #ffffff;
    border-left: 5px solid var(--icare-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-box p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-box h5 {
    color: var(--icare-red);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   CAROUSEL CONTROLS
========================================= */

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--icare-red);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #8e171b;
}


/* =========================================
   WIDE IMAGE
========================================= */

.wide-image-section {
    width: 100%;
}

.wide-image-section img {
    width: 100%;
    height: auto;
}


/* =========================================
   DONATION CTA
========================================= */

.donation-section {
    background: black;
    color: #ffffff;
}

.donation-section h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.donation-section h1 span {
    color: var(--icare-red);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--icare-red);
    border-color: var(--icare-red);
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-hero {
        min-height: 250px;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 32px;
    }

    .team-image img {
        height: 230px;
    }

    .testimonial-box {
        padding: 40px 50px;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }

    .donation-section h1 {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-hero {
        min-height: 190px;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 28px;
    }

    .about-links {
        gap: 8px;
    }

    .team-card {
        margin-bottom: 10px;
    }

    .team-image img {
        height: 220px;
    }

    .program-title {
        font-size: 18px;
    }

    .testimonial-box {
        min-height: 350px;
        padding: 30px 25px;
    }

    .testimonial-box p {
        font-size: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .donation-section {
        text-align: center;
    }

    .donation-section h1 {
        font-size: 28px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 25px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-hero {
        min-height: 160px;
    }

    .testimonial-box {
        padding: 25px 20px;
    }

    .testimonial-box h5 {
        font-size: 14px;
    }

    .custom-btn {
        width: 100%;
        text-align: center;
    }
}