/* Variables */
/* colors */
/* fonts and texts */
/* styles */
@font-face {
    font-family: 'Geologica Cursive ExtraLight';
    src: url('GeologicaCursive-ExtraLight.woff2') format('woff2'), url('GeologicaCursive-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica Cursive Light';
    src: url('GeologicaCursive-Light.woff2') format('woff2'), url('GeologicaCursive-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica Cursive';
    src: url('GeologicaCursive-Regular.woff2') format('woff2'), url('GeologicaCursive-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: "Geologica Cursive Light" !important;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    background-color: #fff8fb;
    max-width: 100vw !important;
    height: auto;
    overflow-x: hidden;
}

button {
    height: 45px !important;
}

.navbar {
    background-color: #d41367 !important;
    height: 10vh;
    position: fixed;
    z-index: 100;
}

    .navbar .navbar-brand {
        margin-right: 0;
    }

    .navbar img {
        width: 9rem;
    }

    .navbar .navbar-nav {
        width: 35%;
    }

    .navbar .nav-link {
        color: #fff8fb;
        display: inline-block;
        position: relative;
        width: 100%;
    }

        .navbar .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 0%;
            height: 2px;
            background-color: currentColor;
            transition: width 0.5s ease-in-out;
            color: #fff8fb;
        }

        .navbar .nav-link:hover {
            color: #fff8fb;
        }

            .navbar .nav-link:hover::after {
                width: 100%;
                color: #fff8fb;
            }

    .navbar .btn {
        border-color: #fff8fb;
        color: #fff8fb;
    }

        .navbar .btn:hover {
            background: #fff8fb;
            color: #d41367;
        }

    .navbar .container-fluid {
        background-color: #d41367 !important;
    }

    .navbar .navbar-toggler {
        box-shadow: none !important;
    }

    .navbar .navbar-toggler-icon {
        color: #fff8fb;
    }

main {
    background: white;
}

.hero-image {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
    }

    .hero-image .tagline {
        position: absolute;
        bottom: 25%; /* Position near bottom */
        left: 0;
        width: 57%; /* 60% of hero section width */
        padding-left: 3rem; /* Matches Bootstrap's px-5 (approx 3rem) */
        font-weight: 700;
        color: white;
        text-align: left;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        padding: 1rem;
        z-index: 99;
    }

        .hero-image .tagline h1 {
            padding-left: 2rem;
            font-size: 3.9rem;
            margin-bottom: 1.5rem;
        }

        .hero-image .tagline .btn {
            border-color: #fff8fb;
            color: #1e1e1e;
            background-color: #fff8fb;
            width: 180px;
            margin-left: 2.2rem;
        }

@media (max-width: 992px) {
    .hero-image .tagline {
        width: 80%; /* Slightly wider on smaller screens */
        padding-left: 1.5rem; /* Adjust padding for smaller screens */
    }

        .hero-image .tagline h1 {
            font-size: 3rem; /* Smaller font for tablets */
        }
}

@media (max-width: 576px) {
    .hero-image .tagline {
        width: 90%; /* Almost full width on mobile */
        padding-left: 1rem;
    }

        .hero-image .tagline h1 {
            font-size: 2rem; /* Smaller font for mobile */
        }
}

.hero-image::after {
    background-color: rgba(37, 37, 37, 0.6);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 98;
}

#club-statement div {
    background-color: white;
}

#our-story #discover-more-btn {
    background-color: #86143e;
    color: #fff8fb;
    width: 15rem;
}

@media (min-width: 768px) {
    #our-story h1 {
        position: relative;
        left: 5%;
    }

    #our-story #our-story-p {
        position: relative;
        left: 20%;
        max-width: 70%;
    }
}

#areas-of-focus #maternal-and-child-health {
    background: #901f93;
}

#areas-of-focus #water-and-sanitation {
    background: #00a2e0;
}

#areas-of-focus #disease-prevention-and-treatment {
    background: #e02927;
}

#areas-of-focus #peace-and-conflict-resolution {
    background: #0067c8;
}

#areas-of-focus #basic-education-and-literacy {
    background: #d26618;
}

#areas-of-focus #environmental-care {
    background: #009739;
}

#areas-of-focus #economic-community-development {
    background: #00adbb;
}

#areas-of-focus .cards-wrapper {
    overflow-x: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

    #areas-of-focus .cards-wrapper .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #86143e;
        color: white;
        border-color: #86143e;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #areas-of-focus .cards-wrapper .scroll-btn.left-btn {
            left: 1px;
            top: 40%;
        }

        #areas-of-focus .cards-wrapper .scroll-btn.right-btn {
            right: 1px;
            top: 40%;
        }

@media (min-width: 1440px) {
    #areas-of-focus .cards-wrapper .scroll-btn.left-btn {
        left: 120px;
    }

    #areas-of-focus .cards-wrapper .scroll-btn.right-btn {
        right: 120px;
    }
}

