/* Background utama */
body {
    background-image: url("/images/Menu-background.png") !important;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Logo Polban */
#banner-logo-polban {
    max-width: 500px;
    height: auto;
    margin-top: 100px;
    margin-bottom: 40px;
}

/* Judul Halaman */
#title-login p {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* Kotak Menu */
.menu {
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 180px;
    background-color: #fd9e4a;
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.menu:hover {
    background-color: #6a8eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Gambar Menu */
.menu img {
    max-width: 150px;
    margin-bottom: 10px;
}

/* Teks Menu */
.menu h5 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
}

/* Disable Menu */
.disabled-menu {
    background-color: #ccc !important;
    color: #555;
    cursor: not-allowed;
}

/* Responsif untuk layar kecil */
@media (max-width: 976px) {
    #banner-logo-polban {
        max-width: 300px;
    }

    #title-login p {
        font-size: 1.5rem;
    }

    .menu {
        padding: 40px 10px;
        min-height: 150px;
    }

    .menu img {
        max-width: 100px;
    }

    .menu h5 {
        font-size: 1.1rem;
    }
}
