/* css/style.css */

/* Pastikan font Inter sudah diatur */
body {
    font-family: 'Inter', sans-serif;
}

/* Solusi untuk fixed header dan anchor links */
html {
    scroll-padding-top: 5rem; /* Sesuaikan nilai ini dengan tinggi header Anda */
}

/* Tambahkan animasi yang Anda sebutkan di HTML jika belum ada di style.css */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Example success color */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.message-box.show {
    opacity: 1;
}