:root {
    --primary: #FFD27F;
    --secondary: #8B5E3C;
    --accent: #FF8C00;
    --bg: #FFF8E7;
    --text: #3B2F2F;
}
body {
    margin: 0;
    font-family: 'Verdana', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}
header {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 3px solid var(--secondary);
}
header img {
    height: 60px;
    margin-right: 15px;
}
header h1 {
    font-size: 2rem;
    margin: 0;
}
nav {
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    border-right: 1px solid #fff;
}
nav a:last-child {
    border-right: none;
}
nav a:hover {
    background-color: var(--accent);
}
section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.hero {
    background-image: url('https://images.unsplash.com/photo-1592928301561-1eb5b43f5d10');
    background-size: cover;
    background-position: center;
    color: var(--secondary);
    text-align: center;
    padding: 80px 20px;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.hero h2 {
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
}
.hero a {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.product-card {
    background-color: #FFF0D4;
    border: 2px solid var(--secondary);
    padding: 10px;
    text-align: center;
    box-shadow: 3px 3px 0px #8B5E3C;
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--secondary);
}
.product-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}
.product-card p {
    margin: 0 5px 10px;
    font-size: 0.95rem;
}
section.about, section.blog, section.contact {
    background-color: #FFF0D4;
    border: 2px solid var(--secondary);
    padding: 20px;
    box-shadow: 3px 3px 0px #8B5E3C;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--secondary);
    color: white;
    font-family: 'Verdana', sans-serif;
}
footer a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 5px;
}
@media(max-width: 600px){
    header h1 { font-size: 1.5rem; }
    .hero h2 { font-size: 1.2rem; }
}