* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: rgba(196, 178, 22, 0.75);
    color: white;
}
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(153, 144, 23, 0.75);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0,3,);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara logo dan teks */
}

.nav-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px; /* biar tidak petak kaku */
    object-fit: cover;
    border: 2px solid rgb(255, 210, 12); /* biar terlihat elegan */
}
.nav-logo span {
    font-size: 0.85rem;
    font-weight: 600;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3 ease;
}
.nav-link a.active {
    border-bottom: 2px solid #3c3a04c0;
}
.nav-link a:hover {
    background: #5b4a06;      
    color: #fff;
    border-color: #666;
    box-shadow: 0 0 10px #252103;
    transform: scale(1.05);
}
.menu-container {
    height: 100vh;
    background-image: linear-gradient(rgba(196, 178, 22, 0.75), rgba(58, 55, 13, 0.75)),
    url(images/logo.png);
    background-size: cover;
    background-position: center;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.menu-container h1 {
    font-size: 35px;
    margin-bottom: 30px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px;
}

.product-card {
    background: rgba(222, 202, 24, 0.296);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgb(226, 187, 12);
    transition: 0.3s;
}

.product-card img {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    margin-bottom: 30px;
}
.product-card:hover {
    background: #c5b60c;      
    color: #fff;
    border-color: #666;
    box-shadow: 0 0 10px #252103;
    transform: scale(1.05);
}

.product-card h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.product-card p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #d0d034;;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #4a4404;      
    color: #fff;
    border-color: #666;
    box-shadow: 0 0 10px #323005;
    transform: scale(1.05);
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(231, 190, 6, 0.881);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    color: white;

}
