/* site/assets/css/honeymoon.css */

/* The title band ghosts the Paris rooftops from the very foot of the page, so
   it never meets the photograph it ghosts: Versailles, which used to be the
   ghost, is also the page's first picture. */
.honeymoon .page-head {
  --page-ghost: url('../img/pages/honeymoon-sunset-800.jpg');
  --page-ghost-pos: center 46%;
}

/* The label above the run of sections. */
.honeymoon .section-label { margin-top: 8px; text-align: center; }

/* The label's own vertical rule opens the run, so the first section does not
   add the horizontal hairline on top of it. */
.honeymoon .panel-vrule + .page-section::before { display: none; }

.honeymoon-after-quote { margin-top: 32px; }

/* Versailles: the wide photograph across the top, the two roses side by side beneath it. */
@media (min-width: 700px) {
  .figures-versailles { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .figures-versailles .figure-wide { grid-column: 1 / -1; }
}

/* Paris, two by two, with the closing line under it. */
.honeymoon-grid { margin-top: 0; }

.honeymoon-grid + .prose { margin-top: clamp(30px, 3.4vw, 40px); }

/* The closing line is now a caption to the grid above it, not a heading. */
.honeymoon-more .section-placeholder {
  margin: 0;
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
}

.honeymoon-gallery-link { margin-top: 16px; text-align: center; font-size: 17px; }

/* The days in Paris: a date on the left, the day's places on the right, one row per day. */
.days-list {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}

.days-entry {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px 28px;
  padding: 26px 0;
  border-top: 1px solid var(--color-accent-hair, #cfc8ae);
}

.days-entry:last-child { border-bottom: 1px solid var(--color-accent-hair, #cfc8ae); }

.days-date { text-align: right; line-height: 1.1; }

.days-weekday {
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.days-num {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  color: #3a382d;
}

.days-title {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a382d;
}

.days-line {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
}

@media (max-width: 560px) {
  .days-entry { grid-template-columns: 1fr; padding: 22px 0; }
  .days-date { display: flex; align-items: baseline; gap: 10px; text-align: left; }
  .days-num { margin-top: 0; font-size: 34px; }
}

/* Photo rows on this page: a portrait pair, a full width landscape, a narrow portrait. */
.photo-row-portrait img { aspect-ratio: 3 / 4; }
.honeymoon-grid-wide img { aspect-ratio: 3 / 2; }
.honeymoon-grid-narrow { max-width: 380px; }
.honeymoon-grid-narrow img { aspect-ratio: 3 / 4; object-position: center 30%; }
