/* Base Styles */
body {
  background-color: #f7f9fc;
  color: #333;
  font-family: "Helvetica Neue", Arial, sans-serif;
  width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(to right, #2c5364, #203a43, #0f2027);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  letter-spacing: 2px;
}

/* Content Container */
.content-wrapper {
  width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Fishing Locations Container */
.fishing-locations {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

/* Location Cards */
.fishing-locations p {
  flex: 1;
  margin: 0;
  padding: 25px 20px;
  color: #333;
  line-height: 1.6;
  background: white;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e1e8ed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.fishing-locations p:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

strong {
  color: #2c5364;
  font-size: 1.3em;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Map Container */
#map {
  width: 800px;
  height: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer*/
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #666;
  font-size: 0.9em;
  border-top: 1px solid #e1e8ed;
}

footer a {
  color: #2c5364;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #203a43;
  text-decoration: underline;
}

/* County Label Styling */
.fishing-locations p br + br {
  display: none;
}

.fishing-locations p br + br + text {
  color: #666;
  font-size: 0.9em;
  display: block;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 960px) {
  body {
    width: 100%;
    padding: 0 20px;
  }

  .content-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 20px;
  }

  .fishing-locations {
    flex-direction: column;
  }

  #map {
    width: 100%;
  }

  h1 {
    font-size: 2em;
  }
}

/* Loading State */
.map-loading {
  background: #f7f9fc;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.map-loading::after {
  content: "Loading Map...";
  color: #2c5364;
  font-weight: 500;
}
