/* shared.css — Design tokens and shared components for Mission Abeille
 * Olive green + honey yellow palette, hexagonal motifs, warm typography
 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --honey: #D4A017;
  --honey-light: #E8B930;
  --honey-glow: rgba(212,160,23,0.15);
  --olive: #556B2F;
  --olive-dark: #3B4D1E;
  --olive-light: #6B8E23;
  --forest: #2C3E2D;
  --forest-light: #3E5240;
  --cream: #FDF6E3;
  --cream-dark: #F0E6CC;
  --charcoal: #2D2A26;
  --warm-white: #FFFCF5;
  --warm-brown: #8B7355;
  --danger: #C0392B;
  --success: #27AE60;
}

body {
  font-family: 'DM Sans', 'Syne', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(44, 62, 45, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo:hover { color: var(--honey); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(253, 246, 227, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--honey); font-weight: 600; }

.nav-cta {
  background: var(--honey) !important;
  color: var(--forest) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--honey-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.3);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ===== SECTION STYLES ===== */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--forest);
  max-width: 700px;
}

/* ===== HEXAGONAL DECORATIONS ===== */
.hex-decoration {
  position: absolute;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.hex-decoration svg polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 56px 40px 32px;
  background: var(--forest);
  color: rgba(253, 246, 227, 0.5);
  text-align: center;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-mission {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253,246,227,0.5);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(253, 246, 227, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--honey); }

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(253,246,227,0.35);
}
.footer-legal a {
  color: var(--honey);
  text-decoration: none;
}
.footer-address {
  font-size: 12px;
  color: rgba(253,246,227,0.35);
  margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--honey);
  color: var(--forest);
}
.btn-primary:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(253, 246, 227, 0.3);
}
.btn-secondary:hover {
  border-color: var(--honey);
  color: var(--honey);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(44, 62, 45, 0.98);
    padding: 20px;
    gap: 16px;
  }
  .nav-hamburger { display: block; }
  .site-footer { padding: 36px 20px 24px; }
  .footer-links { gap: 16px; }
}
