/* Current Weather Styles
-------------------------------------------------- */
.current-weather {
  align-items: center;
  background-color: #e3f2fd;
  background-image: url('https://pub-677f1f870b70400b898568c077178e38.r2.dev/bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.current-weather::before {
  background: linear-gradient(115deg, rgba(7, 33, 64, 0.62) 0%, rgba(9, 55, 100, 0.45) 48%, rgba(22, 111, 177, 0.34) 100%);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.temp-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.temp-weather {
  align-items: flex-end;
  display: flex;
  gap: var(--spacing-md);
}

.temp {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.weather {
  align-items: center;
  color: #f5fbff;
  display: flex;
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.detail-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.detail-item i {
  font-size: 15px;
  margin-right: var(--spacing-xs);
}

.icon-section img {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
  height: 80px;
  width: 80px;
}
