/* ------------------------- LABEL ------------------------- */
/* ------------------------- DOCUMENT SETUP ------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  height: 100%;
  background-color: #FCFCFC;
  color: #282828;
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.5em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ------------------------- COVER PAGE ------------------------- */
.page {
  width: 1050px;
  padding: 0px;
  margin: 85px auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
}

.leftside {
  flex: 1;
  text-align: right;
  padding-right: 25px;
}

.leftside img {
  width: 320px;
}

.rightside {
  flex: 1;
  text-align: left;
  padding-left: 25px;
  margin-top: 30px;
}

.nameField {
  font-family: "Mulish", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.entry {
  margin-bottom: 15px;
  line-height: 1.3em;
}

.titleline {
  opacity: 0.4;
}

.menu {
  margin-top: 40px;
  margin-left: -8px;
}

.menu-icon, .home-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  padding: 5px;
  margin: 0px;
  color: #282828;
  opacity: 0;
}

.home-icon {
  opacity: 1;
}

/* ------------------------- SVG ------------------------- */
.menu-icon svg, .home-icon svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px; /* Prevent shrinking */
  min-height: 26px;
  color: #282828;
  transition: color 0.15s ease;
}

.menu-icon svg:hover, .home-icon svg:hover {
  color: rgb(233, 94, 0);
  transition: color 0.15s ease;
}

