.wls-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.wls-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wls-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wls-hero-overlay {
    position: absolute;
    inset: 0;
}

.wls-hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 50%);
}

.wls-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.wls-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.wls-hero-line {
    width: 4rem;
    height: 1px;
}

.wls-hero-label span {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
}

.wls-hero-title {
    font-size: 3rem;
    font-family: Georgia, serif;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 400;
}

@media (min-width: 768px) {
    .wls-hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .wls-hero-title {
        font-size: 6rem;
    }
}

.wls-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    color: #f3f4f6;
}

@media (min-width: 768px) {
    .wls-hero-subtitle {
        font-size: 1.5rem;
    }
}

.wls-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.wls-hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.4);
}

.wls-hero-arrow {
    width: 1.25rem;
    height: 1.25rem;
}

.wls-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: wls-bounce 2s infinite;
}

@keyframes wls-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.wls-scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid;
    border-radius: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.wls-scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    border-radius: 0.25rem;
    animation: wls-scroll 1.5s infinite;
}

@keyframes wls-scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0.5rem);
    }
}

/* Responsive font sizes via JS */
@media (max-width: 767px) {
    .wls-hero-title.wls-custom-size {
        font-size: var(--wls-title-mobile);
    }
}

@media (min-width: 1024px) {
    .wls-hero-title.wls-custom-size {
        font-size: var(--wls-title-desktop);
    }
}