/* (c) 2026 The Lowry Group at Coldwell Banker Realty. All rights reserved. Proprietary — unauthorized copying, reuse, or redistribution prohibited. */
/* ==========================================================================
   THE LOWRY REPORT — SUNSET CRUISE GIVEAWAY (/cruise)
   Styles scoped to the giveaway landing page only.
   ========================================================================== */

/* ---- Hero -------------------------------------------------------------- */
.cruise-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
}
.cruise-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.30) 0%, rgba(10,10,10,.42) 45%, rgba(10,10,10,.94) 100%),
    linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.15) 55%, rgba(10,10,10,0) 100%);
}
.cruise-hero .hero-inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--space-2xl) + 40px);
  padding-bottom: var(--space-xl);
  max-width: 760px;
}
.cruise-showlogo {
  width: min(380px, 78%);
  height: auto;
  display: block;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 3px 22px rgba(0,0,0,.85)) drop-shadow(0 1px 3px rgba(0,0,0,.9));
}
.cruise-hero .eyebrow { color: var(--gold-light); text-shadow: 0 1px 10px rgba(0,0,0,.7); }
.cruise-hero h1,
.cruise-hero .lede { text-shadow: 0 2px 18px rgba(0,0,0,.75), 0 1px 3px rgba(0,0,0,.6); }
.cruise-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  margin: .2em 0 .35em;
}
.cruise-hero .lede { color: var(--text-on-black); max-width: 34em; }
.cruise-badge {
  display: inline-block;
  margin-top: var(--space-md);
  padding: .55em 1.1em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .04em;
  font-size: .95rem;
  background: rgba(201,164,92,.08);
}

/* ---- Countdown / window banner ---------------------------------------- */
.cruise-window {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--charcoal);
  color: var(--text-on-black);
  border-bottom: 1px solid var(--hairline);
}
.cruise-window strong { color: var(--gold-light); }

/* ---- Layout grid ------------------------------------------------------- */
.cruise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 860px) {
  .cruise-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

.cruise-steps { list-style: none; padding: 0; margin: var(--space-md) 0 0; }
.cruise-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--space-md);
  min-height: 2rem;
}
.cruise-steps .num {
  position: absolute; left: 0; top: -2px;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cruise-steps strong { display: block; color: var(--ivory); }
.cruise-steps span.sub { color: var(--text-on-black-muted); font-size: .95rem; }
.cruise-steps span.sub a { color: var(--gold-light); font-weight: 600; }

.prize-facts {
  margin-top: var(--space-md);
  border-top: 1px solid var(--gold-dim);
}
.prize-facts .row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(138,113,66,.25);
}
.prize-facts .row span:first-child { color: var(--text-on-black-muted); }
.prize-facts .row span:last-child { font-weight: 500; text-align: right; color: var(--ivory); }

/* ---- Entry form card --------------------------------------------------- */
.entry-card {
  background: var(--white);
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}
.entry-card h2 { margin-top: 0; }
/* The card is white, but the site is dark-themed (body text is light). Force
   ALL card text dark so nothing is light-on-light. */
.entry-card h2, .entry-card h3, .entry-card p, .entry-card label { color: var(--text-dark); }
.entry-card .form-field label { color: var(--text-dark); font-weight: 600; }
.entry-card input, .entry-card select, .entry-card textarea { color: var(--text-dark); }
.entry-card input::placeholder { color: #8f8a7f; }
.entry-card .checkbox-field {
  display: flex; align-items: flex-start; gap: .6rem;
  margin: var(--space-sm) 0 0;
  font-size: .95rem;
  color: var(--text-dark);
}
.entry-card .checkbox-field input { margin-top: .25rem; flex: 0 0 auto; }
.entry-card .checkbox-field a { color: var(--gold-dim); text-decoration: underline; }
.entry-card .btn { width: 100%; margin-top: var(--space-md); }
.entry-note { font-size: .85rem; color: #574f42; margin-top: var(--space-sm); }
.entry-card .eyebrow { color: var(--gold-dim); }

.entry-msg {
  display: none;
  margin-top: var(--space-md);
  padding: .8rem 1rem;
  border-radius: 6px;
  font-size: .95rem;
}
.entry-msg.is-ok  { display: block; background: #eef6ee; color: #245a2a; border: 1px solid #bcd9bd; }
.entry-msg.is-err { display: block; background: #fbeeee; color: #8a2a2a; border: 1px solid #e3bcbc; }

/* Confirmation (post-submit) success panel */
.entry-done {
  display: none;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}
.entry-done .check {
  width: 64px; height: 64px; margin: 0 auto var(--space-sm);
  border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--black);
}
.entry-done h3 { margin: 0 0 .4em; }
.entry-closed-note { color: var(--text-muted); font-style: italic; }

/* ---- Fine print -------------------------------------------------------- */
.cruise-rules {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
}
.cruise-rules summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-on-black);
}
.cruise-rules .rules-body {
  margin-top: var(--space-md);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--text-on-black-muted);
  max-height: 420px;
  overflow-y: auto;
  padding-right: var(--space-sm);
}
.cruise-rules .rules-body p { margin: 0 0 .8em; }
.cruise-rules .rules-body strong { color: var(--text-on-black); }
