@charset "utf-8";

/* Fonts */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fb;
  color: #222;
  font-size: 18px;
  line-height: 1.6;
}

/* Header Banner */
header .banner-overlay {
  position: relative;
  width: 100%;
  max-height: 450px;
  overflow: hidden;
}

header img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin: 0;
  padding: 0;
}

/* Main Intro Section */
.intro-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.intro-text p {
  margin-bottom: 20px;
}

/* Map Section */
#USAmap img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
}

footer a {
  color: #00aaff;
  text-decoration: none;
}

footer a:hover {
  color: #66d9ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2em;
  }

  .intro-section {
    padding: 0 15px;
  }

  #USAmap img {
    margin-top: 20px;
  }
}

svg path {
  cursor: pointer;
  transition: fill 0.2s ease;
}

svg path:hover {
  fill: #ffcc00; /* Yellow on hover */
}

svg path.active {
  fill: #ff6600; /* Orange when active */
}
