/* ===== CUSTOM STYLES ===== */

/* Navbar transition for scroll state */
#navbar.scrolled {
  background: rgba(254, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(22, 101, 52, 0.08);
}

.nav-logo-text {
  color: #14532d;
}

.nav-link {
  color: #166534;
}

/* Smooth scroll offset for anchored links */
section[id] {
  scroll-margin-top: 80px;
}

/* Selection color */
::selection {
  background: #bbf7d0;
  color: #14532d;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile menu animation */
#mobile-menu {
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles */
@media print {
  nav, .hero-bg, #hours, footer { display: none; }
  body { background: white; color: black; }
}
