/*
 * LinuxCapable GeneratePress Element CSS
 * Target: Homepage only (without shared lc-home layer)
 * Source: extracted from unified stylesheet sections.
 * Version: 2026.02.20-2
 */
/* ============================================
   HOMEPAGE HERO SECTION
   ============================================ */

.lc-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 80px 40px;
    text-align: center;
}

.lc-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.lc-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.lc-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Search Form */
.lc-hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.lc-hero-search:focus-within {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25), 0 10px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.lc-search-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
}

.lc-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lc-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lc-search-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
    transform: scale(1.02);
}

.lc-search-btn svg {
    flex-shrink: 0;
}

/* Quick Tags */
.lc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lc-hero-tag-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lc-hero-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lc-hero-tag:hover {
    color: #fff !important;
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .lc-hero {
        padding: 50px 20px;
    }

    .lc-hero-search {
        flex-direction: column;
        border-radius: 10px;
    }

    .lc-search-input {
        padding: 14px 16px;
        text-align: center;
    }

    .lc-search-btn {
        justify-content: center;
        padding: 14px 20px;
        border-radius: 0 0 9px 9px;
    }

    .lc-hero-tags {
        gap: 8px;
    }
}
