body {
    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 407px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-left: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    font-family: 'Amethysta', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 57px;
    color: #ffedca;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    z-index: 3;
}


.help-section {
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: contain;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

.help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 182, 182, 0.45);
    z-index: 1;
}

.help-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
}

.help-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.help-content p {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 30px;
}

.our-mission-btn,
.our-volunteer-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    padding: 8px 20px;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    background: white;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.our-mission-btn:hover {
    color: white;
    background-color: #ff6b6b;
}

.our-volunteer-btn {
    color: #1414B8;
    border: 2px solid #1414B8;
    background: transparent;
}

.event-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
}

.event-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #ddd;
}


@media (max-width: 768px) {

    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .hero-text {
        font-size: 32px;
        line-height: 40px;
    }

    .help-content {
        text-align: center;
    }

    .help-content h2 {
        font-size: 1.5rem;
    }

    .help-content p {
        font-size: 1rem;
    }

    .help-section {
        background-size: cover;
    }

}

@media (max-width: 576px) {
    .event-title {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 0.95rem;
    }

    .gallery-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }

}