/* Custom Styles for Richland Chambers Cabin */

@layer base {
  body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  }
}

/* Custom transitions and hover states */
.gallery-item {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -8px rgba(10, 39, 51, 0.15);
}

/* Accordion transition */
.faq-answer {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
