/* Team Perkins starter site styles */
:root {
  color-scheme: light;
  font-family: Inter, system-ui, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #fff;
}

.site-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.site-header p {
  margin: 0;
  max-width: 40rem;
  line-height: 1.6;
}

main {
  padding: 3rem 0;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.map-header {
  margin-bottom: 1rem;
}

.map-header p {
  max-width: 42rem;
  color: #475569;
  line-height: 1.7;
}

.map-panel {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #cbd5e1;
  border-radius: 2rem;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.world-map-image img {
  display: block;
  width: 100%;
  height: auto;
}

.countries h3 {
  margin-bottom: 0.5rem;
}

.subtitle {
  margin: 0 0 1.5rem;
  color: #64748b;
  max-width: 42rem;
  line-height: 1.7;
}

.travel-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.travel-card {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.travel-card h4 {
  margin: 0;
  font-size: 1.15rem;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

