.v3-hero-animator {
    position: relative;
    overflow: hidden;
}

.v3-hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.v3-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.v3-hero-content.active {
    opacity: 1;
    visibility: visible;
}

.v3-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.v3-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.v3-hero-menu {
    display: flex;
    z-index: 10;
}

.v3-hero-menu-horizontal {
    flex-direction: row;
}

.v3-hero-menu-vertical {
    flex-direction: column;
}

.v3-hero-menu-item {
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.v3-hero-menu-item.active {
    font-weight: bold;
}

.v3-hero-content-inner {
    position: relative;
    z-index: 1;
}

.v3-hero-content-text-wrapper {
    display: flex;
    flex-direction: column;
}

.v3-hero-content-button-wrapper {

}

.v3-hero-content-text {
    display: none;
    flex-direction: column;
}

.v3-hero-content-text.active {
    display: flex;
}

.v3-hero-title-1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

.v3-hero-title-2 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.v3-hero-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.v3-hero-button:hover {
    background-color: #0056b3;
}

/* Content positioning */
.v3-hero-animator[data-content-position^="top-"] .v3-hero-overlay {
    justify-content: flex-start;
}

.v3-hero-animator[data-content-position^="middle-"] .v3-hero-overlay {
    justify-content: center;
}

.v3-hero-animator[data-content-position^="bottom-"] .v3-hero-overlay {
    justify-content: flex-end;
}

.v3-hero-animator[data-content-position$="-left"] .v3-hero-overlay {
    align-items: flex-start;
    text-align: left;
}

.v3-hero-animator[data-content-position$="-center"] .v3-hero-overlay {
    align-items: center;
    text-align: center;
}

.v3-hero-animator[data-content-position$="-right"] .v3-hero-overlay {
    align-items: flex-end;
    text-align: right;
}

/* Responsive styles */
@media (max-width: 767px) {
    .v3-hero-menu-horizontal {
        flex-wrap: wrap;
    }

    .v3-hero-title-1 {
        font-size: 2em;
    }

    .v3-hero-title-2 {
        font-size: 2em;
    }
}