/* Content for faq_styles.css */
/* Copy this into a new file named faq_styles.css and place it in your site's root or CSS folder. 
   This separates styles for easy management. You can edit this file independently without touching the HTML. */

.faq-container {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  color: #333;
}

h1, h2 {
  color: #333;
}

details {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: #007bff;
}

p {
  margin: 10px 0;
}

.pretty-list {
  list-style-type: none; /* Hide default bullets/numbers */
  padding-left: 20px;
}

.pretty-list li {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover transitions */
  will-change: opacity, transform; /* Optimize for animations */
}

.pretty-list li.animate-list {
  animation: fadeIn 0.5s ease forwards; /* Applied via JS on open */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pretty-list li:hover {
  background-color: #f0f0f0; /* Light gray background on hover */
  transform: scale(1.05); /* Slight grow effect */
}

.tour-link {
  background-color: #e0f7ff; /* Light blue background for the tour item */
  padding: 4px 8px;
  border-radius: 4px;
  color: #007bff;
  text-decoration: none;
}

.tour-link:hover {
  background-color: #b3e5fc; /* Darker blue on hover */
  text-decoration: underline;
}