#areas-of-focus #cards-container {
    flex-wrap: nowrap;
    gap: 1rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    width: 100%;
    /* hiding scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    #areas-of-focus #cards-container::-webkit-scrollbar {
        display: none;
    }

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#areas-of-focus .focus-area-card {
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff8fb;
}

    #areas-of-focus .focus-area-card img {
        margin: 0 auto;
        height: 35%;
        width: 35%;
    }

    #areas-of-focus .focus-area-card .card-title {
        font-size: smaller;
        text-align: center;
        height: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #areas-of-focus .focus-area-card .card-text {
        font-size: 12px;
        text-align: left;
        height: 70%;
        padding-left: 4%;
        padding-bottom: 4%;
    }

#upcoming-events #all-events-btn {
    color: #fff8fb;
    background: #86143e;
    width: 15em;
    margin: 0 auto;
}

#upcoming-events #events .carousel-inner {
    background: transparent;
}

#upcoming-events #events .carousel-item {
    background: transparent;
    border: none;
    text-align: center;
}

#upcoming-events #events img {
    width: 70%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

@media (min-width: 768px) {
    #upcoming-events #events img {
        width: 30%;
        border-radius: 8px;
    }
}

#upcoming-events #events .carousel-control-prev, 
#upcoming-events #events .carousel-control-next {
    top: 35% !important;
}

@media (min-width: 435px) {
    #upcoming-events #events .carousel-control-prev {
        left: 140px;
    }

    #upcoming-events #events .carousel-control-next {
        right: 150px;
    }
}

@media (min-width: 1000px) {
    #upcoming-events #events .carousel-control-prev {
        left: 210px;
    }

    #upcoming-events #events .carousel-control-next {
        right: 220px;
    }
}

@media (min-width: 1400px) {
    #upcoming-events #events .carousel-control-prev {
        left: 315px;
    }

    #upcoming-events #events .carousel-control-next {
        right: 330px;
    }
}

#upcoming-events #events .carousel-indicators button {
    background: #1e1e1e;
    border: 0 !important;
}

#upcoming-events #events .carousel-indicators .active {
    background: #86143e;
}

#upcoming-events #events button {
    background: transparent;
    opacity: 1;
}

    #upcoming-events #events button .carousel-btn {
        background: #86143e !important;
        border-radius: 50%;
    }

        #upcoming-events #events button .carousel-btn .fa-solid {
            line-height: 2;
        }

#discover-more #all-articles-btn {
    color: #fff8fb;
    background: #86143e;
    margin: 0 auto;
    width: 15rem;
}

#discover-more .cards-wrapper {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

    #discover-more .cards-wrapper .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #86143e;
        color: white;
        border-color: #86143e;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        #discover-more .cards-wrapper .scroll-btn.left-btn {
            left: 1px;
            top: 40%;
        }

        #discover-more .cards-wrapper .scroll-btn.right-btn {
            right: 1px;
            top: 40%;
        }

#discover-more #discover-cards-container {
    max-width: 1500px;
    flex-wrap: nowrap;
    gap: 1rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    /* hiding scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    #discover-more #discover-cards-container::-webkit-scrollbar {
        display: none;
    }

#discover-more .discover-card {
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20em;
    height: 26em;
}

    #discover-more .discover-card img {
        -o-object-fit: cover;
        object-fit: cover;
    }

    #discover-more .discover-card .card-body {
        background: #ffcadd;
        border-color: #ffcadd;
        border-radius: 0 0 6px 6px;
    }

    #discover-more .discover-card .card-title {
        font-size: medium;
    }

    #discover-more .discover-card .card-text {
        font-size: small;
    }

#donate #donate-btn {
    color: #fff8fb;
    background: #86143e;
    margin: 0 auto;
    width: 15rem;
}

#donate .h4 {
    text-align: center;
}

.footer {
    background: #d41367;
    color: #fff8fb;
    padding: 2rem 0;
}

    .footer .container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer h5 {
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .footer a {
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        width: -moz-max-content;
        width: max-content;
    }

    .footer .copyright {
        margin-top: 1.5rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .footer a:hover {
        text-decoration: underline;
    }

@media (max-width: 436px) {
    .footer .col-12 {
        text-align: center;
    }

        .footer .col-12 a {
            text-align: center;
            margin: 0 auto;
        }
}

#meet-the-team .team-member {
    width: 200px;
    height: 266.67px;
    position: relative;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #meet-the-team .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

    #meet-the-team .team-member img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #meet-the-team .team-member div {
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: 2;
        background: rgba(0, 0, 0, 0.2);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    #meet-the-team .team-member h5,
    #meet-the-team .team-member p {
        width: 100%;
        color: white;
        margin: 0;
        z-index: 2;
        text-align: left;
        padding-left: 0.5rem;
    }

    #meet-the-team .team-member h5 {
        font-size: 1rem;
        font-weight: bold;
        padding-top: 0.5rem;
    }

    #meet-the-team .team-member p {
        font-size: 0.7rem;
        padding-bottom: 0.5rem;
    }

#rest-of-the-team .team-member {
    color: #1e1e1e;
    background: white;
    padding: 5px;
    border: 2px solid #d41367;
    border-radius: 6px;
}

    #rest-of-the-team .team-member:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

    #rest-of-the-team .team-member p {
        margin-bottom: 0px;
        font-size: 0.8rem;
    }

#become-a-member #start-the-process-btn {
    background: #86143e;
    border: none;
    width: 15rem;
}

#discover .card {
    border: none;
}

    #discover .card .card-header {
        background: white;
        border-bottom: 1px solid #1e1e1e;
    }

        #discover .card .card-header .active {
            background: #d41367;
            color: white;
        }

        #discover .card .card-header a {
            border: 2px solid #d41367;
            border-bottom: none;
            padding: 1px 10px 0px 10px;
            color: #1e1e1e;
        }

    #discover .card .card-body #articles {
        max-width: 1000px;
        margin: 0 auto;
    }

        #discover .card .card-body #articles #card-container {
            gap: 3rem;
        }

            #discover .card .card-body #articles #card-container .card {
                width: 28em;
                height: 28em;
                border: 1px solid rgb(198, 197, 197);
            }

                #discover .card .card-body #articles #card-container .card img {
                    -o-object-fit: cover;
                    object-fit: cover;
                }

                #discover .card .card-body #articles #card-container .card .card-body .card-text {
                    font-size: 12px;
                }

                #discover .card .card-body #articles #card-container .card .card-body {
                    background: #ffcadd;
                }

                    #discover .card .card-body #articles #card-container .card .card-body button {
                        background: white;
                        color: #1e1e1e;
                    }

    #discover .card .card-body #events .event-container {
        max-width: 800px;
    }

        #discover .card .card-body #events .event-container img {
            border: 1px solid #a7aca2;
            border-radius: 8px;
        }

        #discover .card .card-body #events .event-container div p {
            margin: 0;
            font-size: small;
        }

        #discover .card .card-body #events .event-container button {
            background: #86143e;
            color: white;
            border: none;
        }

@media (max-width: 436px) {
    #discover .card .card-body #events .event-container img {
        width: 100% !important;
    }

    #discover .card .card-body #events .event-container div {
        width: 100% !important;
    }
}

#article-content #article-header {
    margin: 0 auto;
    padding-bottom: 0 !important;
    border-bottom: 2px solid rgb(215, 213, 213);
}

#article-content #article-paragraphs {
    max-width: 800px;
    margin: 0 auto;
}

#collections #collection-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

    #collections #collection-wrapper .collection-card {
        width: 28rem;
        height: 32rem;
    }

        #collections #collection-wrapper .collection-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        }

        #collections #collection-wrapper .collection-card img {
            height: auto;
            margin: 0;
            padding: 1rem 1rem 0 1rem;
            -o-object-fit: cover;
            object-fit: cover;
            background: #ffcadd;
        }

        #collections #collection-wrapper .collection-card .card-body {
            background: #ffcadd;
            border-color: #ffcadd;
        }

        #collections #collection-wrapper .collection-card button {
            background: white;
            color: #1e1e1e;
        }

#collections #share-pictures {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

    #collections #share-pictures button {
        width: 12rem;
        background: #86143e;
        color: white;
        margin: 0 auto;
    }

#pictures .p-5 {
    max-width: 800px;
    margin: 0 auto;
}

#pictures #photos {
    max-width: 1000px;
    margin: 0 auto;
    gap: 0.2rem;
}

    #pictures #photos a {
        max-width: 285px;
    }

#pictures #share-pictures {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

    #pictures #share-pictures button {
        width: 12rem;
        background: #86143e;
        color: white;
        margin: 0 auto;
    }

#donate-section {
    max-width: 1000px;
    margin: 0 auto;
}

    #donate-section #donation-instructions img {
        margin: 0 auto;
        max-width: 300px;
        border: 1px solid #17458f;
        border-radius: 8px;
    }

@media (max-width: 400px) {
    #donate-section #donation-instructions img {
        max-width: 200px;
    }
}

#donation-pictures {
    max-width: 1300px;
    margin: 0 auto;
}

    #donation-pictures #photos {
        gap: 1rem;
    }

        #donation-pictures #photos img {
            width: 300px;
            height: 300px;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 8px;
        }

#login {
    max-width: 700px;
    margin: 0 auto;
}

    #login #MoE {
        text-align: center;
    }

        #login #MoE img {
            margin: 0 auto;
            width: 6rem;
        }

    #login form {
        max-width: 500px;
        margin: 0 auto;
    }

        #login form .btn-login {
            background-color: #86143e;
            color: #fff8fb;
        }

        #login form .loader {
            display: none;
            margin-top: 10px;
            height: 36.7px;
        }

            #login form .loader div {
                display: inline-block;
                width: 10px;
                height: 10px;
                background-color: #86143e;
                border-radius: 50%;
                margin: 0 5px;
                animation: loader 1.2s infinite ease-in-out;
            }

                #login form .loader div:nth-child(2) {
                    animation-delay: 0.2s;
                }

                #login form .loader div:nth-child(3) {
                    animation-delay: 0.4s;
                }

@keyframes loader {
    0%, 80%, 100% {
        transform: scale(0.5);
    }

    40% {
        transform: scale(1);
    }
}
/*# sourceMappingURL=styles.css.map */

input, textarea {
    box-shadow: none !important;
}