﻿
.inner-banner {
    /* Make sure this path works */
    background-size: cover;
    background-position: center;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: white; /* Make sure text is visible */
}

    .inner-banner .overlay {
        background-color: rgba(0, 0, 0, 0.001); /* optional: semi-transparent dark */
        width: 100%;
        height: 100%; /* make overlay cover whole area */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
    }

    .inner-banner h1 {
        font-size: 48px;
        font-weight: bold;
        color: white;
        z-index: 3;
        margin: 0;
    }

    .inner-banner p {
        margin-top: 10px;
        font-size: 16px;
        color: white;
        z-index: 3;
    }

/*.footer-insta a {
    text-decoration: none;
    color: #970915;
    font-size: 24px;
}

    .footer-insta a :hover {
        color: #fff;
    }*/