* {
    font-family: Montserrat, sans-serif;
    color: #FFF4B7;
}
body{
    background: #201E43;
}
.no-select {
    user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none;     
}
#logo {
    transition: all 0.3s ease;
}
#logo:hover{
    transform: translateY(-2px);
}
.btn-primary {
    background-color: #003161;
    border-color: #003161;
}
.btn-primary:hover{
    background-color: #04113a;
    border-color: #04113a;
}
.nav{
    position: inline;
}
.navi {
    background-color: #17153bff;
}
.nav-item {
    background-color: #003161;
    border-radius: 10px;
    transition: 0.25s;;
}
.nav-btn:hover {
    background-color: #FFF4B7;
    color: #003161;
}
.nav-link {
    color: #FFF4B7;
}
.nav-link:hover{
    color: #003161;
}

.custom-shadow {
    box-shadow: 10px 10px 0px #FFF4B7;
}
.nav-btn {
    background: #003161;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery-btn {
    background: #FFF4B7;
    color: #003161;
    transition: all 0.3s ease;
}
.gallery-btn:hover {
    color: #FFF4B7;
    background-color: #003161;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.scroll-down {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Style untuk tombol close (X) */
#close-menu {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

/* Animation muncul dan hilangnya menu */
#mobile-menu.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

#mobile-menu ul li {
    font-size: 1.5rem;
    text-align: center;
}

#mobile-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    display: block;
    font-weight: bold;
    transition: color 0.3s ease;
}

#mobile-menu ul li a:hover {
    color: #FFF4B7;
}
