/* Boats Middle East - Custom UI & Animation Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #0b2545;
  --color-dark-bg: #134074;
  --color-secondary: #0284c7;
  --color-accent: #0ea5e9;
  --color-bg-light: #f8fafc;
  --theme-gradient: linear-gradient(135deg, #0b2545, #134074);
}

body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
}

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

/* Theme Gradient Utilities */
.bg-theme-gradient {
  background: linear-gradient(135deg, #111b21 0%, #0b2545 55%, #134074 100%) !important;
}

.theme-navy-gradient {
  background: linear-gradient(135deg, #111b21 0%, #0b2545 55%, #134074 100%) !important;
}

.footer-theme-gradient {
  background: #111b21 !important;
}

.btn-theme-gradient {
  background: linear-gradient(135deg, #111b21 0%, #0b2545 55%, #134074 100%) !important;
  color: #ffffff !important;
}

#main-navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease-in-out;
}

#main-navbar.scrolled {
  background: linear-gradient(135deg, rgba(17, 27, 33, 0.96) 0%, rgba(11, 37, 69, 0.95) 55%, rgba(19, 64, 116, 0.95) 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px -5px rgba(17, 27, 33, 0.7);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.page-header-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Pulse animation */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* Hide any Leaflet Attribution, Watermarks or API Notices */
.leaflet-control-attribution,
.leaflet-attribution-flag,
.leaflet-bottom.leaflet-right .leaflet-control-attribution {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Map Dark Theme Tile Styling */
.dark-map-tiles .leaflet-tile {
  filter: brightness(0.65) invert(1) contrast(3.5) hue-rotate(205deg) saturate(0.25);
  -webkit-filter: brightness(0.65) invert(1) contrast(3.5) hue-rotate(205deg) saturate(0.25);
}

.custom-map-node {
  background: transparent !important;
  border: none !important;
}

/* Glass & Stats Card Styling */
.glass {
  background: #ffffff1a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md, 0.75rem);
  transition: transform var(--transition-normal, 0.3s ease), box-shadow var(--transition-normal, 0.3s ease);
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}
