/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden; /* prevents 100vw breakout causing horizontal scroll */
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* Header */
.header {
  background-color: #000;
  padding: 1.5rem 0;
}

.header .container {
  display: flex;
  justify-content: center;
}

.logo {
  text-align: center;
}

.logo-sports,
.logo-illustrated {
  color: #EF3E32;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.logo-illustrated {
  margin-top: -0.25rem;
}

.logo-resorts {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

/* =========================
   HERO SECTION (FINAL)
   ========================= */
.hero {
  position: relative;
  max-width: 1440px;

  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain; /* prevents cropping */

  background-color: #000;
  margin: 0 auto;
}

/* MOBILE HERO */
@media (max-width: 500px) {
  .hero {
    background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/hero%20(1)-1.png");
    aspect-ratio: 9 / 6;
    min-height: unset;
  }
}

/* DESKTOP / TABLET HERO */
@media (min-width: 501px) {
  .hero {
    background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/hero%20and%20form%20(1).png");
    aspect-ratio: 16 / 7;
    min-height: unset;
  }
}

/* Torn Paper */
.torn-paper-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.torn-top,
.torn-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
}

.torn-top {
  top: -0.5rem;
  clip-path: polygon(
    0 0,
    5% 100%,
    10% 0,
    15% 100%,
    20% 0,
    25% 100%,
    30% 0,
    35% 100%,
    40% 0,
    45% 100%,
    50% 0,
    55% 100%,
    60% 0,
    65% 100%,
    70% 0,
    75% 100%,
    80% 0,
    85% 100%,
    90% 0,
    95% 100%,
    100% 0
  );
}

.torn-bottom {
  bottom: -0.5rem;
  clip-path: polygon(
    0 100%,
    5% 0,
    10% 100%,
    15% 0,
    20% 100%,
    25% 0,
    30% 100%,
    35% 0,
    40% 100%,
    45% 0,
    50% 100%,
    55% 0,
    60% 100%,
    65% 0,
    70% 100%,
    75% 0,
    80% 100%,
    85% 0,
    90% 100%,
    95% 0,
    100% 100%
  );
}

/* Hero Typography */
.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo .logo-sports,
.hero-logo .logo-illustrated {
  color: #EF3E32;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-logo .logo-illustrated {
  margin-top: -0.25rem;
}

.hero-logo .logo-resorts {
  color: #111827;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #EF3E32;
  line-height: 1;
}

/* Cutouts */
.cutout {
  position: absolute;
  background-color: rgba(55, 65, 81, 0.5);
  display: none;
}

.cutout-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 4px solid #EF3E32;
}

.cutout-2 {
  top: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 0.5rem;
  border: 4px solid #fff;
}

.cutout-3 {
  bottom: 5rem;
  left: 5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 0.5rem;
  border: 4px solid #EF3E32;
}

.cutout-4 {
  bottom: 2.5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 4px solid #fff;
}

/* Form Section */
.form-section {
  padding: 2rem 0;
  background-color: #fff;
}

