/* ===================================
   Pizzeria Margherita - Custom CSS
   =================================== */

/* Base Reset & Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1A1A1A;
  background-color: #FFFAF5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

.font-script {
  font-family: 'Dancing Script', cursive;
}

/* ===================================
   Backgrounds
   =================================== */
.hero-bg {
  background-image: 
    linear-gradient(rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.65)), 
    url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.about-bg {
  background-image: 
    linear-gradient(rgba(255, 250, 245, 0.88), rgba(255, 250, 245, 0.92)), 
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

/* ===================================
   Interactive Components
   =================================== */
.menu-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(230, 57, 70, 0.25);
}

.cta-primary {
  background-color: #E63946;
  transition: all 0.25s ease;
}

.cta-primary:hover {
  background-color: #C2212F;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(230, 57, 70, 0.4);
}

.cta-whatsapp {
  background-color: #25D366;
  transition: all 0.25s ease;
}

.cta-whatsapp:hover {
  background-color: #1FB757;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.45);
}

/* ===================================
   Scrollbars & Utilities
   =================================== */
.badge-scroll::-webkit-scrollbar {
  height: 6px;
}

.badge-scroll::-webkit-scrollbar-thumb {
  background: #E63946;
  border-radius: 3px;
}

/* ===================================
   Animations
   =================================== */
.floating-wa {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}