/* ============================================================
   HERO – "En Construction" Page – No Scroll
   ============================================================ */

.construction-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* ---- Background Video ---- */
.construction-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.construction-bg-video .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.12;
    filter: brightness(0.5) contrast(1.1) saturate(0.7) blur(4px);
}

/* ---- Centered Content ---- */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

/* ---- Animated Icon ---- */
.construction-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #4f6ef7;
    animation: float-icon 4s ease-in-out infinite;
}

.construction-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79, 110, 247, 0.2);
    animation: pulse-ring 3s ease-in-out infinite;
}

.construction-icon-ring::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(79, 110, 247, 0.08);
    animation: pulse-ring 3s ease-in-out infinite 0.5s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

/* ---- Title ---- */
.construction-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: #eef0ff;
    -webkit-text-fill-color: #eef0ff;
}

.construction-title .accent {
    background: linear-gradient(120deg, #93c5fd 0%, #4f6ef7 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---- Description ---- */
.construction-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
    text-align: center;
}

/* ---- Entrance animations ---- */
.construction-icon,
.construction-title,
.construction-desc {
    opacity: 0;
    animation: fadeInUpHero 0.8s ease forwards;
}

.construction-title {
    animation-delay: 0.15s;
}

.construction-desc {
    animation-delay: 0.3s;
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .construction-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .construction-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.2rem;
    }

    .construction-desc {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

@media (max-height: 500px) {
    .construction-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .construction-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .construction-desc {
        font-size: 0.85rem;
    }
}