/* Custom Styles for Blueeyes Pizzeria - LIGHT THEME */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

body {
  font-family: var(--font-sans);
  background-color: #f8fafc; /* slate-50 */
  color: #0f172a; /* slate-900 */
  overflow-x: hidden;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Light Glassmorphism / Elevated Panels */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.glass-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.4); /* blue-500 */
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
}

.glass-input {
  background: #ffffff;
  border: 1px solid #cbd5e1; /* slate-300 */
  color: #0f172a; /* slate-900 */
  transition: all 0.2s ease;
}

.glass-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.glass-input::placeholder {
  color: #94a3b8; /* slate-400 */
}

/* Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.pulse-blue {
  animation: pulse-ring 2s infinite;
}

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

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes flash-red {
  0%, 100% {
    background-color: #ff4d4d; /* bright red */
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }
  50% {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  }
}

.animate-flash-red {
  animation: flash-red 0.8s ease-in-out infinite !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9; /* slate-100 */
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* slate-300 */
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* slate-400 */
}

/* Leaflet Map overrides for light theme */
.leaflet-container {
  background: #e2e8f0 !important;
}

.leaflet-popup-content-wrapper {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.leaflet-popup-tip {
  background: #ffffff !important;
}

/* Simulated WhatsApp Notification Container */
#whatsapp-simulation-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 360px;
  width: calc(100% - 48px);
}
