/* Bioimkerei Apiarium — Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --honey: #d99b2b;
  --honey-dark: #b97f18;
  --honey-light: #f3c565;
  --brown: #3d2b1a;
  --brown-soft: #5c4530;
  --cream: #fdf8ef;
  --cream-deep: #f6ecd9;
  --sage: #7c8b5c;
  --sage-dark: #5f6c45;
  --line: #e8dcc2;
  --shadow: 0 10px 30px rgba(61, 43, 26, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--honey-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brown);
}

.brand img {
  height: 42px;
  width: auto;
}

.brand:hover { text-decoration: none; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--brown-soft);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

nav a.active,
nav a:hover {
  color: var(--honey-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--brown);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--sage-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--brown-soft);
  max-width: 46ch;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 30px rgba(61,43,26,0.15));
}

.btn-row {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--honey);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 155, 43, 0.35);
}

.btn-primary:hover { background: var(--honey-dark); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn-outline:hover { background: var(--brown); color: #fff; }

/* Sections */
section { padding: 64px 0; }

section.alt { background: var(--cream-deep); }

.section-head {
  max-width: 60ch;
  margin-bottom: 40px;
}

.section-head .kicker {
  color: var(--sage-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin-bottom: 8px;
  display: block;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--honey-dark);
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* Location list */
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.location-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-list li::before {
  content: "🐝";
  font-size: 1.1rem;
}

/* Price table */
.price-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px dashed var(--line);
}

.price-row:last-child { border-bottom: none; }

.price-row .label {
  font-weight: 600;
  font-size: 1.05rem;
}

.price-row .note {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--brown-soft);
  margin-top: 2px;
}

.price-row .amount {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--honey-dark);
  white-space: nowrap;
}

/* Info panel */
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.info-panel h3 { margin-top: 0; }

.tag-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  background: var(--cream-deep);
  color: var(--sage-dark);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Quote / callout */
.callout {
  border-left: 4px solid var(--honey);
  background: var(--cream-deep);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 24px 0;
  font-size: 1.02rem;
  color: var(--brown-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item .icon-badge { flex-shrink: 0; margin-bottom: 0; }

.contact-item h4 { margin-bottom: 4px; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
footer {
  background: var(--brown);
  color: #f0e6d2;
  padding: 48px 0 28px;
  margin-top: 40px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

footer h4 {
  color: #fff;
  font-family: 'Fraunces', serif;
  margin-bottom: 12px;
}

footer a { color: #e8d6b0; }
footer a:hover { color: #fff; }

footer .brand-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

footer .brand-foot img { height: 36px; }

footer .brand-foot span {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: #fff;
}

footer p { color: #cbb98e; font-size: 0.95rem; }

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #a8956b;
}

/* Certified badge (text-based stand-in for official Bio Suisse Knospe logo) */
.certified-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--sage);
  border-radius: 999px;
  padding: 10px 20px 10px 12px;
  margin-top: 18px;
}

.certified-badge .mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.certified-badge .text {
  line-height: 1.25;
}

.certified-badge strong {
  display: block;
  color: var(--sage-dark);
  font-size: 0.95rem;
}

.certified-badge span {
  font-size: 0.82rem;
  color: var(--brown-soft);
}

/* Placeholder note visible to owner, not sold as real content */
.todo-note {
  background: #fff4d6;
  border: 1px dashed #d99b2b;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #7a5b12;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 220px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  nav ul.open { display: flex; }
  .menu-toggle { display: block; }
}
