/* Zoo card shell */
.zoo-card {
  background: #121419;
  color: #e9eef5;
  border: 1px solid #222a36;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 14px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  width: 100%;
  display: grid;
  grid-template-columns: 2.5fr 2fr 2.5fr; /* Image | Features | Contact */
  gap: 16px;
}

.zoo-col {
  min-width: 0;
  padding-right: 1px;
  position: relative;
}
.zoo-col + .zoo-col {
  border-left: 1px solid #1d2532;
  padding-left: 8px;
}

/* Zoo Name & Features (Column 2) */
.zoo-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffd369;
  margin-bottom: 10px;
}
.zoo-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  line-height: 18px;
}
.zoo-features li {
  font-size: 16px; 
  font-weight: 700;
  color: #c7d4e3;
}
.view-more-btn {
  margin-top: 8px;
  appearance: none;
  background: linear-gradient(135deg,#4a90e2,#50e3c2);
  color: #ffffff;
  font-weight: 700;
  padding: 5px 14px;
  border: 3px solid #3a78c2;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255,79,112,0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  width: 90%;
  display: block;
  margin: 8px auto 0; /* centers the button */
  text-align: center;
}
.view-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,79,112,0.35);
  background: #005f8d;
}

/* Contact Info (Column 3) */
.zoo-contact h4 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7ea0c4;
  margin-bottom: 10px;
}
.contact-item {
  border: 1px solid #1f2a3a;
  border-radius: 10px;
  padding: 3px 3px;
  margin-bottom: 3px;
}
.contact-item .label {
  color: #8fa7bf;
  font-size: 14px;
  margin-right: 6px;
}
.contact-item .value {
  color: #e9eef5;
  font-weight: 600;
  font-size: 14px;
}
.contact-item a.value {
  color: #ffd369;
  text-decoration: none;
  font-weight: 600;
}
.contact-item a.value:hover {
  text-decoration: underline;
}

/* Image (Column 1) */
.zoo-image img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  border-radius: 8px;
}

/* Responsive stacking */
@media (max-width: 1100px) {
  .zoo-card {
    grid-template-columns: 2fr 2fr 2fr;
  }
  .zoo-contact { grid-column: span 2; }
}
@media (max-width: 720px) {
  .zoo-card {
    grid-template-columns: 1fr;
  }
  .zoo-col + .zoo-col {
    border-left: none;
    padding-left: 0;
  }
}

/* Search Bar */
.gobd-search-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto; /* 3 dropdowns + button */
  gap: 15px;
  align-items: end;
  border: 1px solid #0e1e2d;
  padding: 15px;
  border-radius: 6px;
  background: #0e1e2d;
  margin-bottom: 20px;
}

.gobd-search-bar .search-field,
.gobd-search-bar .search-action {
  display: flex;
  flex-direction: column;
}

.gobd-search-bar label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

.gobd-search-bar select {
  padding: 8px 10px;
  border: 1px solid #666;
  border-radius: 4px;
  background: #1a2a3d;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

.gobd-search-bar select:disabled {
  background: #3a4a5a;
  color: #aaa;
}

.gobd-search-bar button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  background: #e74c3c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  margin-top: 22px;
  transition: background 0.2s ease;
  width: 100%;
}

.gobd-search-bar button:hover {
  background: #c0392b;
}

.dive-details-btn {
    display: block;
    width: 90%;
    margin: 12px auto 0;
    padding: 4px 8px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border: 3px solid #3a78c2;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(135deg,#4a90e2,#50e3c2);
    box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4);
    transition: all 0.3s ease-in-out;

}
.dive-details-btn:hover {
    background: #005f8d;
    transform: translateY(-2px);
}