body {
  background: none !important;
  font-family: Arial, sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

header {
  text-align: center;
  padding: 2rem;
}

.about-header {
  display: flex;
  align-items: center; /* Align items vertically */
  gap: 20px; /* Space between text and logo */
}

.about-header h1 {
  font-size: 48px;
  color: #ff4c4c; /* match your red tone */
  margin: 0;
}

/* Link styling + hover "pop" */
.map-link {
  color: #ff5ff9;
  font-family: 'Bowlby One SC', sans-serif;
  text-decoration: none;
  display: inline-block;              /* lets transform animate nicely */
  transition: transform .25s ease, 
              text-shadow .25s ease, 
              color .25s ease;
  cursor: pointer;
}

.map-link:hover,
.map-link:focus-visible {
  text-decoration: underline;         /* shows it's a link */
  text-shadow: 0 0 8px #ff5ff9;       /* subtle glow */
  transform: scale(1.05);             /* pop */
}


.logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}
.contact-section {
  padding: 2rem;
  background-color: #1e1e1e;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
  color: #ff4f5a;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #ff4f5a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e03e48;
}

.about-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  line-height: 1.6;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.about-section h2 {
  color: #ff4f5a;
  margin-bottom: 1rem;
}

.about-section a {
  color: #ff4f5a;
  text-decoration: underline;
}

h1 {
  font-size: 3rem;
  color: #ff4f5a;
}

p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #ff4f5a;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e03e48;
}
 html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#map {
  flex: 1; /* take up remaining space */
  width: 100%;
}

footer {
  height: 60px;
  flex-shrink: 0; /* prevent footer from collapsing */
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 14px;
}


.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 0.4rem; /* add extra space from the bottom */
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* Adjust map height to leave room for footer */
#map {
  flex: 1; /* map fills remaining space */
}

/* Container for the map page */
.map-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Search bar section */
.search-bar {
  padding: 1rem;
  background-color: #1e1e1e;
  border-bottom: 1px solid #333;
  text-align: center;
}

.search-bar h2 {
  color: #ff4f5a;
  margin-bottom: 0.5rem;
}

.search-bar input {
  padding: 0.6rem;
  width: 250px;
  max-width: 90%;
  margin-right: 0.5rem;
  border-radius: 6px;
  border: none;
  background-color: #2c2c2c;
  color: #fff;
}

.search-bar button {
  padding: 0.6rem 1.2rem;
  background-color: #ff4f5a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background-color: #e03e48;
}


/* Override footer positioning for map page */
.map-container footer {
  position: relative;
}

#filter-control {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}
#filter-control select {
  padding: 2px 6px;
  border-radius: 4px;
  border: none;
}

@media (max-width: 640px) {
  #filter-control {
    font-size: 16px; /* larger base text */
    padding: 14px 18px; /* more space inside */
    gap: 12px;
  }

  #filter-control select {
    font-size: 16px;     /* bigger dropdown text */
    padding: 6px 10px;   /* more touch area */
  }

  #filter-control label {
    font-size: 16px;
  }
}

/* === Force the poster background (place these LAST) === */
html, body {
  margin: 0;
  height: 100%;
  background: transparent !important; /* neutralize any earlier body/html background */
}

body {
  position: relative; /* create a containing block for the bg layer */
}

/* Paint the background as a fixed layer behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;                  /* top:0 right:0 bottom:0 left:0 */
  background-image: url("background.png?v=2"); /* cache-bust just in case */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;               /* sit behind all content */
  pointer-events: none;
}

/* TEMP DIAGNOSTIC — do not leave this in permanently */
* { background-image: none !important; background-color: transparent !important; }
