/*
  Jake Barr Personal Training - Site Stylesheet
  Notes:
  - Uses CSS variables for theme.
  - Mobile nav opens via [data-open="true"].
  - Lightbox uses body.no-scroll to lock scroll.
*/

:root {
  --bg: #07070a;
  --card: #0f0f14;
  --text: #f2f2f2;
  --muted: #b9b9c2;
  --line: rgba(255, 255, 255, 0.10);
  --accent: #e10613;
  /* red */
  --gold: #c9a227;
  /* optional gold accent */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--bg);
  position: relative;
}

/* Moving gradient overlay */
body::before {
  content: "";
  position: fixed;
  /* key change */
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(225, 6, 19, 0.10), transparent 55%);

  background-repeat: no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 7, 10, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-title strong {
  letter-spacing: 0.6px;
}

.brand-title span {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  /* anchors dropdown */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  border-color: rgba(225, 6, 19, 0.45);
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.18), rgba(201, 162, 39, 0.10));
  box-shadow:
    0 0 0 1px rgba(225, 6, 19, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.30),
    0 0 16px rgba(225, 6, 19, 0.18);
  transform: translateY(-1px);
}

.nav-links a:active {
  transform: translateY(1px);
}

.nav-links a:focus-visible {
  outline: none;
  color: var(--text);
  border-color: rgba(225, 6, 19, 0.70);
  box-shadow:
    0 0 0 3px rgba(225, 6, 19, 0.25),
    0 10px 24px rgba(0, 0, 0, 0.30);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.12);
}

.nav-toggle {
  display: none;
  /* shown on mobile */
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle:active {
  transform: translateY(1px);
}

.menu-icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* Instagram icon button */
.instagram-header {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.instagram-header .insta-icon {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.instagram-header:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg,
      rgba(131, 58, 180, 0.35),
      rgba(253, 29, 29, 0.35),
      rgba(252, 176, 69, 0.35));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(253, 29, 29, 0.35),
    0 0 22px rgba(131, 58, 180, 0.25),
    0 0 20px rgba(252, 176, 69, 0.25);
}

/* Cards / Buttons */
.card {
  background: rgba(15, 15, 20, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Community challenge image (clickable) */
.challenge-image-link {
  display: block;
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  /* crops corners to match card */
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.challenge-image-link img {
  width: 100%;
  height: auto;
  /* no forced crop */
  max-height: 520px;
  /* keeps it sensible */
  object-fit: contain;
  /* show whole image */
  display: block;
  background: rgba(0, 0, 0, 0.25);
  /* avoids ugly empty space */
}

.challenge-image-link:hover img,
.challenge-image-link:focus-visible img {
  transform: scale(1.03);
}

.feature-clickable {
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, filter 160ms ease;
}

.feature-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 19, 0.55);
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.14), rgba(201, 162, 39, 0.10));
  box-shadow:
    0 0 0 1px rgba(225, 6, 19, 0.14),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(225, 6, 19, 0.18);
}

.feature-clickable:active {
  transform: translateY(0);
}

.feature-clickable:focus {
  outline: none;
}

.feature-clickable:focus-visible {
  border-color: rgba(225, 6, 19, 0.70);
  box-shadow:
    0 0 0 3px rgba(225, 6, 19, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 19, 0.55);
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.20), rgba(201, 162, 39, 0.12));
  box-shadow:
    0 0 0 1px rgba(225, 6, 19, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(225, 6, 19, 0.22);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  border-color: rgba(225, 6, 19, 0.70);
  box-shadow:
    0 0 0 3px rgba(225, 6, 19, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.95), rgba(201, 162, 39, 0.70));
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 39, 0.40);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(225, 6, 19, 0.20),
    0 0 18px rgba(201, 162, 39, 0.18);
  filter: brightness(1.08);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Home hero */
