/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
}

/* .hero-container {
    position: absolute;
    inset: 0;
    background-color: #e7e6e9;
} */

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-image-2 {
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    opacity: 0.7;
}

/* .hero-overlay-light {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2)
} */

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-2 {
    gap: 3rem;
}

.hero-text {
    max-width: 768px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

/* .hero-text-2 p {
    color: rgb(61, 60, 60);
} */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text p {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .hero-content-2 {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }

    .hero-image-2 img {
        max-width: 120px;
        height: auto;
    }

    .hero-text h1 {
        margin-bottom: 1rem;
        line-height: normal;
    }

    .hero-text-2 {
        text-align: center;
    }
}