@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #faf8f3;
  --card-bg: #ffffff;
  --primary: #2d5016;
  --primary-light: #4a7c2e;
  --accent: #c17f24;
  --text: #2c2c2c;
  --text-muted: #6b6b5e;
  --border: #e5e0d5;
  --warm-bg: #f0ebe0;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,248,243,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 18px 0; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Hamburger */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 24px; position: relative; z-index: 200; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text); position: absolute; left: 0; transition: all 0.3s; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 650px; }
.hero-content h1 { font-family: var(--font-title); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.15; }
.hero-content p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.9; line-height: 1.7; }
.badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-title { font-family: var(--font-title); font-size: 2.5rem; margin-bottom: 50px; text-align: center; }
.bg-warm { background: var(--warm-bg); }
.page-hero { padding: 80px 0 40px; text-align: center; }
.page-hero h1 { font-family: var(--font-title); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 15px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

/* CARDS */
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 35px; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.card h3 { font-family: var(--font-title); color: var(--primary); margin-bottom: 12px; font-size: 1.3rem; }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* PRODUCT CARDS */
.product-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.product-card:hover img { transform: scale(1.05); }
.product-info { padding: 20px; }
.product-info h3 { font-family: var(--font-title); margin-bottom: 8px; }
.price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* MAP */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* FOOTER */
.footer { padding: 50px 0; text-align: center; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }

/* SCROLL ANIMATION */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg); flex-direction: column; padding: 100px 40px 40px; gap: 20px; transition: right 0.4s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.1); z-index: 150; }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
}
