/*
  JASON SUPER ONLINE
  (c)2026 Jason K Luckett. All rights reserved.
  
  Style Sheet 2026-05-21

*/

html, body {
  margin: 0;
  padding: 0;
}

.heading {
  text-align: center;
  margin: 0 auto;
}

.heading img {
  max-width: 100%;
}

.banner {
  text-align: center;
  font-family: 'Gill Sans';
  padding: 20px;
  background: blue;
}

#message a {
  color: white;
  text-decoration: none;
}

#reel1, #reel2 {
  width: 90%;
  aspect-ratio: 16/9;
  border: 0; 
}

.title-logo img {
  max-width: max(120px,16%);
  margin: 7% 0% 4.5% 0%;
}

.brags img {
  width: max(400px,45%);
}

#videos, #images {
  margin: 0 5%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.play {
  position: relative;
  margin: 10px;
  width: max(300px,27%);
  flex: 1 1 27%;
  background: gray;
}

.play video, .play .img {
  width: 100%;
  height: auto;
  display: block;
}

.playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.playbtn img {
  width: 100%;
  height: auto;
  display: block;
}

#shortArrows {
  display: inline-flex;
  text-align: center;
  vertical-align: middle;
}
#shortArrows > img {
  height: 48px;
  margin: 4px 8px;
  cursor: pointer;
}

/* play items: Stack vertically on narrow screens */
@media (max-width: 768px) {
  .play {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.email-scroll {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
  margin: 2.5% 0% 0% 0%;
}

.scroll-content-left {
  display: inline-block;
  animation: scroll-left 15s linear infinite;
}

.scroll-content-right {
  display: inline-block;
  animation: scroll-right 15s linear infinite;
}

.scroll-content-left img, .scroll-content-right img {
  display: inline-block;
  height: 35px;   /* adjust to your email image height */
  margin: 0 40px; /* spacing between repeats */
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  100%   { transform: translateX(0); }
  0% { transform: translateX(-50%); }
}

#socialmedia {
  text-align: center;
  margin: 32px auto;
}

#socialmedia a {
  margin: 0 8px;
}

#socialmedia a img {
  height: 48px;
}


/******************************** Scroller Styles ********************************/


/* * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    font-family: Arial, sans-serif; 
    padding: 20px; 
    background: #f0f0f0; 
} */
.carousel-container {
    max-width: 98%; 
    margin: 0 auto; 
    position: relative; 
    padding: 20px; 
    Zborder-radius: 10px; 
    Zbox-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
.carousel-wrapper { 
    overflow: hidden; 
    position: relative;
    width: 100%;
}
.carousel-track { 
    display: flex; 
    padding-right: 20px;
    transition: transform 0.5s ease-in-out; 
}
.carousel-item { 
    Zflex-shrink: 1;
    Zalign-items: stretch;
    position: relative;
}
.carousel-item img,
.carousel-item video { 
    padding: 30px;
    width: 100%; 98%; 
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit:contain;
    align-items:center;
    Zborder-radius: 8px; 
    display: block;
    background: white;
}
.carousel-item video {
    Zcursor: pointer;
}
.video-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent; rgba(0, 0, 0, 0.7);
    Zpadding: 8px;  15px;
    Zborder-radius: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 5;
}
.video-controls button {
    background: transparent;
    border: none;
    Zcolor: white;
    Zfont-size: 18px;
    cursor: pointer;
    Zpadding: 5px;
    margin-left: 20px;
    transition: transform 0.2s;
}
.video-controls button:hover {
    transform: scale(1.2);
}
.video-controls > button > img {
  width: 48px;
  background-color: transparent;
}
.media-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 5;
}
.carousel-button { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background 0.3s; 
    z-index: 10; 
}
.carousel-button:hover { 
    background: rgba(0, 0, 0, 0.8); 
}
.carousel-button.prev { 
    left: 10px; 
}
.carousel-button.next { 
    right: 10px; 
}
.carousel-dots { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-top: 20px; 
}
.dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    background: #ddd; 
    cursor: pointer; 
    transition: background 0.3s; 
}
.dot.active { 
    background: #333; 
}

/* Responsive breakpoints - 9:16 vertical ratio */
/* Mobile: 1 item */
@media (max-width: 767px) {
    .carousel-item { 
        min-width: 100%; 
        width: 100%;
    }
    .carousel-item img,
    .carousel-item video {
        /* min-height: 400px;
        max-height: 600px; */
        height: auto;
    }
}

/* Tablet: 2 items */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-item { 
        min-width: 50%; 
        width: 50%;
    }
    .carousel-item img,
    .carousel-item video {
        /* min-height: 350px;
        max-height: 500px; */
        height: auto;
    }
}

/* Desktop: 3 items */
@media (min-width: 1024px) {
    .carousel-item { 
        min-width: 33.333%; 
        width: 33.333%;
    }
    .carousel-item img,
    .carousel-item video {
        /* min-height: 400px;
        max-height: 550px; */
        height: auto;
    }
}

@media (min-width: 900px) {
    .carousel-item img,
    .carousel-item video {
        max-height: 1600px;
    }
}
