.main-content {
    padding-top: 0px;
}

.section-logo {
    background-color: #4C2683;
    color: white;
    font-size: 130%;
    font-weight: bold;
    padding-top: 2em;
    padding-bottom: 2em;
    text-align: center;
}

.section-logo img {
    max-width: 350px;
}

.section-logo blockquote {
    font-size: 20px;
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-logo blockquote span {
    color: white;
}

.section-intro {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #black;
    color: white;
    text-align: center;
    z-index: 1;
    padding-top: 3em;
    padding-bottom: 3em;
}

.section-intro .section-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro .section-content h3 {
    font-size: 230%;
}

.section-intro .section-content li {
    text-align: left;
}

.section-intro .text-orange {
    color: #F68B1F;
    text-transform: uppercase;
}

.section-intro::before {
    background-color: black;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    z-index: -1;
}

.section-intro .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity, transform; /* performance hint */
    animation: fade 24s infinite;
    transform: scale(1.05); /* subtle zoom */
    z-index: -2;
}

.section-intro .slide:nth-child(1) {
    animation-delay: 0s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-242.jpg");
}
.section-intro .slide:nth-child(2) {
    animation-delay: 4s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-247.jpg");
}
.section-intro .slide:nth-child(3) {
    animation-delay: 8s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-254.jpg");
}
.section-intro .slide:nth-child(4) {
    animation-delay: 12s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-263.jpg");
}
.section-intro .slide:nth-child(5) {
    animation-delay: 16s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-268.jpg");
}
.section-intro .slide:nth-child(6) {
    animation-delay: 20s;
    background-image: url("/visit/images/road-trip-bg-gallery/roadtrip-2025-273.jpg");
}

.section-register {
    background-color: #cc6d00;
    color: white;
    padding-top: 5vw;
    padding-bottom: 5vw;
    text-align: center;
}

.section-register h3:nth-child(1) {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.section-fees-and-gallery {
    padding-top: 3em;
    padding-bottom: 3em;
}

@keyframes fade {
  0%   { opacity: 0; transform: scale(1.05); }
  8%   { opacity: 1; transform: scale(1); }
  33%  { opacity: 1; transform: scale(1); }
  41%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Respect Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .section-intro .slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .section-intro .slide:not(:first-child) {
    display: none;
  }
}