body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.logo-text {
  color: #c28a00;
}

.main-nav a {
  color: #c28a00;
}

.hero {
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  color: #222;
}

.section-alt {
  background: #ffffff;
}

.card, .contact-form, .claim-box {
  background: #ffffff;
  border-left: 4px solid #c28a00;
  color: #222;
}

.footer {
  background: #eaeaea;
  color: #444;
}
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  background: #ffffff;
  padding: 12px;
  border-radius: 4px;
  border-left: 4px solid #c28a00;
}

.gallery-item img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.gallery-caption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 8px;
}
/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  border: 2px solid #c28a00;
  background: #fff;
  padding: 4px;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}