/* Custom styles for Ghetto Burger */

/* Smooth scrolling is handled via HTML scroll-behavior */

/* Ensure all text meets WCAG AA contrast */
.text-cream-50 { color: #fefdf8; }
.text-cream-100 { color: #fdf9f0; }
.text-cream-200 { color: #faf3e0; }
.text-cream-300 { color: #f5e6c8; }
.text-cream-400 { color: #edce9a; }
.text-cream-500 { color: #e0b06e; }

.text-emerald-400 { color: #34d399; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }

/* Mobile menu animation */
.menu-line {
  transform-origin: center;
}

#menuToggle.active .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#menuToggle.active .menu-line:nth-child(2) {
  opacity: 0;
}

#menuToggle.active .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
  margin-left: 0;
}

/* Gold gradient text utility */
.gold-gradient-text {
  background: linear-gradient(135deg, #c88a3f 0%, #f5e6c8 50%, #c88a3f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ensure map is readable */
iframe[title] {
  border-radius: 0.75rem;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  nav, .cta-button, #menuToggle { display: none; }
  body { background: white; color: black; }
  .hero-gradient { background: #064e3b !important; }
}
