/* Homepage-only CSS */
.site-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .site-content {
    padding: 0 10px;
  }
}

body {
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #2B2D42;
  background-color: white;
  text-align: justify;
}

h1 {
  font-family: "Georgia", serif;
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-align: center;
}

h2 {
  font-family: "Georgia", serif;
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 1rem;
  text-align: center;
}

.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to right, white 0%, transparent 5%, transparent 95%, white 100%),
    linear-gradient(to bottom, transparent 95%, white 100%);
}

.hero-img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  color: #2B2D42;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 1),
    0 0 18px rgba(255, 255, 255, 0.8),
    0 0 32px rgba(255, 255, 255, 0.6);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
}

.featured {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.featured a {
  display: inline-block;
  background: #eee;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
}

.featured a img,
.city-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.cities {
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  text-align: center;
}

.city-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.city {
  background: #eee;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  min-width: 120px;
  font-weight: bold;
  color: #333;
}

.city-image {
  position: relative;
  display: inline-block;
}

.city-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.68em;
  font-weight: bold;
  text-shadow: 0 0 4px black, 0 0 8px black;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8em;
  }
  .hero {
    padding: 1rem;
  }
  .hero p {
    font-size: 1em;
	  margin-top: 0;
	  white-space: nowrap;
  }
  .city-label {
    font-size: 1.2em;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .hero p {
    margin-top: 0;
	  white-space: nowrap;
	  display: inline-block;
  }
}
@media (min-width: 769px) {
  .cities .city-image img {
    width: 320px;
    height: auto;
  }
}