/* ============================================
   trips.css — Trips Page Styles
   ============================================ */

.trips-hero {
  padding: 12rem 4rem 6rem;
  background: var(--cream);
  text-align: center;
}

.trips-hero .section-label { justify-content: center; }

/* Map strip / decorative world line */
.trips-map-strip {
  background: var(--dark);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trips-map-dot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,241,245,0.56);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.trips-map-dot::before {
  content: '◆';
  color: var(--rose);
  font-size: 0.5rem;
}

.trips-map-dot + .trips-map-dot::after {
  content: '· · · · ·';
  position: absolute;
  left: -3.5rem;
  color: rgba(232,93,117,0.36);
  letter-spacing: 0.3em;
}

/* Grid */
.trips-grid-section {
  background: var(--cream);
  padding: 6rem 4rem 8rem;
}

.trips-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* First trip spans full width */
.trip-card:first-child {
  grid-column: 1 / -1;
}

.trip-card {
  cursor: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trip-card:hover { transform: translateY(-8px); }

@media (hover: none), (pointer: coarse) {
  .trip-card {
    cursor: pointer;
  }
}

.trip-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.trip-card:first-child .trip-image { aspect-ratio: 21/9; }
.trip-card:not(:first-child) .trip-image { aspect-ratio: 4/3; }

.trip-image-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.trip-card:hover .trip-image-inner { transform: scale(1.05); }

.trip-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.trip-image-emoji {
  width: 56px;
  height: 50px;
  opacity: 0.44;
  position: relative;
  z-index: 1;
}

.trip-image-emoji::before {
  content: '♥';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,248,251,0.72);
}

.trip-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,7,18,0.68) 0%, transparent 50%);
  z-index: 2;
}

.trip-image-location {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
}

.trip-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,248,251,0.92);
  padding: 0.4rem 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  z-index: 3;
}

.trip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.trip-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--light-mid);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.trip-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blush);
}

.trip-stat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.trip-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--dark);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

/* Trip backgrounds */
.trip-bg-1 { background: linear-gradient(135deg, #ffb3c4, #c73650); }
.trip-bg-2 { background: linear-gradient(135deg, #ffd8e1, #e85d75); }
.trip-bg-3 { background: linear-gradient(135deg, #f48da4, #9f1d3b); }
.trip-bg-4 { background: linear-gradient(135deg, #ffc7d6, #b72b49); }
.trip-bg-5 { background: linear-gradient(135deg, #ffedf3, #d8435d); }

@media (max-width: 900px) {
  .trips-grid { grid-template-columns: 1fr; }
  .trip-card:first-child { grid-column: 1; }
  .trips-grid-section { padding: 4rem 2rem; }
  .trips-hero { padding: 10rem 2rem 4rem; }
  .trips-map-strip { padding: 2rem; gap: 1.5rem; }
}
