/* Custom CSS - Grosir Dimsum (Red Theme) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&display=swap');

:root {
  --primary-950: #450a0a;
  --primary-900: #7f1d1d;
  --primary-800: #991b1b;
  --primary-700: #b91c1c;
  --primary-600: #dc2626;
  --primary-500: #ef4444;
  --primary-400: #f87171;
  --primary-100: #fee2e2;
  --primary-50: #fef2f2;
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1c1917;
  background-color: #fffaf0;
  overflow-x: hidden;
}

.font-serif-heading {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fee2e2;
}
::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b91c1c;
}

/* Gradients & Shadows */
.bg-red-gradient {
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #dc2626 100%);
}

.bg-hero-gradient {
  background: linear-gradient(rgba(69, 10, 10, 0.90), rgba(153, 27, 27, 0.85));
}

.bg-red-card {
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}

.shadow-red-glow {
  box-shadow: 0 10px 30px -5px rgba(220, 38, 38, 0.25);
}

.shadow-red-glow-lg {
  box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.38);
}

.shadow-amber-glow {
  box-shadow: 0 8px 25px -4px rgba(245, 158, 11, 0.4);
}

/* Floating Animation */
@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatAnimation 4s ease-in-out infinite;
}

/* Steam Animation */
@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-20px) scaleX(1.3);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scaleX(1.8);
  }
}

.steam-1 {
  animation: steamRise 3s infinite ease-out;
}
.steam-2 {
  animation: steamRise 3.5s infinite ease-out 0.8s;
}
.steam-3 {
  animation: steamRise 4s infinite ease-out 1.5s;
}

/* Quote Icon Decoration */
.quote-icon-bg {
  color: #fee2e2;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon-bg {
  color: #fecaca;
  transform: scale(1.1);
}

/* Smooth Transitions */
.transition-smooth {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-dark {
  background: rgba(69, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Badge Pulse */
@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.badge-pulse {
  animation: pulseBadge 2s infinite ease-in-out;
}
