:root {
  color-scheme: light;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fff7c2, #ffd66b 40%, #ffb347);
  color: #4b2e1a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: inherit;
  background: inherit;
  color: inherit;
}

body a {
  color: #0b5fff;
}

body a:hover {
  color: #0846cc;
}

.page {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 18px 40px rgba(75, 46, 26, 0.2);
  text-align: center;
  margin-bottom: 1.5rem;
}

.badge {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #a65b00;
}

h1 {
  font-size: 3rem;
  margin: 0.3rem 0 0.8rem;
}

.intro {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 1.2rem;
}

.button,
.site-button {
  display: inline-block;
  background: #f28c28;
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover,
.site-button:hover {
  background: #e46f0c;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(75, 46, 26, 0.12);
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid article {
  background: #fff8e7;
  border-radius: 16px;
  padding: 1rem;
}

.page__footer {
  color: #555;
  margin-top: 1rem;
}

/* Small emoji icon used for map and link buttons */
.map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 10px rgba(75,46,26,0.08);
  font-size: 18px;
  color: inherit;
}
.map-icon span {
  display: none;
}

/* Card link styling used in the grid for clickable emoji-cards */
.card.grid article a.card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.card.grid article a.card-link h3 {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.1rem;
  color: #4b2e1a;
}
.card.grid article a.card-link p {
  margin: 0;
  color: #6c4d2c;
  font-size: 0.95rem;
}
