@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

/* Background and Base */
body {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 20px;
}

/* Title */
h1 {
  text-align: center;
  font-size: 40px;
  color: #7FFFD4;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(127, 255, 212, 0.6);
}

/* Filters Section */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.filters label {
  color: #7FFFD4;
  font-size: 14px;
  margin-right: 6px;
}
.filters select {
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #7FFFD4;
  background: #0f0f0f;
  color: #7FFFD4;
  font-family: 'Orbitron', sans-serif;
}

/* Grid of Cards */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Card Style */
.card {
  width: 240px;
  background: rgba(32, 32, 32, 0.8);
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(0, 255, 180, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 255, 180, 0.2);
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 180, 0.6);
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 10px;
}
.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #7FFFD4;
}
.card p {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}
.card p.location {
  font-size: 12px;
  font-family: monospace;
  background-color: #111;
  padding: 6px;
  border-radius: 8px;
  margin-top: 10px;
  color: #888;
  max-height: 48px;
  overflow: hidden;
  word-break: break-word;
}
.card p.location:hover {
  max-height: none;
  background-color: #222;
  color: #fff;
}

/* Footer (optional if used) */
.footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 255, 180, 0.05);
  border-top: 1px solid rgba(0, 255, 180, 0.1);
  border-radius: 20px 20px 0 0;
  color: #7FFFD4;
  box-shadow: 0 -2px 10px rgba(0, 255, 180, 0.1);
}
.footer a {
  color: #7FFFD4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(127, 255, 212, 0.8);
}
.main-menu {
  background: rgba(0, 255, 180, 0.06);
  border-bottom: 1px solid rgba(0, 255, 180, 0.1);
  padding: 12px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 15px rgba(0, 255, 180, 0.1);
  border-radius: 0 0 14px 14px;
  text-align: center;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 30px;
}

.main-menu li a {
  color: #7FFFD4;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.main-menu li a:hover {
  background-color: rgba(127, 255, 212, 0.1);
  box-shadow: 0 0 10px rgba(127, 255, 212, 0.3);
  color: #ffffff;
}