.hero {
  padding: 60px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.hero-card {
  padding: 26px;
}

.hero-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.2px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

/* Right column should match left card height and distribute the 3 cards */
.hero-side{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 14px;                 /* controls the minimum gap */
}

/* Make the right cards feel a bit larger */
.hero-side .hero-feature{
  flex: 1 1 0;
  padding: 22px;
  min-height: 96px;

  display: flex;            /* required */
  flex-direction: column;
  justify-content: center;  /* vertical centering */
}

.gallery-card {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}


/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Testimonials spacing */
.section .card {
  padding: 28px;
}

.quotes-scroller {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* we’ll control spacing manually */
}

.section[aria-label="Testimonials"] .card {
  padding: 28px;
}

.quote {
  padding: 20px 0;
  line-height: 1.6;
}

/* Divider line between testimonials */
.quote:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

.quote {
  font-size: 15px;
  color: #d7d7e0;
}

.quote small {
  display: block;
  margin-top: 10px;
  color: #b9b9c2;
}

/* Testimonials scroller */
.quotes-scroller {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overscroll-behavior: contain;
}

/* nicer scrollbar (Chromium/Edge) */
.quotes-scroller::-webkit-scrollbar {
  width: 10px;
}

.quotes-scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.quotes-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.quotes-scroller::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Footer area inside side-card */
.side-card-footer .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 14px 0;
}

.side-card-note {
  color: var(--muted);
  font-size: 13px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

/* Pills look like before (single element), but now pressable */
.pills li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e7e7ee;
  font-size: 14px;
}

/* Interactivity + same hover theme as buttons */
.pills li.pill-clickable {
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.pills li.pill-clickable:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 6, 19, 0.55);
  background: linear-gradient(135deg, rgba(225, 6, 19, 0.20), rgba(201, 162, 39, 0.12));
  box-shadow:
    0 0 0 1px rgba(225, 6, 19, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(225, 6, 19, 0.22);
}

.pills li.pill-clickable:active {
  transform: translateY(1px);
}

.pills li.pill-clickable:focus {
  outline: none;
}

.pills li.pill-clickable:focus-visible {
  outline: none;
  border-color: rgba(225, 6, 19, 0.70);
  box-shadow:
    0 0 0 3px rgba(225, 6, 19, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.35);
}


.side-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.side-card .quote {
  color: #e9e9ef;
  font-size: 15px;
}

.side-card .quote small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 22px 0 60px;
}

.section h2 {
  margin: 0 0 10px;
}

.section p {
  margin: 1;
  color: var(--muted);
}

/* Features */
.grid-3 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  padding: 18px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Inner pages */
.page-hero {
  padding: 34px 0 10px;
}

.page-hero h1 {
  margin: 0 0 8px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0b0b10;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 200ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Forms */
form {
  margin-top: 18px;
  padding: 18px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

/* Instagram preview */
.ig-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .brand {
    min-width: unset;
  }

  .quotes-scroller {
    max-height: 320px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Dropdown panel */
  .nav-menu {
    position: absolute;
    right: 0;
    top: 56px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 15, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
  }

  .instagram-header {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-self: center;
  }

  /* Hero mobile polish */
  .hero {
    padding: 34px 0 20px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card h1 {
    line-height: 1.08;
  }

  .cta-row .btn {
    width: 100%;
    padding: 14px 16px;
  }

  .pills {
    gap: 8px;
  }

  .pills li {
    width: 100%;
    border-radius: 14px;
    padding: 12px;
  }

  .side-card {
    padding: 18px;
  }
}

/* --- Gallery Lightbox (fixed + centered + always on-screen) --- */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  display: block;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;

  object-fit: contain;

  background: transparent;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .35);
  color: #fff;

  font-size: 28px;
  line-height: 40px;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

/* -------------------- Index photo strip -------------------- */

.index-photos {
  padding: 18px;
}

.index-photos-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.index-photo-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.index-photo-strip::-webkit-scrollbar {
  height: 10px;
}

.index-photo-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.index-photo-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.index-photo {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  width: min(340px, 78vw);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
}

.index-photo img {
  width: 100%;
  height: 220px;
  /* consistent height */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 180ms ease;
}

.index-photo:hover img,
.index-photo:focus-visible img {
  transform: scale(1.03);
}

@media (min-width: 900px) {
  .index-photo {
    width: 360px;
  }

  .index-photo img {
    height: 240px;
  }
}


/* --- Gallery slideshow (top of Gallery page) --- */
.gallery-slideshow {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, .12);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

/* Aspect ratio box */
.gallery-slideshow::before {
  content: "";
  display: block;
  padding-top: 42%;
}

.slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 160ms ease;
}

.slideshow-img.is-fading {
  opacity: 0.35;
}

.slideshow-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.10);
}

