/* Attraction Detail Page Styles */

.attraction-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl);
}

.attraction-hero__content {
  max-width: 800px;
  color: white;
}

.attraction-hero__badge {
  background: var(--sunset-coral);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.attraction-hero__title {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.attraction-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.attraction-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0 var(--space-2xl);
}

@media (max-width: 900px) {
  .attraction-content {
    grid-template-columns: 1fr;
  }
  .attraction-hero {
    height: 300px;
    padding: var(--space-lg);
  }
  .attraction-hero__title {
    font-size: 1.8rem;
  }
}

.attraction-main h2 {
  color: var(--ocean-deep);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.attraction-main h2:first-child {
  margin-top: 0;
}

.attraction-main p {
  margin-bottom: var(--space-md);
  line-height: 1.75;
  color: var(--text-body);
}

.attraction-main strong {
  color: var(--ocean-deep);
}

.attraction-sidebar {
  position: sticky;
  top: var(--space-lg);
  align-self: start;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid var(--sand-medium);
  background: var(--sand-light);
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

.map-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.map-btn {
  flex: 1;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.map-btn--google {
  background: #4285f4;
  color: white;
}
.map-btn--google:hover {
  background: #3367d6;
  color: white;
}

.map-btn--apple {
  background: #333;
  color: white;
}
.map-btn--apple:hover {
  background: #000;
  color: white;
}

.info-card {
  background: var(--sand-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid var(--sand-medium);
}

.info-card__title {
  font-size: 1rem;
  color: var(--ocean-deep);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--sand-medium);
}

.info-card__content {
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-card__content p {
  margin-bottom: var(--space-sm);
}

.info-card__content p:last-child {
  margin-bottom: 0;
}

.info-card__content strong {
  color: var(--ocean-deep);
}

.info-card__content a {
  color: var(--sunset-coral);
}

.demographic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.demographic-tag {
  background: var(--ocean-light);
  color: var(--ocean-deep);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.demographic-tag--primary {
  background: var(--sunset-coral);
  color: white;
}

.packing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.packing-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--sand-light);
}

.packing-list li:last-child {
  border-bottom: none;
}
