* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 2rem;
  color: #333;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

header h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.date {
  font-size: 2rem;
  opacity: 0.9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

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

.card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #667eea;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card h2 svg {
  width: 28px;
  height: 28px;
}

/* Weather Card */
.weather-current {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.weather-icon {
  font-size: 5rem;
}

.weather-temp {
  font-size: 4rem;
  font-weight: 700;
  color: #667eea;
}

.weather-desc {
  font-size: 1.5rem;
  color: #666;
  text-transform: capitalize;
}

.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.weather-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.weather-forecast {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.forecast-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.forecast-time {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #667eea;
}

.forecast-temp {
  font-size: 1.5rem;
  font-weight: 700;
}

.forecast-desc {
  font-size: 0.9rem;
  color: #666;
  text-transform: capitalize;
}

/* Closures Card */
.closures-list, .restrictions-list {
  margin-bottom: 1rem;
}

.closures-list h3, .restrictions-list h3 {
  font-size: 1.3rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.closures-list ul, .restrictions-list ul {
  list-style: none;
  padding-left: 0;
}

.closures-list li, .restrictions-list li {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: #fee;
  border-left: 4px solid #e74c3c;
  border-radius: 4px;
  font-size: 1.2rem;
}

.restrictions-list li {
  background: #fff3cd;
  border-left-color: #ff9800;
}

/* Menu Card */
.menu-item {
  margin-bottom: 1.5rem;
}

.menu-item h3 {
  font-size: 1.3rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.menu-sides {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.menu-sides span {
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 1.1rem;
}

.menu-notes {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-style: italic;
  color: #666;
}

/* Schedule Card */
.schedule-times {
  margin-bottom: 1rem;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.schedule-time {
  font-weight: 700;
  color: #667eea;
  font-size: 1.3rem;
  min-width: 80px;
}

.schedule-event {
  flex: 1;
}

.schedule-event-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.schedule-event-location {
  font-size: 1rem;
  color: #666;
}

.schedule-notes {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* Utility Classes */
.loading, .empty, .error {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-size: 1.2rem;
}

.error {
  color: #e74c3c;
}

/* Footer */
footer {
  text-align: center;
  color: white;
  font-size: 1.2rem;
}

footer p {
  margin-bottom: 0.5rem;
}

.staff-link a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.staff-link a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  .date {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .weather-current {
    flex-direction: column;
    gap: 1rem;
  }

  .weather-forecast {
    grid-template-columns: 1fr;
  }
}
