/* Global reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Thick underline utilities */
.thick-underline-default,
.thick-underline-primary,
.thick-underline-secondary,
.thick-underline-complementary,
.thick-underline-success,
.thick-underline-info,
.thick-underline-warning,
.thick-underline-danger,
.thick-underline-inverse,
.thick-underline-muted,
.thick-underline-white {
  text-decoration: underline;
  text-decoration-thickness: 0.35rem;
  text-underline-offset: 0.25rem;
}

.thick-underline-default { text-decoration-color: #767676; }
.thick-underline-primary { text-decoration-color: #ffc904; }
.thick-underline-secondary { text-decoration-color: #000000; }
.thick-underline-complementary { text-decoration-color: #0275d8; }
.thick-underline-success { text-decoration-color: #2ecc71; }
.thick-underline-info { text-decoration-color: #0275d8; }
.thick-underline-warning { text-decoration-color: #f4b350; }
.thick-underline-danger { text-decoration-color: #ff6445; }
.thick-underline-inverse,
.thick-underline-white { text-decoration-color: #ffffff; }
.thick-underline-muted { text-decoration-color: #636c72; }

/* Ticket transitions */
.ticket-transition-top {
  --mask: conic-gradient(from 135deg at top, transparent, #000 1deg 89deg, transparent 90deg) 50% / 15px 100.1%;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

.ticket-transition-bottom {
  --mask: conic-gradient(from -45deg at bottom, transparent, #000 1deg 89deg, transparent 90deg) 50% / 15px 100.1%;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

.ticket-transition-top-bottom {
  --mask:
    conic-gradient(from 135deg at top, transparent, #000 1deg 89deg, transparent 90deg) top / 15px 51% repeat-x,
    conic-gradient(from -45deg at bottom, transparent, #000 1deg 89deg, transparent 90deg) bottom / 15px 51% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

/* Utility classes */
.rounded-1 {
  border-radius: 1rem;
}

.section-overlap {
  margin-top: -30px;
}

.transition-shadow {
  filter: drop-shadow(-1px -1px 2px #bebebe);
}

/* Investment amount */
.investment-amount {
  font-size: 12.25vw;
  line-height: 0.875;
}


/* V shape */
.v-shape-bot {
  clip-path: polygon(0 0, 50% 60px, 100% 0, 100% 100%, 0 100%);
  background-color: #000000;
  height: 100.1px;
}

/* UCF section styles */
.ucf-section {
  padding: 4rem 0;
}

.ucf-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.ucf-section p {
  font-size: 1.125rem;
  line-height: 1.7;
}

.ucf-section-white {
  background: #ffffff;
  color: #000000;
}

.ucf-section-black {
  background: #000000;
  color: #ffffff;
}

.ucf-section-gold {
  background: #ffc904;
  color: #000000;
}

.ucf-section-light {
  background: #f7f7f7;
  color: #000000;
}

.ucf-eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.ucf-gold-bar {
  width: 72px;
  height: 6px;
  background: #ffc904;
  margin-bottom: 1.5rem;
}

.ucf-section-gold .ucf-gold-bar {
  background: #000000;
}

.ucf-stat-row {
  margin-top: 2rem;
}

.ucf-stat-card {
  background: #ffffff;
  color: #000000;
  padding: 1.5rem;
  border-left: 8px solid #ffc904;
  height: 100%;
  margin-bottom: 1rem;
}

.ucf-section-gold .ucf-stat-card {
  border-left-color: #000000;
}

.ucf-stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.ucf-quote {
  margin-top: 2rem;
  padding: 1.5rem 0 0 1.5rem;
  border-left: 6px solid #ffc904;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
}

.ucf-section-gold .ucf-quote {
  border-left-color: #000000;
}

.ucf-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
}

/* Partner logo component */
.ucf-partner-logo-grid {
  margin-top: 2rem;
}

.ucf-partner-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ucf-partner-logo-card {
  width: 220px;
  min-height: 120px;
  padding: 1.25rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ucf-partner-logo-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Photo placements */
.ucf-photo-block {
  margin: 2rem 0;
}

.ucf-photo-block img {
  width: 100%;
  height: auto;
  display: block;
}

.ucf-photo-frame {
  border: 8px solid #ffc904;
  background: #ffffff;
}

.ucf-photo-frame-black {
  border: 8px solid #000000;
}

.ucf-photo-caption {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  color: inherit;
  opacity: 0.85;
}

.ucf-split-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.ucf-split-content > div {
  flex: 1;
}

.ucf-photo-block {
  margin: 2rem 0;
}

.ucf-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ucf-img-wide {
  aspect-ratio: 16 / 7;
}

.ucf-img-feature {
  aspect-ratio: 4 / 3;
}

.ucf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ucf-img-center img {
  object-position: center;
}

.ucf-img-top img {
  object-position: top;
}

.ucf-img-bottom img {
  object-position: bottom;
}

.ucf-img-frame-gold {
  border: 8px solid #ffc904;
}

.ucf-img-frame-black {
  border: 8px solid #000000;
}


/* Responsive styles */
@media (min-width: 576px) {
  .investment-amount {
    font-size: 4.375rem;
  }

  .florida-background {
    object-position: 30% 70%;
  }
}

@media (min-width: 768px) {
  .investment-amount {
    font-size: 6.125rem;
  }
}

@media (min-width: 1140px) {
  .investment-amount {
    font-size: 7.875rem;
  }
}

@media (max-width: 767px) {
  .ucf-section {
    padding: 3rem 0;
  }

  .ucf-section h2 {
    font-size: 2rem;
  }

  .ucf-partner-logo-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .ucf-partner-logo-card {
    width: calc(50% - 0.5rem);
    min-height: 100px;
    padding: 1rem;
  }

  .ucf-partner-logo-card img {
    max-height: 56px;
  }

 
  .ucf-split-content {
    display: block;
  }

  .ucf-split-content > div + div {
    margin-top: 1.5rem;
  }

  .ucf-img-wide {
    aspect-ratio: 16 / 10;
  }
}
