/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Georgia', serif;

  /* Background image with subtle overlay */
  background-image: url('mapbackground.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(183, 198, 139, 0.5); /* translucent green overlay */
  z-index: -1;
  pointer-events: none;
}

body {
  padding: 2rem 1rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Panel styling */
.panel {
  max-width: 1200px;
  width: 92%;
  background-color: #696969;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 40px 40px 60px 40px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #e4fc94;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #c8e664;
  text-decoration: underline;
}

/* Header text */
.header h1 {
  color: #e4fc94;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header .description {
  color: #dcd8d0;
  font-size: 1.1rem;
}

/* Map wrapper inside panel */
.map-wrapper {
  width: 100%;
  height: 600px;  /* made taller */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Cards section */
.cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #e4fc94;
  color: #000000;
  text-decoration: none;
  padding: 2rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-weight: normal;
  line-height: 1.4;
  font-size: 1rem;
  margin: 0;
}

/* Footer */
footer {
  color: #dcd8d0;
  text-align: left;
  font-size: 0.95rem;
  padding-top: 5px;
  padding-bottom: 5px;
}

footer a {
  color: #e4fc94;
  text-decoration: none;
}

footer a:hover {
  color: #c8e664;
  text-decoration: underline;
}


hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 15px;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .cards {
    flex-direction: column;
    gap: 1rem;
  }

  .header {
    text-align: center;
  }

  .map-wrapper {
    height: 450px;
  }
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: transparent;
  border-radius: 0;
  display: block;
}

.description a {
  color: #e4fc94; /* mint green from your footer links */
  text-decoration: underline; /* optional, for clarity */
}
