/*
==================================================
PROJECTS HERO
==================================================
*/

.sidv-projects-hero {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 7rem;
    background-color: #0F172A;
    color: #FFFFFF;
}

/*
==================================================
BACKGROUND & OVERLAYS
==================================================
*/

.sidv-projects-hero__bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.sidv-projects-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.sidv-projects-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 22, 41, 0.95) 0%,
        rgba(15, 23, 42, 0.88) 50%,
        rgba(15, 23, 42, 0.96) 100%
    );
}

.sidv-projects-hero__glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
    transition: transform 0.4s ease-out;
}

.sidv-projects-hero__glow--primary {
    top: -10%;
    right: 5%;
    background: rgba(245, 158, 11, 0.15);
}

.sidv-projects-hero__glow--secondary {
    bottom: -10%;
    left: 10%;
    background: rgba(2, 86, 114, 0.25);
}

/*
==================================================
WRAPPER & CONTENT LAYOUT
==================================================
*/

.sidv-projects-hero .sidv-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sidv-projects-hero__wrapper {
    max-width: 900px;
}

.sidv-projects-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidv-projects-hero.is-visible .sidv-projects-hero__content {
    opacity: 1;
    transform: translateY(0);
}

/*
==================================================
EYEBROW & FLOATING BADGE
==================================================
*/

.sidv-projects-hero__eyebrow-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sidv-projects-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #F59E0B;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sidv-projects-hero__floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.sidv-projects-hero__stat-num {
    color: #F59E0B;
    font-size: 0.95rem;
    font-weight: 800;
}

.sidv-projects-hero__stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
}

/*
==================================================
TITLE & HIGHLIGHT
==================================================
*/

.sidv-projects-hero__title {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5.2vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sidv-highlight {
    color: #F59E0B;
    background: linear-gradient(120deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/*
==================================================
DESCRIPTION
==================================================
*/

.sidv-projects-hero__description {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/*
==================================================
FEATURES LIST
==================================================
*/

.sidv-projects-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
}

.sidv-projects-hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sidv-projects-hero__feature:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.sidv-projects-hero__feature .sidv-icon,
.sidv-projects-hero__feature svg {
    color: #F59E0B;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidv-projects-hero__feature span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.92rem;
}

/*
==================================================
ACTIONS & BUTTONS
==================================================
*/

.sidv-projects-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.sidv-projects-hero__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Primary Button */

.sidv-projects-hero__actions .sidv-btn-primary {
    background: #F59E0B;
    color: #0F172A;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}

.sidv-projects-hero__actions .sidv-btn-primary:hover {
    background: #FBBF24;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.38);
}

.sidv-btn-primary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sidv-btn-primary__icon svg {
    width: 100%;
    height: 100%;
}

.sidv-projects-hero__actions .sidv-btn-primary:hover .sidv-btn-primary__icon {
    transform: translateX(4px);
}

/* Secondary Button */

.sidv-projects-hero__actions .sidv-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.sidv-projects-hero__actions .sidv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #F59E0B;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/*
==================================================
RESPONSIVE DESIGN
==================================================
*/

@media (max-width: 1024px) {
    .sidv-projects-hero {
        padding: 8rem 0 6rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .sidv-projects-hero {
        padding: 6.5rem 0 4.5rem;
    }

    .sidv-projects-hero__title {
        font-size: 2.2rem;
    }

    .sidv-projects-hero__description {
        font-size: 1rem;
    }

    .sidv-projects-hero__features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sidv-projects-hero__feature {
        width: 100%;
    }

    .sidv-projects-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .sidv-projects-hero__actions a {
        width: 100%;
    }

    .sidv-projects-hero__glow {
        width: 280px;
        height: 280px;
    }
}