/* ===== HERO SECTION ===== */

#v2-hero-layout {
    font-size: 0;
}


.hero {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 4rem 0;
    color: #ffffff;
    text-align: left;
    display: flex;
    align-items: center; /* Centers content vertically */
}

.hero-inner {

    max-width: 900px;
    margin: 0;
    padding-left: 5rem; /* Adjust this value to control how far left */
    padding-right: 1.5rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    color: #d8e4f2;
    margin-bottom: 2rem;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #c22a32;
    color: #fff;
    border: 1px solid #c22a32;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn:hover {
    opacity: 0.9;
}

.background-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.background-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-layout {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#about-hero-layout {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

/*#about-hero-img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

#about-hero-inner {

}

/* RESPONSIVE */


@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 2rem 0;
    }

    .hero-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.85rem;
    }

    #about-hero-layout {
        display: block;
        height: 50vh;
    }

    #about-hero-layout .hero {
        position: absolute;
        background: transparent;
    }
}

@media (max-width: 480px) {
    .background-image-wrapper {
        height: 40vh;
        min-height: 250px;
    }

    .hero {
        position: relative;
        padding: 2rem 0;
    }

    .hero-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 250px;
    }

    .hero-title, .hero-subtitle {
        color: #111824;
    }

    .btn {

        padding: 0.75rem 0;
        font-size: 1rem;
        text-decoration: none;
        color: white;
        background: red;
        border-radius: 4px;
    }

}