@import '../components/mentahan.css';
@import '../components/navbar.css';


.hero-section-404 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100% !important;
    min-height: 100vh !important;
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content-404 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
}

.hero-content-404 h1 {
    font-size: 8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    color: #fff;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-404 .text-gradient {
    background: linear-gradient(135deg, #5D3EFF, #00F0FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content-404 .lead {
    font-size: 1.25rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content-404 .badge {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.4s both;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-404 {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0ff, #06f);
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn-404:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    background: linear-gradient(135deg, #06f, #0ff);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .hero-content-404 h1 {
        font-size: 6rem !important;
    }
    .hero-content-404 .text-gradient {
        font-size: 2rem !important;
        letter-spacing: -1px !important;
    }
    .hero-content-404 .lead {
        font-size: 1rem !important;
    }
    .hero-content-404 .badge {
        font-size: .7rem !important;
    }
    .btn-404 {
        padding: .5rem 1.2rem;
        font-size: .8rem !important;
    }
}

@media (max-width: 576px) {
    .hero-content-404 h1 {
        font-size: 4rem !important;
    }
    .hero-content-404 .text-gradient {
        font-size: 1.5rem !important;
        letter-spacing: -1px !important;
    }
    .hero-content-404 .lead {
        font-size: .7rem !important;
    }
    .hero-content-404 .badge {
        font-size: .6rem !important;
    }
    .btn-404 {
        padding: .5rem 1rem;
        font-size: .6rem !important;
    }
}
