/* =========================
   Reset + Base
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #f2f0e7;
}

body {
  font-family: "museo-sans", sans-serif;
  line-height: 1.5;
  color: #2d2d2d;
}

/* Ensure sections canÃ¢â‚¬â„¢t exceed viewport width */
section,
header,
footer,
.hero,
.divider-top,
.grand-prize-section,
.winners-section {
  width: 100%;
}

/* =========================
   Hero Section
========================= */
.hero {
  position: relative;
  height: clamp(360px, 45vh, 520px);
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/hero%20(5)-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  /* keep for clean edges; icon stays INSIDE hero so it won't clip */
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    height: clamp(520px, 60vh, 700px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(1200px, 100%);
  text-align: center;
  padding: 32px 20px;
  color: white;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin: 0;
}

.logo {
  padding: 0;
  border-radius: 4px;
}

.logo img {
  display: block;
  width: clamp(210px, 34vw, 400px);
  max-width: none;
  height: auto;
}

/* divider always visible + not shrinkable */
.divider {
  display: block;
  flex: 0 0 3px;
  width: 3px;
  height: clamp(90px, 18vw, 240px);
  min-height: 90px;
  background: #fff;
  opacity: 1;
}

.hero-title {
  text-align: left;
  min-width: 0;
}

.hero-subtitle {
    font-size: clamp(11px, 1.6vw, 24px);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-main-title {
  font-size: clamp(20px, 3.5vw, 61px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Goose icon above lockup (MOBILE SAFE) */
.icon {
  position: absolute;
  top: 16px; /* keeps it inside hero so overflow:hidden can't clip it */
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: clamp(34px, 5vw, 56px);
  height: auto;
  pointer-events: none;

  /* defensive: if any global css hides it on mobile */
  display: block;
  opacity: 1;
  visibility: visible;
}

/* =========================
   Divider Top (mountains swap)
========================= */
.divider-top {
  position: relative;
  width: 100%;
  z-index: 99;
  margin-top: -5rem;
  line-height: 0;
}

.divider-top img {
  width: 100%;
}

/* Desktop mountain sizing */
@media (min-width: 1590px) {
  .divider-top-desktop {
    display: block;
    position: relative;
    top: 2rem;
    margin-top: -8rem;
    height: 8rem;
  }
}

@media (min-width: 768px) and (max-width: 1589px) {
  .divider-top-desktop {
    display: block;
    position: relative;
    top: 3rem;
    margin-top: -8rem;
    height: 8rem;
  }
}

@media (min-width: 1590px) {
  .divider-bot-desktop {
    display: block;
    position: relative;
    top: 2rem;
    margin-top: -6rem;
    height: 9rem;
  }
}

@media (min-width: 768px) and (max-width: 1589px) {
  .divider-bot-desktop {
    display: block;
    position: relative;
    top: 2rem;
    margin-top: 0rem;
    height: 6rem;
  }
}

.divider-top-mobile {
  display: none;
  position: relative;
  top: 25px;
  margin-top: -5rem;
}

.divider-bot {
  position: relative;
  width: 100%;
  z-index: 99;
  margin-top: -5rem;
  line-height: 0;
}

.divider-bot img {
  width: 100%;
}

.divider-bot-mobile {
  display: none;
  position: relative;
  top: 25px;
  margin-top: -5rem;
  height: 5rem;
}

@media (max-width: 768px) {
  .divider-top-desktop {
    display: none;
  }
  .divider-top-mobile {
    display: block;
    height: 5rem;
  }
}

@media (max-width: 768px) {
  .divider-bot-desktop {
    display: none;
  }
  .divider-bot-mobile {
    display: block;
  }
}
/* =========================
   Form Section (CENTERED SINGLE COLUMN)
   (matches your stacked pill layout)
========================= */
.form-section {
  background: #f2f0e7;
  padding: clamp(20px, 7.5vw, 80px) 20px;
}

.form-container-full {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-title-center {
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.form-description-center {
  font-size: clamp(14px, 2vw, 18px);
  color: #4a4a4a;
  margin-bottom: clamp(24px, 4vw, 40px);
  line-height: 1.5;
}

.multi-field-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Shared input styling */
.form-input {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  font-size: 16px;
  border: 2px solid #c85a3a;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #2d2d2d;
  font-family: "museo-sans", sans-serif;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  border-color: #a04a2e;
}

/* =========================
   Age Range SELECT (closed state matches pills)
========================= */
.form-input.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
  height: 54px;
  padding: 0 56px 0 20px;

  background-image:
    linear-gradient(45deg, transparent 50%, #c85a3a 50%),
    linear-gradient(135deg, #c85a3a 50%, transparent 50%);
  background-position:
    calc(100% - 26px) 50%,
    calc(100% - 18px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

.form-input.form-select:hover,
.form-input.form-select:focus {
  border-color: #a04a2e;
}

.form-input.form-select option {
  font-family: "museo-sans", sans-serif;
  font-size: 16px;
}

.form-input.form-select option[value=""] {
  color: #999;
}

/* Checkbox block */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  text-align: left;
}

.checkbox-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label {
  font-size: 11px;
  color: #4a4a4a;
  line-height: 1.5;
}

/* Submit */
.submit-button {
      width: 100%;
      max-width: 408px;
      padding: 18px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: #fff;
      background: #2d2d2d;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.3s;
      font-family: 'museo-sans';
      margin: 0px auto;
}

.submit-button:hover {
  background: #1a1a1a;
}

.submit-button:disabled {
  background: #999;
  cursor: not-allowed;
}

.hidden { display: none !important; }

/* =========================
   Success section
========================= */
.success-section {
  padding: clamp(48px, 6vw, 90px) 16px;
  text-align: center;
  background-color: #f2f0e7;
}

.success-container {
  max-width: 980px;
  margin: 0 auto;
}

.success-title {
  font-family: "museo-sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.05;
  color: #2f3135;
  margin: 0 0 18px;
}

.success-subtitle {
  font-family: "museo-sans", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.25;
  color: #2f3135;
  margin: 0;
}


/* =========================
   Prize Details (replaces form block)
========================= */
.prize-details {
  background: #f2f0e7;
  padding: clamp(22px, 4vw, 40px) 20px;
  text-align: center;
}

.prize-details-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin: 0;
}

/* =========================
   Grand Prize Section
========================= */
.grand-prize-section {
  display: grid;
  grid-template-columns: 1fr;
}

.grand-prize-content {
  background: #c85a3a;
  color: white;
  padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 30px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grand-prize-title {
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: clamp(16px, 3vw, 24px);
  letter-spacing: 0;
}

.grand-prize-title .gp-small {
  display: block;
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 68px);
}

.grand-prize-title .gp-big {
  display: block;
  font-weight: 900;
  font-size: clamp(60px, 7.7vw, 106px);
}

.grand-prize-description {
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.grand-prize-image {
  height: 200px;
  background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/ebac-EB24IX-0330300-931A7%202.svg");
  background-position: 20% 10%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .grand-prize-section {
    grid-template-columns: 1fr 1fr;
    height: 30rem;
  }
  .grand-prize-content {
    order: 2;
  }
  .grand-prize-image {
    order: 1;
    height: auto;
  }
}

/* =========================
   Winners Section
========================= */
.winners-section {
  background: #f2f0e7;
  padding: 40px 20px;
}

.winners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.winner-card {
  text-align: center;
}

.winner-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  color: #2d2d2d;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1;
  white-space: normal;
}

@media (min-width: 768px) {
  .winners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .winner-title {
    font-size: clamp(22px, 3.2vw, 68px);
  }
}

@media (min-width: 1024px) {
  .winner-title {
    white-space: nowrap;
  }
}

.winner-prize {
  font-size: 20px;
  color: #4a4a4a;
  font-weight: 500;
}


/* Mobile divider line */
@media (max-width: 768px) {
  .divider-line {
    grid-column: 1 / -1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-bottom: 5px solid #000;
    display: block;
  }
}

@media (min-width: 769px) {
  .divider-line {
    display: none;
  }
}

/* =========================
   Mountain Divider
========================= */
.mountain-divider {
  width: 100%;
  height: 80px;
  background: #2d2d2d;
  position: relative;
  overflow: hidden;
}

.mountain-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* =========================
   Footer
========================= */
.footer {
  background: #2f3135;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-separator {
  color: #666;
}

.footer-text {
  font-size: 10px;
  line-height: 1.6;
  color: white;
  max-width: 900px;
  margin: 0 auto 10px;
  font-weight: 300;
}

/* slightly smaller logo */
.footer-logo img {
  margin-top: clamp(20px, 4vw, 30px);
  width: clamp(95px, 14vw, 160px);
  height: auto;
}

.footer-logo-text {
  font-family: cursive;
  font-size: 24px;
  font-weight: bold;
}

.footer-logo-subtitle {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =========================
   Mobile tightening for hero lockup
========================= */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 0px;
  }

  .logo-section {
    gap: 14px;
  }

  .divider {
    flex: 0 0 2px;
    width: 2px;
    height: 84px;
    min-height: 84px;
  }

  .hero-title {
    text-align: left;
  }

  /* keep icon safely inside hero */
  .icon {
    top: 14px;
    width: 34px;
  }
}

/* =========================
   Extra-small phones (<= 430px)
========================= */
@media (max-width: 430px) {
  .hero-content { padding: 52px 14px 22px; }
  .logo-section { gap: 10px; }
  .logo img { width: clamp(170px, 44vw, 240px); }
  .divider {flex: 0 0 2px;width: 2px;height: 140px;min-height: 140px;}
  .hero-subtitle { font-size: 10px; letter-spacing: 1.6px; margin-bottom: 4px; }
  .hero-main-title {font-size: clamp(19px, 5.2vw, 32px);line-height: 1.05;letter-spacing: 0.2px;}

  /* IMPORTANT: removed the old top:70px which could push it down / clip it */
  .icon { top: 12px; width: 34px; }

  .grand-prize-title { line-height: 0.92; }
  .grand-prize-title .gp-small {font-size: clamp(39px, 8.6vw, 44px);}
  .grand-prize-title .gp-big {font-size: clamp(60px, 12vw, 78px);}
}
/* =========================
   Utility
========================= */
.hidden {
  display: none !important;
}
/* MOBILE: force 3 lines exactly like:
   Red Rock
   & Roam
   Sweepstakes
*/
@media (max-width: 768px) {
  .hero-title .hero-main-title .line-1,
  .hero-title .hero-main-title .line-2,
  .hero-title .hero-main-title .line-3 {
    display: block !important;
  }

  /* keep "& Roam" together */
  .hero-title .hero-main-title .line-2 {
    white-space: nowrap !important;
  }
}

/* DESKTOP: keep "Red Rock & Roam" on one line, "Sweepstakes" under it */
@media (min-width: 769px) {
  .hero-title .hero-main-title .line-1,
  .hero-title .hero-main-title .line-2 {
    display: inline !important;
  }

  .hero-title .hero-main-title .line-3 {
    display: block !important;
  }
}

/* =========================
   Custom Select (JS-driven) for HubSpot
========================= */

/* hide the native select but keep it in the DOM for HubSpot submission */
.hs-form select.hs-input[data-customized="true"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* wrapper */
.cselect {
  position: relative;
  width: 100%;
  font-family: "museo-sans", sans-serif;
}

/* button that looks like your pill input */
.cselect__btn {
  width: 100%;
  height: 54px;
  padding: 0 56px 0 20px;
  border: 2px solid #c85a3a;
  border-radius: 999px;
  background: #fff;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}

.cselect__btn:focus {
  border-color: #a04a2e;
}

/* placeholder styling */
.cselect__btn.is-placeholder .cselect__value {
  color: #999;
}

/* arrow */
.cselect__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #c85a3a;
  pointer-events: none;
  transition: transform 0.15s ease;
}

.cselect.is-open .cselect__arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* the open dropdown panel */
.cselect__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 2px solid #c85a3a;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 9999;
  display: none;
  max-height: 240px;
  overflow: auto;
}

.cselect.is-open .cselect__panel {
  display: block;
}

/* options */
.cselect__opt {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #2d2d2d;
}

.cselect__opt:hover,
.cselect__opt[aria-selected="true"] {
  background: rgba(200, 90, 58, 0.12);
}

.cselect__opt:focus {
  outline: none;
}
