/* ============================================
   ATACAMA DARK SKY — Experience Page Styles
   ============================================ */

/* ---- Hero (shorter) ---- */
.exp-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.exp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/regular.webp');
  background-size: cover;
  background-position: center;
}

.exp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 20, 0.4) 0%,
    rgba(10, 10, 20, 0.2) 40%,
    rgba(10, 10, 20, 0.7) 70%,
    rgba(10, 10, 20, 1) 100%
  );
}

.exp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 var(--space-lg);
}

.exp-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.exp-hero-content p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

/* ---- Timeline ---- */
.timeline-section {
  padding: var(--space-3xl) 0;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -42px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg-deep);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---- Photo Break ---- */
.photo-break {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  max-height: 70vh;
}

/* ---- What's Included ---- */
.includes-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.include-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--duration-med);
}

.include-card:hover {
  border-color: var(--color-accent);
}

.include-card i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.include-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.include-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Pricing + Booking ---- */
.booking-section {
  padding: var(--space-4xl) 0;
}

.pricing-display {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.price-amount {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.price-note {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
  display: block;
}

.price-guests {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  display: block;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.booking-calendar-col h3,
.booking-form-col h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

/* Form */
.booking-form .form-group {
  margin-bottom: var(--space-lg);
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--duration-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--color-text-muted);
}

.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.booking-form select option {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-help {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  margin-top: var(--space-md);
}

/* Booking messages */
.booking-success,
.booking-error {
  padding: var(--space-md);
  border-radius: 4px;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  display: none;
}

.booking-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.booking-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ---- Other Services ---- */
.other-services {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .exp-hero {
    height: 50vh;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-dot {
    left: -36px;
  }
}
