.fairway-red {
  color: #bd1921;
}
.bg-fairway-red {
  background-color: #bd1921;
}
.image-bg {
  background-size: cover;
  background-position: center;
}
.small-container {
  max-width: 1050px;
}
#index-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -1;
  min-height: 400px;
  height: calc(100vh - 550px);

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 1s ease-in-out;
  overflow-x: hidden;
}
#page-container {
  min-height: 400px;
  height: calc(100vh - 550px);
  padding-top: 60px;
}
#index-bg img {
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s ease-in-out;
}

#index-bg img.slide-out-left {
  transform: translateX(-100%);
}

#index-bg img.slide-in-from-right {
  transform: translateX(100%);
}

#index-bg img.active {
  transform: translateX(0);
}

body {
  overflow-x: hidden;
}

#logo {
  transition: opacity 0.3s ease-in-out;
}

.btn-primary {
  background-color: #bd1921;
  border-color: #bd1921;
}
.btn-primary:hover {
  background-color: #a00f16;
  border-color: #a00f16;
}
.large-icon {
  font-size: 6rem;
}
@media screen and (min-width: 1200px) {
  .bulls-padding {
    padding-right: 57px;
  }
  .rounded-lg-pill {
    border-radius: 1000px !important;
  }
}
.image-bg {
  min-height: 200px;
}
#navbar-menu {
  display: flex;
}
#navigation {
  max-width: 100vw;
}
@media screen and (max-width: 991px) {
  #navbar-menu {
    padding-top: 10px;
  }
  #navigation {
    background-color: #fff;
  }
}
.navbar-toggler {
  border-radius: 0;
  border: none;
  outline: none;
}

/* Skeleton loading placeholders */
@keyframes fairway-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Apply to image tiles while loading */
.image-bg.is-loading {
  position: relative;
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.06) 25%,
    rgba(0, 0, 0, 0.12) 37%,
    rgba(0, 0, 0, 0.06) 63%
  );
  background-size: 200% 100%;
  animation: fairway-shimmer 1.25s linear infinite;
}

/* Optional: smooth-in once loaded */
.image-bg.is-loaded {
  animation: none;
  transition: opacity 200ms ease, filter 200ms ease;
}