/* Thank you message */
.thank-you-message {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-eyebrow {
  color: #EF3E32;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.thank-you-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.thank-you-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #111827;
  line-height: 1.75;
}

.highlight-red {
  color: #EF3E32;
  font-weight: 600;
}

/* Form header */
.form-header {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.form-header .form-eyebrow {
  color: #EF3E32;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-family: 'Poppins';
}

.form-header .form-title {
  font-size: clamp(1.7rem, 4vw, 3.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.form-header .form-subtitle {
  font-size: 1.2rem;
  color: #111827;
}

.success-message {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.success-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.success-text {
  font-size: 1.25rem;
  color: #111827;
}

.entry-form-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
}

.multi-field-form {
  width: 100%;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.full-width {
  grid-template-columns: 1fr;
}

.form-input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  border: 3px solid #EF3E32;
  border-radius: 0.5rem;
  outline: none;
  background-color: #fff;
  color: #111827;
}

.form-input::placeholder {
  color: #6b7280;
}

.form-input:focus {
  border-color: #b91c1c;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-input option {
  background-color: #fff;
  color: #111827;
}

.entry-form-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: start;
}

.form-eyebrow {
  color: #EF3E32;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.form-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

.form-description {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.75;
}

.phone-input {
  width: 100%;
  height: 4rem;
  padding: 0 1.5rem;
  font-size: 1.125rem;
  border: 3px solid #EF3E32;
  border-radius: 0.5rem;
  outline: none;
}

.consent-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.consent-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #374151;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.25rem;
  appearance: none;
  position: relative;
  background: transparent;
}

.consent-checkbox:checked {
  background-color: #fff;
  border-color: #EF3E32;
}

.consent-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-label {
  font-size: 0.65rem;
  color: #111827;
  line-height: 1.75;
  cursor: pointer;
}

.submit-button {
  width: 100%;
  height: 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #EF3E32;
  color: #fff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  font-family: 'Poppins';
}

.submit-button:hover:not(:disabled) {
  background-color: #b91c1c;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Events Section */
.events-section {
  padding: 3rem 0;
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.diagonal-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #fff 10px, #fff 12px);
  opacity: 0.1;
}

.events-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.event-eyebrow {
  color: #EF3E32;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: 'Poppins';
}

.event-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.event-description {
  color: #d1d5db;
  line-height: 1.75;
}
@media (min-width:501px){
.divider {
  max-width: 80rem;
  margin: 3rem auto;
  height: 2px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}}

@media (max-width: 500px) {
.divider {
    max-width: 80rem;
    margin: 1rem auto;
    height: 2px;
    /* background-color: #fff; */
    position: relative;
    z-index: 10;
}
}

/* =========================
   BRAND SECTION (FIXED)
   - Desktop: text can grow, image stretches to match
   - Mobile: uses aspect-ratio so image stays consistent
   ========================= */
.brand-section {
  display: grid;
  align-items: stretch; /* key: let the tallest column define height */
}

.brand-image {
  background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/sir-lifestyle-stock-g683446637-edited%201.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  min-height: 100%; /* key: match the grid row height */
}
@media (min-width:501px){
.brand-content {
  background-color: #EF3E32;
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/dots.png");
  background-repeat: repeat;
  min-height: 100%;
}}
@media (max-width:500px){
.brand-content {
  background-color: #EF3E32;
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  background-image: url("https://47115785.fs1.hubspotusercontent-na1.net/hubfs/47115785/dots.png");
  background-repeat: repeat;
  min-height: 100%;
  background-size:430px;
}}

.brand-eyebrow {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Safe scalable type (wonÃ¢â‚¬â„¢t break layout) */
.brand-description {
  /* font-size: clamp(1.15rem, 1.6vw, 1.75rem); */
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 0;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #EF3E32;
}

.separator {
  color: #fff;
}

.footer-legal {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.75;
}

.footer-legal p {
  margin-bottom: 1rem;
}

.footer-legal p:last-child {
  padding-top: 1rem;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .entry-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .cutout {
    display: block;
  }
}

/* Mobile brand image ratio ONLY on stacked layout */
@media (max-width: 1024px) {
  .brand-section {
    grid-template-columns: 1fr;
  }

  .brand-image {
    /* aspect-ratio: 919 / 612; */
    min-height: 17rem;
  }
}

/* Headings / Titles use Industry */
h1,
h2,
h3,
h4,
.hero-title,
.hero-subtitle,
.success-title,
.form-title,
.event-title,
.brand-eyebrow,
.brand-title,
.form-eyebrow,
.event-eyebrow,
.thank-you-eyebrow,
.thank-you-title {
  font-family: "industry", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* NOTE: Removed your broken @media (max-width: 50px) divider block (never triggers) */
/* NOTE: Removed duplicate divider @media (min-width: 500px) block (already covered) */

/* =========================
   SCHOOL SPIRIT SELECT
   (kept, cleaned, merged)
   ========================= */
#schoolSpirit {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e02b20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;

  cursor: pointer;
}

#schoolSpirit::-ms-expand {
  display: none;
}

#schoolSpirit option {
  background-color: #fff;
  color: #111827;
}

#schoolSpirit option:checked {
  background-color: #e02b20;
  color: #fff;
}
