/* Variables & Reset */
:root {
    --primary-amber: #d4a373;
    --dark-brown: #33261d;
    --light-cream: #fefae0;
    --text-color: #4a4a4a;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; color: var(--text-color); line-height: 1.6; background-color: var(--light-cream); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); padding: 20px 0; border-bottom: 1px solid #eee; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--dark-brown); }
nav ul { display: flex; list-style: none; gap: 20px; }
nav a { text-decoration: none; color: var(--dark-brown); font-weight: 600; }

/* Hero */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1602603560545-385054366601?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.btn { display: inline-block; padding: 12px 30px; background: var(--primary-amber); color: var(--white); text-decoration: none; border-radius: 5px; margin-top: 20px; border: none; cursor: pointer; }

/* Products */
.products { padding: 60px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 30px; }
.product-card { background: var(--white); padding: 20px; text-align: center; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.img-placeholder { height: 200px; background: #e9dcc9; margin-bottom: 15px; border-radius: 4px; }
.price { font-weight: bold; color: var(--primary-amber); margin: 10px 0; }

/* About & Contact */
.about { padding: 60px 0; background: var(--dark-brown); color: var(--light-cream); text-align: center; }
.contact { padding: 60px 0; }
form { max-width: 500px; margin: 20px auto; display: flex; flex-direction: column; }
input, textarea { padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
}
