/* reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; line-height: 1.6; color: #5a3e2b; background: #fffbf0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* colors */
:root {
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-pale: #fef3c7;
    --brown: #8b4513;
    --brown-dark: #5a3e2b;
    --brown-light: #a0522d;
    --cream: #fffbf0;
    --honey: #e8a020;
}

/* nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.nav-brand { font-size: 1.5rem; font-weight: bold; color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #fff; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* hero */
.hero {
    background: linear-gradient(135deg, #8b4513 0%, #d4a017 50%, #f0c040 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff10' d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40z'/%3E%3C/svg%3E");
    opacity: 0.1;
}
.hero-content { position: relative; z-index: 1; padding: 20px; }
.hero h1 { font-size: 3.5rem; color: #fff; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.4rem; color: var(--gold-pale); margin-bottom: 10px; }
.hero-sub { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.5); }

/* sections */
section { padding: 80px 0; }
section h2 { text-align: center; font-size: 2.5rem; color: var(--brown); margin-bottom: 50px; position: relative; }
section h2::after { content: ""; display: block; width: 60px; height: 4px; background: var(--gold); margin: 15px auto 0; border-radius: 2px; }

/* products */
.products { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.product-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(139,69,19,0.1); transition: transform 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(139,69,19,0.15); }
.product-img { height: 200px; background: linear-gradient(135deg, var(--gold) 0%, var(--honey) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.honey-1 { background: linear-gradient(135deg, #f0c040 0%, #d4a017 100%); }
.honey-2 { background: linear-gradient(135deg, #fef3c7 0%, #f0c040 100%); }
.honey-3 { background: linear-gradient(135deg, #d4a017 0%, #8b4513 100%); }
.product-card h3 { padding: 20px 20px 10px; color: var(--brown-dark); font-size: 1.3rem; }
.product-card .price { color: var(--gold); font-weight: bold; font-size: 1.2rem; padding: 0 20px 10px; }
.product-card p:last-child { padding: 0 20px 20px; color: #888; font-size: 0.95rem; }

/* about */
.about { background: linear-gradient(180deg, #fffbf0 0%, #fff8e1 100%); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.feature-item { text-align: center; padding: 30px; background: #fff; border-radius: 15px; box-shadow: 0 3px 15px rgba(139,69,19,0.08); }
.feature-icon { font-size: 3rem; margin-bottom: 15px; }
.feature-item h3 { color: var(--brown); margin-bottom: 10px; font-size: 1.2rem; }
.feature-item p { color: #777; font-size: 0.95rem; }

/* banner */
.banner { background: linear-gradient(135deg, var(--brown) 0%, var(--gold) 100%); text-align: center; padding: 60px 20px; }
.banner h2 { color: #fff; margin-bottom: 10px; font-size: 2rem; }
.banner h2::after { display: none; }
.banner p { color: var(--gold-pale); font-size: 1.1rem; }

/* contact */
.contact { background: var(--cream); }
.contact-content { text-align: center; max-width: 500px; margin: 0 auto; }
.contact-info p { padding: 10px 0; font-size: 1.1rem; color: var(--brown-dark); border-bottom: 1px solid rgba(139,69,19,0.1); }
.contact-info strong { color: var(--brown); }

/* footer */
.footer { background: var(--brown-dark); color: var(--gold-pale); text-align: center; padding: 30px 0; font-size: 0.9rem; opacity: 0.9; }

/* responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    section h2 { font-size: 2rem; }
    section { padding: 60px 0; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brown-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .nav { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .product-grid { grid-template-columns: 1fr; }
}