/**
 * Hero Block Styles
 *
 * @package LiquidationSpa
 */

.lspa-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -80px;
    padding-top: 80px;
}

.lspa-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 41, 81, 0.75) 0%,
        rgba(1, 41, 81, 0.4) 50%,
        rgba(1, 41, 81, 0.1) 100%
    );
    z-index: 1;
}

.lspa-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.lspa-hero__content {
    max-width: 650px;
}

.lspa-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.lspa-hero__subtitle {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.95;
}

/* Hero Tags */
.lspa-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.lspa-hero__tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
}

.lspa-hero__tag-icon {
    width: 20px;
    height: 20px;
    color: #6CA6C4;
    flex-shrink: 0;
}

/* Hero CTAs */
.lspa-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lspa-hero .lspa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 150ms ease;
}

.lspa-hero .lspa-btn--outline.lspa-btn--white {
    background-color: #FFFFFF;
    color: #012951;
    border-color: #FFFFFF;
}

.lspa-hero .lspa-btn--outline.lspa-btn--white:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.lspa-hero .lspa-btn--primary {
    background-color: #012951;
    color: #FFFFFF;
    border-color: #012951;
}

.lspa-hero .lspa-btn--primary:hover {
    background-color: #011D3A;
    border-color: #011D3A;
}

.lspa-hero .lspa-btn__icon {
    width: 18px;
    height: 18px;
    transition: transform 150ms ease;
}

.lspa-hero .lspa-btn:hover .lspa-btn__icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .lspa-hero {
        min-height: 80vh;
    }

    .lspa-hero__container {
        padding: 4rem 1.5rem;
    }

    .lspa-hero__title {
        font-size: 2rem;
    }

    .lspa-hero__subtitle {
        font-size: 1rem;
    }

    .lspa-hero__tags {
        gap: 0.75rem 1.5rem;
    }

    .lspa-hero__ctas {
        flex-direction: column;
    }

    .lspa-hero__ctas .lspa-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Editor Preview Adjustments */
.editor-styles-wrapper .lspa-hero {
    margin-top: 0;
    padding-top: 0;
    min-height: 500px;
}

.editor-styles-wrapper .lspa-hero__placeholder-notice {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #012951;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.editor-styles-wrapper .lspa-hero__placeholder-notice .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
