/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-color: #f0f0f0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1920x1080.png?text=Maintenance+Background'); /* Ganti dengan URL gambar Anda */
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transition: filter 0.5s ease-in-out;
}

.maintenance-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100vh);
    animation: slideUp 1.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(-20vh); /* Berhenti 20% dari atas */
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lock-icon {
    width: 60px;
    height: 60px;
    color: #008F97;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite; /* Animasi berkedip atau "mengunci" */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

h1 {
    font-size: 2.5em;
    color: #008F97;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.countdown {
    font-size: 2em;
    font-weight: 600;
    color: #008F97;
}

/* Responsif untuk layar lebih kecil */
@media (max-width: 768px) {
    .maintenance-container {
        max-width: 90%;
        padding: 30px 15px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}


