/* Extracted from index.html style block — Phase 5 */

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #2C1A0E; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; border-radius: 4px; }

/* Gallery hover */
.gallery-item img { transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.03); }

/* FAQ accordion */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 800px; }

/* Sticky sidebar */
.booking-card { position: sticky; top: 88px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: #2C1A0E;
  font-weight: 600;
  border: 2px solid #4F6E55;
  border-radius: 0.5rem;
  z-index: 10000;
  overflow: visible;
}

/* Focus-visible fallback */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Form validation */
.field-error { border-color: #dc2626 !important; }
.error-msg { color: #dc2626; font-size: 11px; margin-top: 3px; display: block; }
