/* ========================================
   BASE STYLES
   ======================================== */

/* Body Styles */
body {
  background-color: #000000;
  background-image: url();
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.4;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.weather-card h1 {
  font-size: 2em;
  color: #FFFFFF;
  text-align: center;
  margin: 10px 0;
  line-height: 1.2;
}

.weather-card h2 {
  font-size: 1.6em;
  color: #000000;
  text-align: center;
  margin: 10px 0;
  line-height: 1.2;
}

.weather-card h3,
.weather-card h4 {
  font-size: 1.2em;
  color: #FFFFFF;
  margin: 5px 0;
  line-height: 1.2;
}

/* ========================================
   DATA ATTRIBUTION
   ======================================== */

.data-attribution {
  font-size: 0.8em;
  color: #ffffff;
  text-align: center;
  margin-top: 5px;
  font-style: italic;
}

.source-info {
  font-size: 0.7em;
  color: #666666;
  text-align: center;
  margin-top: 2px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
  display: none;
}

.warning-text {
  color: #FFFFFF;
  font-weight: bold;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse {
  0% {
    background-color: #ffbc00;
  }
  50% {
    background-color: #ff0000;
  }
  100% {
    background-color: #ffbc00;
  }
} 