/* Herso Intro Slider Styles for Rent Site */

.herso-container-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #000;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.herso-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

/* --- Header Overlay (Internal) --- */
.herso-header {
    z-index: 20;
    position: absolute;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.herso-logo {
    font-family: 'Forum', cursive;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #fff;
    transform: rotate(-90deg);
    writing-mode: vertical-rl;
    mix-blend-mode: difference;
}

/* --- Main Layout --- */
.herso-main {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- Top Reveal Area --- */
.herso-top-reveal {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
    width: 100%;
    height: 75%;
    pointer-events: none;
}

.herso-main-title-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 5%;
}

.herso-main-title {
    font-family: 'Forum', cursive;
    font-size: 20vw;
    line-height: 0.8;
    margin: 0 0 -1vw 2vw;
    letter-spacing: -0.02em;
    overflow: hidden;
    color: #fff;
    mix-blend-mode: difference;
    text-transform: uppercase;
}

.herso-next-btn-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 3vw;
    pointer-events: auto;
}

.herso-btn {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 50%;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
}

.herso-btn:hover {
    background: #fff;
    color: #000;
}

.herso-info-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.herso-info-content {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

.herso-info-content p {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
}

.herso-sep {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Columns --- */
.herso-col-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 33.33%;
    height: 100%;
    padding: 40px;
    z-index: 5;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.herso-asterix {
    position: absolute;
    right: 40px;
    bottom: 120px;
    width: 40px;
    height: 40px;
    fill: #fff;
}

.herso-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.herso-designer {
    font-family: 'Forum', cursive;
    font-size: 3.5rem;
    line-height: 1;
    overflow: hidden;
    color: #fff;
}

.herso-col-center {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 44.66%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.herso-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.herso-title-center {
    position: relative;
    margin: 40px;
    font-family: 'Forum', cursive;
    font-size: 7vw;
    line-height: 1;
    color: #fff;
    mix-blend-mode: difference;
    overflow: hidden;
    text-transform: uppercase;
}

.herso-col-right {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 22%;
    height: 100%;
}

.herso-img-right-wrapper {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.herso-img-side {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

.herso-title-right {
    position: relative;
    color: #fff;
    margin: 30px 0;
    font-family: 'Forum', cursive;
    font-size: 4vw;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
}

/* SplitType helper */
.char,
.word {
    display: inline-block;
}

@media (max-width: 991px) {
    .herso-col-left {
        display: none;
    }

    .herso-col-center {
        width: 70%;
    }

    .herso-col-right {
        width: 30%;
    }

    .herso-main-title {
        font-size: 25vw;
    }

    .herso-title-center {
        font-size: 10vw;
    }
}