/* Landing Page Specific Split layout */
.split-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.split {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Backgrounds */
.split-left {
    background: url('../images/boomliftmainscreen.PNG') center/cover no-repeat;
}

.split-right {
    background: url('../images/mainscreenrental.jpg') center/cover no-repeat;
}

/* Gradient Overlay */
.split .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.6s ease;
    z-index: 1;
}

/* Content */
.split .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    opacity: 1;
    transform: translateY(0);
}

.split .content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Selling specific accent */
.split-left .content h1 span {
    color: var(--primary-yellow);
}

.split .content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split {
        width: 100%;
        height: 50%;
    }

    .split .content h1 {
        font-size: 2.5rem;
    }
}