.slideshow-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(225, 6, 19, 0.9), rgba(201, 162, 39, 0.85));
}

@media (max-width: 640px) {
  .gallery-slideshow::before {
    padding-top: 62%;
  }
}

/* Match hero column spacing + equal column height */
/* Horizontal photo strip (Index + Bootcamps) */
.photo-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.photo-strip::-webkit-scrollbar {
  height: 8px;
}

.photo-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.photo-tile {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  flex: 0 0 auto;

  width: 240px;
  /* consistent tiles */
  height: 160px;
  /* consistent height */
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.03);
}

/* About page image card only */
.about-photo {
  align-self: start;
  /* stops it stretching to match left card */
  overflow: hidden;
  /* ensures rounded corners crop image */
  padding: 0;
  /* remove inner spacing */
}

/* Control image size */
.about-photo img {
  width: 100%;
  height: auto;
  max-height: 400px;
  /* reduce overall height */
  object-fit: cover;
  display: block;
}

/* ============================= */
/* GLOBAL PAGE SCROLLBAR        */
/* ============================= */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(225, 6, 19, 0.9) transparent;
}

/* Chrome / Edge / Safari */
html::-webkit-scrollbar {
  width: 12px;
  /* keep main site scrollbar width */
}

html::-webkit-scrollbar-track {
  background: transparent;
  /* remove grey background */
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(225, 6, 19, 0.95), rgba(201, 162, 39, 0.9));
  border-radius: 999px;
}

html::-webkit-scrollbar-button {
  display: none;
  /* removes arrows */
}



/* ============================= */
/* ALL INNER SCROLL AREAS       */
/* ============================= */

/* Firefox */
.quotes-scroller,
.ig-scroll,
.index-photo-strip,
.photo-strip {
  scrollbar-width: thin;
  scrollbar-color: rgba(225, 6, 19, 0.9) transparent;
}

/* WebKit */
.quotes-scroller::-webkit-scrollbar,
.ig-scroll::-webkit-scrollbar,
.index-photo-strip::-webkit-scrollbar,
.photo-strip::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  /* vertical ones thinner */
}

.quotes-scroller::-webkit-scrollbar-track,
.ig-scroll::-webkit-scrollbar-track,
.index-photo-strip::-webkit-scrollbar-track,
.photo-strip::-webkit-scrollbar-track {
  background: transparent;
  /* remove off-colour track */
}

.quotes-scroller::-webkit-scrollbar-thumb,
.ig-scroll::-webkit-scrollbar-thumb,
.index-photo-strip::-webkit-scrollbar-thumb,
.photo-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(225, 6, 19, 0.9), rgba(201, 162, 39, 0.85));
  border-radius: 999px;
}

.quotes-scroller::-webkit-scrollbar-button,
.ig-scroll::-webkit-scrollbar-button,
.index-photo-strip::-webkit-scrollbar-button,
.photo-strip::-webkit-scrollbar-button {
  display: none;
  /* remove arrows */
}

/* --- Spotlight blurred background image --- */

.spotlight-media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blurred background layer */
.spotlight-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px);
  transform: scale(1.15);
  opacity: 0.5;
}

/* Main image */
.spotlight-main {
  position: relative;
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}