/* ============================================================
   Variables
   ============================================================ */
:root {
  --yellow:  #f1c57b;
  --cream:   #eee7dd;
  --brown:   #7c624b;
  --stripe-width: 160px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  color: var(--brown);
  background-color: var(--cream);
  display: flex;
  flex-direction: column;
}

a {
  color: var(--brown);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   Stripe background
   Alternating vertical yellow / cream columns
   ============================================================ */
.stripe-bg {
  background-image: repeating-linear-gradient(
    to right,
    var(--yellow)   0px,
    var(--yellow)   var(--stripe-width),
    var(--cream)    var(--stripe-width),
    var(--cream)    calc(var(--stripe-width) * 2)
  );
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--brown);
  padding: 0 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.6rem 0;
}

nav a {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
}

nav a {
  transition: opacity 0.2s ease;
}

nav a:hover {
  text-decoration: none;
  opacity: 0.65;
}

nav a.active {
  border-bottom: 1px solid var(--brown);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-inner {
  background-color: var(--cream);
  padding: 2rem 4rem;
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--brown);
  outline: 1px solid var(--brown);
  outline-offset: -8px;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero-names {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1.3;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-and {
  font-family: 'Chronicle Display', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin: 0.4rem 0;
}

.hero-details {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.75rem;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.55s ease both;
}

.hero-divider {
  width: 40px;
  border: none;
  border-top: 1px solid var(--brown);
  margin: 1rem auto;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-watercolor {
  width: 260px;
  max-width: 80%;
  margin-top: 0.75rem;
  animation: fadeUpImage 0.9s 0.4s ease both;
}
/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-header {
  text-align: center;
  padding: 3rem 2rem;
}

.page-header-box {
  background-color: var(--cream);
  display: inline-block;
  padding: 1.25rem 3rem;
  border: 1px solid var(--brown);
  outline: 1px solid var(--brown);
  outline-offset: -6px;
  animation: fadeUp 0.6s ease both;
}

.page-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ============================================================
   Interior page content components
   ============================================================ */
.intro-text {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.content-section {
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--brown);
}

.content-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.section-heading {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Day label (schedule) */
.day-label {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--brown);
  margin-bottom: 0;
}

/* Schedule page layout */
main:has(.schedule-split) {
  flex: 1;
}

.schedule-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 3rem 3rem 2rem;
}

.schedule-watercolor {
  width: 420px;
  max-width: 100%;
  display: block;
  animation: fadeUp 0.7s 0.1s ease both;
}

.schedule-venue-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.schedule-details {
  padding-top: 70px; /* tagline + its margin puts Coriander ~22px below illustration start */
}

.schedule-tagline {
  text-align: left;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both;
}

.schedule-divider {
  width: 40px;
  border: none;
  border-top: 1px solid var(--brown);
  margin: 1.25rem 0;
  animation: fadeUp 0.7s 0.3s ease both;
}

.schedule-details .event-note {
  animation: fadeUp 0.7s 0.35s ease both;
}

.schedule-soon {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.55;
  margin-top: 2rem;
  animation: fadeUp 0.7s 0.45s ease both;
}

@media (max-width: 700px) {
  .schedule-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 2rem 4rem;
    text-align: center;
  }

  .schedule-watercolor {
    width: 280px;
    margin: 0 auto;
  }

  .schedule-divider {
    margin: 1.25rem auto;
  }

  .schedule-tagline {
    text-align: center;
  }
}

/* Event list (schedule) */
.event-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--brown);
  align-items: start;
}

.event-time {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding-top: 2px;
  white-space: nowrap;
}

.event-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.event-note {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

/* Info list (travel, registry) */
.info-list {
  list-style: none;
}

.info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--brown);
}

.info-item:first-child {
  border-top: 1px solid var(--brown);
}

.info-item-label {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0.65;
}

.info-item-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.info-item-body {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* FAQ */
.faq-list {
  list-style: none;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--brown);
}

.faq-item:first-child {
  border-top: 1px solid var(--brown);
}

.faq-q {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.faq-a {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* CTA button */
.btn {
  display: inline-block;
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--brown);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background-color: var(--brown);
  color: var(--cream);
  text-decoration: none;
}

/* Chronicle italic inline accent */
.chronicle {
  font-family: 'Chronicle Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.05em;
  letter-spacing: 0;
  text-transform: none;
}

.text-center {
  text-align: center;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3.5rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  text-align: center;
  padding: 2rem;
  font-family: 'Chronicle Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brown);
  border-top: 1px solid var(--brown);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpImage {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .hero-names,
  .hero-divider,
  .hero-watercolor,
  .hero-details,
  .page-header-box,
  .page-content {
    animation: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
/* ============================================================
   Hotel Carousel
   ============================================================ */

.hotel-carousel-wrap {
  position: relative;
  margin-top: 1.25rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hotel-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.25rem 1rem;
}

.hotel-carousel::-webkit-scrollbar { display: none; }

.hotel-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border: 1px solid var(--brown);
  text-decoration: none;
  color: var(--brown);
  display: block;
  transition: opacity 0.2s ease;
  background: var(--cream);
}

.hotel-card:hover { opacity: 0.7; }

.hotel-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.hotel-card-info {
  padding: 0.65rem 0.85rem 0.75rem;
  border-top: 1px solid var(--brown);
}

.hotel-card-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hotel-card-addr {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  opacity: 0.55;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.carousel-btn {
  display: none;
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  background: var(--cream);
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: 'Gotham', sans-serif;
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--brown);
  color: var(--cream);
}

.carousel-btn--prev { left: 0.5rem; }
.carousel-btn--next { right: 0.5rem; }

/* ============================================================
   Attraction Cards (Things To Do)
   ============================================================ */
.attraction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0;
}

.attraction-card {
  border: 1px solid var(--brown);
  background: var(--cream);
  overflow: hidden;
}

.attraction-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.attraction-card-info {
  padding: 0.75rem 0.85rem 0.9rem;
  border-top: 1px solid var(--brown);
}

.attraction-card-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.attraction-card-body {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--brown);
}

.attraction-card-body a {
  color: var(--brown);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --stripe-width: 90px;
  }

  nav ul {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-inner {
    padding: 2.5rem 2rem;
  }

  .hero-names {
    font-size: 1.4rem;
  }

  .carousel-btn {
    display: none !important;
  }

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