/*
Theme Name: Bee Inspired Theme
Theme URI: https://example.com/
Description: A WordPress theme inspired by the visual style of bee.pl for a healthy food / eco store.
Version: 1.0.0
Author: Copilot
Text Domain: bee-inspired-theme
*/

:root {
  --bg: #fcf8f2;
  --surface: #ffffff;
  --surface-2: #f7f1e8;
  --text: #23302d;
  --muted: #6d7a74;
  --accent: #7dbb5a;
  --accent-dark: #4d8a2b;
  --accent-soft: #eaf7e1;
  --border: #e7e0d4;
  --shadow: 0 10px 30px rgba(24, 42, 30, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #f5efe7 100%);
  line-height: 1.6;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar {
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.topbar a { color: #fff; }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.brand { font-size: 1.7rem; font-weight: 700; color: var(--accent-dark); }
.nav-menu { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-menu a { font-weight: 600; color: var(--text); }

.hero {
  background: radial-gradient(circle at top left, #f7fce6 0%, #fefbf4 50%, var(--surface) 100%);
  padding: 72px 0 56px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 14px; line-height: 1.15; }
.hero p { font-size: 1.05rem; color: var(--muted); margin-bottom: 22px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 999px; font-weight: 700; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: var(--surface-2); color: var(--accent-dark); }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.hero-card ul { padding-left: 18px; color: var(--muted); }

.section { padding: 52px 0; }
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-title h2 { margin: 0; font-size: 1.4rem; }
.section-title a { font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.product-card .price { font-size: 1.2rem; font-weight: 700; color: var(--accent-dark); margin-top: 8px; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 0.8rem; font-weight: 700; margin-bottom: 10px; }

.info-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.info-strip .container { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; padding: 22px 0; }
.info-box { background: var(--surface-2); border-radius: 16px; padding: 18px; }

.site-footer { background: #213126; color: #f8f5ee; padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.site-footer a { color: #d6ead0; }

@media (max-width: 900px) {
  .hero-grid, .card-grid, .footer-grid, .info-strip .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-grid, .card-grid, .footer-grid, .info-strip .container { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav-menu { gap: 10px; }
}
