/* Custom Styles for Fresh Catch & Farm Delivery Concept */

@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;1,600&display=swap');

:root {
  --primary-glow: rgba(6, 182, 212, 0.35);
  --accent-glow: rgba(16, 185, 129, 0.25);
  --card-bg: rgba(15, 23, 42, 0.85);
  --card-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0b1120;
  color: #f8fafc;
  overflow-x: hidden;
}

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

/* Glassmorphism */
.glass-panel {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-hover {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 30px -8px rgba(6, 182, 212, 0.18);
}

.glass-input {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.glass-input:focus {
  border-color: #06b6d4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b1120;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0ea5e9;
}

/* Leaflet Map overrides */
#coverage-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 1rem;
  z-index: 10;
}

.leaflet-container {
  background-color: #0f172a !important;
}

.leaflet-popup-content-wrapper {
  background: #0f172a !important;
  color: #f8fafc !important;
  border: 1px solid rgba(6, 182, 212, 0.3) !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5) !important;
}

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

/* Badge Pulse Animation */
@keyframes soft-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
}

.animate-soft-pulse {
  animation: soft-pulse 2.5s infinite ease-in-out;
}

/* Concept Demo Banner */
.demo-badge-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 50%, #10b981 100%);
}

/* Product Card Image Zoom */
.product-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.product-card-img-wrapper img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.06);
}

/* Custom modal transitions */
.modal-backdrop {
  background-color: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
}
