/* style.css */

/* Reset CSS dasar untuk konsistensi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif; /* Font teks isi */
    background-color: #1a1a1a; /* Warna latar belakang gelap */
    color: #f5f5f5; /* Warna teks krem */
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Font judul elegan */
    color: #d4af37; /* Warna aksen emas */
    margin-bottom: 20px;
}

/* Navigasi */
header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: inline-block;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d4af37; /* Warna emas saat hover */
}

/* Konten Utama */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
}

/* Grid Katalog 4x4 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom */
    grid-gap: 30px; /* Jarak antar produk */
}

.product-item {
    background-color: #262626; /* Latar belakang kotak produk */
    padding: 20px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px); /* Efek angkat saat hover */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); /* Bayangan emas tipis */
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #444;
}

.product-item h3 {
    font-size: 1.2em;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.9em;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}