/* Global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eef1f5;
  color: #222;
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0 0 10px 0;
  font-weight: 600;
}

a {
  color: #0055aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: #1a1a1a;
  color: white;
  padding: 20px 10px;
  text-align: center;
  border-bottom: 4px solid #0055aa;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 90px;
  margin: 10px;
}

.header-text h1 {
  font-size: 28px;
}

.sponsored {
  font-size: 14px;
  opacity: 0.8;
}

.top-links {
  margin-top: 15px;
}

.top-links a {
  margin: 0 10px;
  color: #66aaff;
  font-weight: bold;
}

/* Main */
main {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Section */
section {
  background: white;
  padding: 18px;
  border-radius: 6px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}

/* Spotter Info */
.spotter-status {
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
}

.status-green {
  background: #e8f8e8;
  border-left: 6px solid #2e8b57;
}

.status-yellow {
  background: #fff7d6;
  border-left: 6px solid #e6b800;
}

.status-red {
  background: #ffe5e5;
  border-left: 6px solid #cc0000;
}

/* Alerts */
.alerts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alerts-list li {
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 5px;
  background: #f7f7f7;
  border-left: 6px solid #888;
}

/* Severity colors */
.sev-extreme {
  border-left-color: #7a0000;
  background: #ffd6d6;
}

.sev-severe {
  border-left-color: #cc0000;
  background: #ffe5e5;
}

.sev-moderate {
  border-left-color: #e6b800;
  background: #fff4cc;
}

.sev-minor {
  border-left-color: #2e8b57;
  background: #e6f7e6;
}

.sev-unknown {
  border-left-color: #666;
  background: #e6e6e6;
}

/* Imagery */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.image-grid div {
  width: 48%;
  margin-bottom: 20px;
}

.image-grid img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ddd;
}

/* Forecast */
.forecast-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forecast-item {
  background: #ffffff;
  padding: 12px;
  margin-bottom: 12px;
  border-left: 5px solid #0055aa;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 14px;
  border-top: 4px solid #0055aa;
}

.site-footer a {
  color: #66aaff;
}

/* Mobile */
@media (max-width: 600px) {
  .logo {
    height: 70px;
  }

  .header-text h1 {
    font-size: 22px;
  }

  .image-grid div {
    width: 100%;
  }
}
