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 */

.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;
}


/* Impact Stories */
.stories-section {
    margin: 52px auto;
}

.stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    margin-top: 20px;
    justify-content: center;
}

.story-card {
    background-color: #fbe2b7;
    border-radius: 12px;
    width: 360px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.story-image-container {
    position: relative;
    width: 360px;
    height: 300px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 12px 12px 0 0;
}

.story-tag {
    position: absolute;
    top: 0;
    left: 16px;
    background-color: #f5a623;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
}

.story-tag-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #ffffff;
}

.story-content {
    padding: 16px;
}

.story-title {
    font-family: 'Gabriela', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
}

.their-story-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0px;
}

.read-story-btn:hover {
    background-color: #d4881c;
}



@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .stories-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .story-card {
        width: 100%;
        max-width: 360px;
    }

    .story-image-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }


}