/* style/resources-8-day-entertainment-guide.css */

:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-dark-text: #333333;
  --page-light-text: #ffffff;
  --page-background-color: #f8f8f8; /* Light background for light sections */
  --page-dark-background: #1a1a1a; /* Slightly lighter than body for contrast, but still dark */
  --page-card-background: rgba(255, 255, 255, 0.1); /* Semi-transparent for dark background */
  --page-login-color: #EA7C07;
}

.page-resources-8-day-entertainment-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-light-text); /* Default text color for the main content on dark body background */
  background-color: #121212; /* Directly use body background color from shared.css */
}

.page-resources-8-day-entertainment-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  overflow: hidden;
  background-color: var(--page-primary-color); /* Fallback, image will cover */
  color: var(--page-light-text);
}

.page-resources-8-day-entertainment-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-8-day-entertainment-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, no color change */
}

.page-resources-8-day-entertainment-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-8-day-entertainment-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-light-text);
  line-height: 1.2;
}

.page-resources-8-day-entertainment-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--page-light-text);
  opacity: 0.9;
}

.page-resources-8-day-entertainment-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-resources-8-day-entertainment-guide__btn-primary,
.page-resources-8-day-entertainment-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-8-day-entertainment-guide__btn-primary {
  background-color: var(--page-primary-color);
  color: var(--page-light-text);
  border: 2px solid var(--page-primary-color);
}

.page-resources-8-day-entertainment-guide__btn-primary:hover {
  background-color: #1e87c2;
  border-color: #1e87c2;
  transform: translateY(-2px);
}