/* Make sure html and body take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Set up flex layout to push footer to the bottom */
body {
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80')
      no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  text-align: center;
}

/* Allow main content to grow */
main {
  flex: 1;
}

/* Header styling */
header {
  background: rgba(0, 0, 0, 0.8);
  padding: 3rem 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
  margin: 0 0 0.5rem;
  font-size: 3rem;
  color: #ffcc00;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px #000;
}

header p {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
  color: #ccc;
}

/* Navigation links */
nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
  transform: scale(1.05);
}

nav img {
  height: 26px;
  width: 26px;
  vertical-align: middle;
  border-radius: 6px;
}

/* Map container and map */
.map-container {
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid #ddd;
  background-color: #fff;
}

#map {
  width: 100%;
  height: 600px;
}

/* Footer styling */
footer {
  background-color: rgba(0, 0, 0, 0.75);
  color: #eee;
  font-size: 1rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #ffcc00;
}
