/* Bootstrap-first styles for Skylark Motel */
:root {
  --brand-evergreen: #123424;
  --brand-forest: #0f2b20;
  --brand-gold: #d8a657;
  --brand-cream: #f6f1e7;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--brand-cream);
  color: #0d1a14;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #0d6efd;
  color: #fff;
  z-index: 1050;
  border-radius: 6px;
}

.hero {
  min-height: 70vh;
  background:
    linear-gradient(140deg, rgba(18, 52, 36, 0.9) 0%, rgba(15, 43, 32, 0.7) 55%, rgba(15, 43, 32, 0.5) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 35%),
    #0f2b20;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(18, 52, 36, 0.92) 0%, rgba(18, 52, 36, 0.72) 55%, rgba(18, 52, 36, 0.48) 100%);
}

.hero .badge {
  letter-spacing: 0.01em;
  background: rgba(246, 241, 231, 0.92) !important;
  color: #0f2b20;
}

.badge-hero {
  background: rgba(246, 241, 231, 0.97);
  color: #0b1c14;
  border: 1px solid rgba(13, 42, 28, 0.08);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gallery-card img {
  border-radius: 12px;
  cursor: zoom-in;
}

.gallery-card.image-fallback {
  display: grid;
  place-items: center;
  background: #e9ecef;
  color: #6c757d;
  font-weight: 600;
}

.amenity-card .card-body {
  padding: 12px 16px;
}

.weather-embed iframe {
  border: 0;
  border-radius: 10px;
}

#galleryModalImg {
  background: #000;
  max-height: 80vh;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-modal-body {
  max-height: calc(100vh - 140px);
  overflow: auto;
}

/* Section surfaces */
#amenities,
#local-info {
  background: linear-gradient(180deg, rgba(18, 52, 36, 0.04), rgba(18, 52, 36, 0.08));
}

section .card {
  border: 1px solid rgba(18, 52, 36, 0.08);
  border-radius: 14px;
}

.card-body h6,
.card-body h5,
.card-body h3 {
  color: #0f2b20;
}

.navbar,
.bg-dark {
  background-color: var(--brand-forest) !important;
}

.btn-primary {
  background-color: var(--brand-evergreen);
  border-color: var(--brand-evergreen);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #0d2a1c;
  border-color: #0d2a1c;
}

.btn-outline-secondary {
  color: var(--brand-forest);
  border-color: var(--brand-forest);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus-visible {
  background-color: var(--brand-forest);
  color: #fff;
}

.badge.bg-info.text-dark {
  background-color: rgba(216, 166, 87, 0.18) !important;
  color: #7a5a1e !important;
}

@media (min-width: 992px) {
  .ratio-lg-4x3 {
    --bs-aspect-ratio: 75%;
  }
}

@media (max-width: 575px) {
  .navbar .btn-sm {
    width: 100%;
    margin-top: 6px;
  }
}

