.navbar {
    background-color: #f9f1e6;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
}


.navbar-brand {
    font-weight: 500;
    color: #748e6b;
    font-size: 24px;
    transition: 0.3s color;
}

.login-button {
    background: #748e6b;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.login-button:hover {
    background-color: #748e6b;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #666777;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        height: 2px;
        background-color: #748e6b;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}

.hero-section{
    background: url(hero-bg.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
}

.hero-section::before {
    background-color: rgba(0, 0, 0, 0.6);
    content:"";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-section .container {
    height: 100vh;
    z-index: 1;
    position: relative;
}

.hero-section h1 {
    font-size: 1.0em;
}

.navbar-item .dropdown-menu {
    background-color: #f9f1e6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-item .dropdown-item {
    color: #748e6b;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.nav-item .dropdown-item:hover {
    background-color: #d6d3c9;
    color: #748e6b;
    text-decoration: none;
}

.nav-item.dropdown-toggle::after {
    display: none;
}

/* Styling untuk halaman login */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #dee4dc;
    border-radius: 8px;
    background-color: #dee4dc;
}

.login-container h2 {
    margin-bottom: 20px;
}

.login-container .form-group {
    margin-bottom: 15px;
}

.login-container .form-group label {
    display: block;
    margin-bottom: 5px;
}

.login-container .form-group input {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #dee4dc;
}

.login-container button {
    background-color: #748e6b;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #6a7b5b;
}