/* Water Omnis - Custom Styles */
:root {
  --primary: #0A4D68;
  --secondary: #088395;
  --accent: #05BFDB;
  --light: #F0F9FF;
  --dark: #0F172A;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.water-gradient {
  background: linear-gradient(135deg, #0A4D68 0%, #088395 50%, #05BFDB 100%);
}

.hero-bg {
  background-image: linear-gradient(rgba(10, 77, 104, 0.75), rgba(8, 131, 149, 0.65)), url('https://picsum.photos/id/1016/2000/1200');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nav-link {
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #05BFDB;
  transform: translateY(-1px);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #05BFDB, #088395);
  border-radius: 3px;
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

.news-card {
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

/* Water cycle diagram styles */
.water-cycle {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cycle-step {
  transition: all 0.3s ease;
}

.cycle-step:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
}

/* Chart container */
.chart-container {
  position: relative;
  height: 320px;
}