/* Basic modern, clean styles */
:root {
  --bg: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #60a5fa;
  --accent-2: #22d3ee;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #060913 400px);
}

.wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
  background: rgba(6,9,19,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand {
  margin: 0; padding: 16px 0 6px 0;
  font-weight: 800; letter-spacing: 0.3px;
}

.nav { display: flex; gap: 8px; padding: 0 0 12px 0; flex-wrap: wrap; }
.nav-btn {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, #0b1224, #0b0f1a);
  color: var(--text);
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  transition: transform .05s ease, border-color .2s ease;
}
.nav-btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.2); }
.nav-btn.active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }

main { padding: 28px 0 56px; }
.tab { display: none; }
.tab.active { display: block; }

h2 { margin-top: 0; }
.highlights { display:grid; gap:8px; padding-left: 18px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

.results { display: grid; gap: 14px; }
.result-card {
  background: linear-gradient(180deg, #0e162d, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
}
.result-card .meta { color: var(--muted); font-size: 14px; }

.contact-form {
  display: grid; gap: 12px;
  background: linear-gradient(180deg, #0e162d, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
}
.contact-form label { display: grid; gap: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  background: #0b1020; color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px; border-radius: 10px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

.contact-form button {
  justify-self: start;
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(120% 120% at 0% 0%, var(--accent), var(--accent-2));
  color: #081321; font-weight: 800; letter-spacing: .3px;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
}
.form-hint { color: var(--muted); font-size: 13px; margin: 6px 0 0; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0; color: var(--muted);
}
.note { color: var(--muted); }

.admin-hint {
  margin-top: 12px;
  color: var(--muted);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 12px;
}

.photo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.photo-row img {
  flex: 1 1 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
}

/* Ensure the row fits the screen exactly on very small devices */
@media (max-width: 500px) {
  .photo-row {
    gap: 6px;
    padding: 0 4px;
  }
  .photo-row img {
    width: 50%;
    flex: 1 1 50%;
  }
}