/* Ayam Geprek Istimewa - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile nav overlay */
.nav-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu slide */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}

/* Hero image overlay gradient */
.hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

/* Category pill active state */
.category-pill.active {
  background-color: #045739;
  color: #fff;
}

/* Menu card hover */
.menu-card {
  transition: box-shadow 0.2s ease;
}
.menu-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Spicy badge colors */
.badge-pedas { background-color: #ef4444; color: #fff; }
.badge-pedas-sedang { background-color: #F7941E; color: #fff; }
.badge-extra-pedas { background-color: #991b1b; color: #fff; }

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e5e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Location card map iframe */
.map-container iframe {
  border: 0;
  border-radius: 0.5rem;
}

/* Contact form focus */
.form-input:focus {
  outline: none;
  border-color: #045739;
  box-shadow: 0 0 0 2px rgba(4, 87, 57, 0.15);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.1);
}

/* Fade in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Image cover for food photos */
.food-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Blog card hover */
.blog-card {
  transition: box-shadow 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Blog prose - styles for rendered markdown content */
.blog-content h2 { font-size: 1.25rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.5rem; color: #1c1917; }
.blog-content h3 { font-size: 1.1rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.5rem; color: #1c1917; }
.blog-content p { margin-bottom: 0.75rem; line-height: 1.7; color: #57534e; }
.blog-content ul, .blog-content ol { margin-bottom: 0.75rem; padding-left: 1.5rem; color: #57534e; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { margin-bottom: 0.25rem; line-height: 1.6; }
.blog-content a { color: #045739; text-decoration: underline; }
.blog-content a:hover { color: #034a2f; }
.blog-content strong { color: #1c1917; }
.blog-content blockquote { border-left: 3px solid #F7941E; padding-left: 1rem; margin: 1rem 0; color: #78716c; font-style: italic; }
.blog-content img { border-radius: 0.5rem; margin: 1rem 0; max-width: 100%; }
.blog-content hr { border: none; border-top: 1px solid #e7e5e4; margin: 1.5rem 0; }