/* ------------------------- ANIMATIONS ------------------------- */
@keyframes zipIn {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.menu .menu-icon:nth-of-type(1) {
  animation-delay: 0.7s;
  animation-duration: 0.6s;
  animation-name: zipIn;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(2) {
  animation-delay: 0.6s;
  animation-duration: 0.5s;
  animation-name: zipIn;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(3) {
  animation-delay: 0.5s;
  animation-duration: 0.4s;
  animation-name: zipIn;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu .menu-icon:nth-of-type(4) {
  animation-delay: 0.4s;
  animation-duration: 0.3s;
  animation-name: zipIn;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* ------------------------- NORMAL PAGE LAYOUT ------------------------- */
.content {
  width: 800px;
  margin: 45px auto;
  padding: 0px;
  overflow: hidden;
  height: 100%;
  text-align: left;
}

blockquote {
  background-color: #282828;
  color: #FCFCFC;
  font-weight: 600;
  border-left: 1px solid rgb(233, 94, 0);
  padding: 2px 12px;
  margin: 28px 0px;
  font-style: italic;
}

#header {
  margin: 20px auto;
  text-align: center;
}

#footer {
  border-top: 1px dotted #282828;
  margin-top: 30px;
  padding-top: 5px;
  font-size: 14.5px;
  color: darkgray;
  text-align: center;
}

iframe {
  width: 100%;
  height: 550px;
  border: none;
}

hr {
  border: none;
  background-color: #282828;
  height: 1px;
}

strong {
  font-weight: 600;
  font-style: bold;
}

ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 1em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

p {
  margin: 10px 0px 12px 0px;
}

.dateline {
  font-size: 17px;
  opacity: 0.7;
  line-height: 1.2em;
}

/* ------------------------- HEADINGS ------------------------- */
h1 {
  font-family: "Mulish", sans-serif;
  font-size: 29.5px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1em;
  margin-block-start: 0;
  margin-block-end: 0;
}

h2 {
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "Mulish", sans-serif;
  font-size: 22px;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2em;
  margin-top: 35px;
}

h3 {
  font-family: "Mulish", sans-serif;
  font-size: 14.5pt;
  font-weight: 600;
  line-height: 1.5em;
  margin-block-start: 0px;
  margin-block-end: 0px;
  text-transform: uppercase;
}

h4 {
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.3em;
}

/* ------------------------- LINKS ------------------------- */
a, a:visited, a:active {
  color: #282828;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-style: solid;
  text-decoration-color: rgba(233, 94, 0, 0.3);
  transition: text-decoration-color 0.3s ease;
}

a:hover {
  text-decoration-color: #e95e00;
  transition: text-decoration-color 0.2s ease;
}

.menu-icon a, .menu-icon a:visited, .menu-icon a:active, .menu-icon a:hover {
  text-decoration: none !important;
}

.cardbox a, .cardbox a:visited, .cardbox a:active {
  text-decoration: none !important;
  border: none !important;
  background-color: transparent !important;
  border-radius: 12px;
  border: 1px solid red;
}

.cardbox a:hover {
  background-color: rgba(128, 128, 128, 0.15) !important;
}

/* ------------------------- RIDE CARDS ------------------------- */
.cardlabel {
  font-size: 18.5px;
  text-transform: uppercase;
  margin: 10px auto 35px auto;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 500;
}

.cardbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
  width: 100%;
}

.card {
  flex: 1;
  overflow: hidden;
  text-align: left;
  border-radius: 12px;
}

.card-date {
  font-family: -apple-system, BlinkMacSystemFont, Apple Color Emoji, SF Pro, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0.5;
  line-height: 1em;
  margin: 5px 8px;
}

.card-title {
  font-family: -apple-system, BlinkMacSystemFont, Apple Color Emoji, SF Pro, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1em;
  margin: 5px 8px;
  padding-bottom: 5px;
}

/*--------------------------------- IMG HANDLING -------------------------------------------*/
.card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
  border-radius: 12px;
  border: 1px solid lightgray;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

img {
  margin: 0px;
  border: none;
}

img[src*="#whole"] {
  width: 100%;
  height: 100%;
}

img[src*="#half"] {
  width: 49%;
  height: 49%;
}

img[src*="#third"] {
  width: 32%;
  height: 32%;
}

/*--------------------------------- NARROW -------------------------------------------*/
@media only screen and (max-width: 1060px) {
  .page {
    width: 95%;
  }
}
/*--------------------------------- TABLET -------------------------------------------*/
@media only screen and (max-width: 768px) {
  body {
    font-size: 19.5px;
  }
  .banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 50px;
  }
  .leftside img {
    width: 80%;
  }
  .cardbox {
    grid-template-columns: repeat(2, 1fr);
  }
  img[src*="#whole"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#half"] {
    width: 100%;
    height: 100%;
  }
  img[src*="#third"] {
    width: 100%;
    height: 100%;
  }
  iframe {
    width: 100%;
  }
  .verticalSpacer {
    height: 4px;
  }
  .content {
    width: 90%;
    margin: 35px auto;
    padding: 0;
  }
}
/*--------------------------------- PHONE -------------------------------------------*/
@media only screen and (max-width: 544px) {
  .page {
    width: 98%;
    margin: 30px auto;
  }
  .menu {
    margin: 10px 0px 10px -8px;
  }
  .banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 25px;
  }
  .leftside {
    visibility: hidden;
    display: none;
  }
  .rightside {
    flex: 1;
    width: 100%;
    text-align: center;
    padding-left: 0%;
  }
  .cardlabel {
    font-size: 18.5px;
    text-transform: uppercase;
    margin: 0px auto 25px auto;
    font-weight: 600;
  }
  .cardbox {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding: 0 50px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .cardbox::-webkit-scrollbar {
    display: none; /* Chrome/Safari/WebKit */
  }
  .card {
    flex: 0 0 calc(100vw - 140px);
    min-width: calc(100vw - 140px);
    scroll-snap-align: center;
  }
}
/* Hide scrollbar on touch-only devices (no hover capability) */
@media (hover: none) and (pointer: coarse) {
  .cardbox {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .cardbox::-webkit-scrollbar {
    display: none; /* Chrome/Safari/WebKit */
  }
}
/* Show scrollbar on devices with hover capability (mouse/trackpad) */
@media (hover: hover) and (pointer: fine) {
  .cardbox {
    scrollbar-width: thin; /* Firefox - show thin scrollbar */
    -ms-overflow-style: auto; /* IE/Edge - show scrollbar */
  }
  .cardbox::-webkit-scrollbar {
    display: block; /* Chrome/Safari/WebKit - show scrollbar */
    height: 8px; /* Optional: customize scrollbar height */
  }
  .cardbox::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Optional: customize scrollbar color */
    border-radius: 4px;
  }
}

/*# sourceMappingURL=styles.css.map */