/* === Howard Wong Farms === */
/* Color Scheme: Farm Fresh Green & Warm Earth */

:root {
    --primary: #276749;
    --primary-light: #2f855a;
    --accent: #c05621;
    --accent-light: #dd6b20;
    --dark: #1a202c;
    --gray: #4a5568;
    --light: #f0fff4;
    --white: #ffffff;
    --cream: #fffaf0;
    --earth: #faf5ef;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Banner */
.top-banner {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.leaf { font-size: 2rem; }
.logo-main {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1.1;
}
.logo-sub {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('assets/hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,32,44,0.6) 0%, rgba(39,103,73,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
    color: var(--white);
}
.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.hero-info span {
    background: rgba(255,255,255,0.15);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* About */
.about { padding: 100px 0; background: var(--earth); }
.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.3rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text .lead {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}
.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}
.about-text blockquote {
    margin-top: 25px;
    padding: 25px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    border-radius: 8px;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; display: block; }

.generations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}
.gen {
    text-align: center;
}
.gen strong {
    display: block;
    font-family: 'Libre Baskerville', serif;
    color: var(--primary);
    font-size: 1.1rem;
}
.gen span {
    font-size: 0.8rem;
    color: var(--gray);
}
.gen-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Products */
.products { padding: 100px 0; background: var(--white); }
.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-top: -30px;
    margin-bottom: 50px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.product-cat {
    background: var(--light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}
.product-cat h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}
.product-cat p {
    color: var(--gray);
    line-height: 1.6;
}

.more-products {
    margin-top: 35px;
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: 10px;
    color: var(--dark);
}

/* Visit */
.visit { padding: 100px 0; background: var(--cream); }
.visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.v-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.v-card:hover { transform: translateY(-5px); }
.v-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.v-card h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.v-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.5; }
.v-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Community */
.community {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}
.community .section-title { color: var(--white); margin-bottom: 30px; }
.community p {
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
    opacity: 0.95;
}
.reopening {
    font-style: italic;
    opacity: 0.85;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.fb-main {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.motto {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    margin: 15px 0;
    opacity: 0.8;
    color: var(--accent-light);
}
.copy { margin-top: 20px; opacity: 0.5; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 15px; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2rem; }
    .hero-info { flex-direction: column; align-items: center; gap: 10px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .generations { flex-direction: column; }
    .gen-arrow { transform: rotate(90deg); }
}
