/* ----- Page Hero ----- */
.hero-section {
    overflow: visible;
    position: relative;
    padding-bottom: 0;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(197, 168, 128, .04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(197, 168, 128, .04) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    & .container {
        grid-template-columns: 1fr 2fr;
        position: relative;
    }

    & .section-title [data-lang="en"] {
        display: inline-block;
        max-width: 23ch;
    }
}

.hero-orb-1 {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(197, 168, 128, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Filter bar (Matching Portfolio) */
.portfolio-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    background: transparent;
    color: var(--text-primary);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn i {
    display: none;
    font-size: 0.95em;
    pointer-events: none;
}

.filter-btn.active i {
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.clear-filters-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.05);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: auto;
}

.portfolio-filters.has-filters .clear-filters-btn {
    display: flex;
}

.clear-filters-btn:hover {
    background: rgba(253, 77, 36, 0.1);
    color: #c13a10;
}
