:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

.location-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.location-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.location-hero p {
  font-size: 1.2rem;
  max-width: 1200px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--background-light);
}

.location-map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-map {
  width: 100%;
  max-width: 1800px;
  height: 400px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero-contact {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.location-details {
  text-align: center;
  font-size: 1rem;
  color: var(--text-dark);
}

.hero-contact:hover {
  background-color: rgba(0, 0, 0, 0.75);
}


@media (max-width: 600px) {
  .hero-map {
    height: 300px;
  }

  .location-details p {
    font-size: 0.9rem;
  }
}

