/* Reset & General */
* { margin: 0; padding: 0; box-box: border-box; }
body { font-family: 'Segoe UI', Roboto, sans-serif; background: #fdfaf6; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Navbar */
.navbar { background: #800000; color: white; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.2rem; letter-spacing: -1px; }
.logo span { color: #f1c40f; display: block; font-size: 0.8rem; letter-spacing: 2px; }

/* CSS Slider (Tanpa JS) */
.slider { position: relative; width: 100%; overflow: hidden; }
.slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.slider-wrapper::-webkit-scrollbar { display: none; }
.slide {
    min-width: 100%;
    height: 450px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.slide-content { background: rgba(0,0,0,0.5); padding: 2rem; border-radius: 10px; width: 80%; }
.slide-content h2 { font-size: 2.5rem; margin-bottom: 10px; }

/* Background Slides */
.bg-1 { background: #2c3e50 url('https://images.unsplash.com') center/cover; }
.bg-2 { background: #c0392b; }
.bg-3 { background: #d35400; }
.bg-4 { background: #27ae60; }

.slider-hint { text-align: center; font-size: 0.8rem; color: #888; padding: 10px; }

/* Products Grid */
.products { padding: 60px 20px; }
.section-title { text-align: center; margin-bottom: 40px; color: #800000; font-size: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 10px; }
.price { display: block; margin-top: 15px; font-weight: bold; color: #c0392b; font-size: 1.2rem; }

/* Buttons & Contact */
.btn-small { background: #27ae60; color: white; text-decoration: none; padding: 8px 15px; border-radius: 5px; font-size: 0.9rem; font-weight: bold; }
.contact { background: #f2e6d9; padding: 80px 20px; text-align: center; }
.btn-wa { display: inline-block; margin-top: 20px; background: #25D366; color: white; text-decoration: none; padding: 15px 35px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: 0.3s; }
.btn-wa:hover { background: #128C7E; transform: scale(1.05); }

/* Footer */
footer { background: #1a1a1a; color: #888; text-align: center; padding: 30px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 600px) {
    .slide-content h2 { font-size: 1.8rem; }
}
