
/* Base page setup */
body {
  margin: 0;
  padding: 0;
  background: #111 url('bg.jpeg') center -150px / cover no-repeat fixed;

  color: #fff;
  text-align: center;
  min-height: 100vh;
  font-family: sans-serif;
}

/* Container for landing copy and button */
.landing-container {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main header styling */
h1 {
  font-size: 5rem;
  font-family: 'Rubik Moonrocks', cursive;
  letter-spacing: 3px;
  color: white;
  text-shadow: 4px 4px 20px #ff00cc, -4px -4px 20px #00ffee;
  margin: 0 0 0.5rem 0;
}

/* Tagline */
h1 + p {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
  color: #ffefef;
  text-shadow: 1px 1px 5px #000;
}

/* Enlighten Me button */
.zen-button {
  font-family: 'Zen Dots', sans-serif;
  font-size: 1.1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #7F00FF, #E100FF);
  color: #fff;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.zen-button:hover {
  transform: scale(1.07);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

/* Spinner */
#spinner {
  display: none;
  margin-top: 20px;
}

/* Results container */
#storeResultsContainer {
  width: 90%;
  max-width: 1000px;
  margin: 1.5rem auto;
}

/* Table layout */
#storeTable {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  table-layout: fixed;
  text-shadow: 1px 1px 1px rgba(255,255,255,0.4);
}
#storeTable thead {
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(2px);
}
#storeTable tbody tr {
  background-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(2px);
}
#storeTable,
#storeTable th,
#storeTable td {
  font-family: 'Baloo 2', cursive;
}
#storeTable th {
  color: #004CE2;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  border-bottom: 2px solid #004CE2;
}
#storeTable td {
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-align: left;
  word-break: break-word;
}

/* Map container */
#mapContainer {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

/* Pagination */
#pagination button {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(to right, #7F00FF, #E100FF); /* Matches Zen Button gradient */
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Zen Dots', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pagination button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

#pagination button:focus {
  outline: none;
}

#pagination button.active {
  background: #fff;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


/* Responsive tweaks */
@media screen and (max-width:600px) {
  #storeTable th,
  #storeTable td {
    font-size: 0.85rem;
    padding: 8px 6px;
  }
  #map {
    height: 300px;
  }
}

/* Clean up InfoWindow text */
.gm-style .gm-style-iw * {
  text-shadow: none !important;
}
