::selection {
  background: #000;
  color: #fff;
}
#showreel {
  background-color: #000;
  }
::-moz-selection {
  background: #000;
  color: #fff;
}
a {
  color: black;
}
a:hover {
  color: white;
  background-color: black;
}
#jean {
  font-weight: 700;
}
.hero {
  min-height: 90vh;      /* fills the full viewport height */
  min-height: 90svh;     /* better on mobile browsers with dynamic toolbars */
  width: 100%;
}

.hero-text {
  max-width: 900px;       /* keeps long lines readable */
  font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); /* bigger across the board */
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0 1rem;        /* breathing room on small screens */
}

.hero {
  position: relative;
  overflow: hidden;
}

#interactive-grid{
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;
}

#interactive-grid svg{
    width:100%;
    height:100%;
    display:block;
}

#interactive-grid circle{
    fill: #0091ff;
    opacity: .2;
}

/* ============================
   Lottie backgrounds (reusable on any section)
   ============================ */

/* Add this class to ANY section that should have a lottie background.
   .hero already gets it directly in the HTML. */
.lottie-section {
  position: relative;
  overflow: hidden;
}

.lottie-bg {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  z-index: 0;
  pointer-events: none;  /* clicks/hover pass through to the text above */
  transform: scale(var(--lottie-scale, 1));
  transform-origin: center;
}

/* Lottie injects an <svg> into this div — force it to fill the layer.
   Scale is applied on the wrapper (.lottie-bg) above, not here, since we
   control that element directly rather than the one Lottie generates. */
.lottie-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* The text needs a higher stacking context to render above the animation.
   Covers both patterns: text wrapped in .container (like .hero), and text
   as a direct child of the section itself (like .txt-text). */
.lottie-section .container,
.lottie-section > p {
  position: relative;
  z-index: 1;
}
.underline {
text-decoration: black underline !important;
text-decoration-thickness: 0.06em !important;
text-underline-offset: 0.1em !important;
}
body {
  background-color: #F3F3F3;
    font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}



@keyframes infiniteScroll {
  from {transform: translateX(0)}
  to {transform: translateX(-50%)}
}
.horizontal-scrolling-items {
  font-family: "Outfit", sans-serif;
  color: black;
  font-weight: 700;
  display: flex;
  font-size: 8vw;
  width: 1920px;
  display: flex;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
.horizontal-scrolling-items__item {
  white-space: nowrap;
}
html { overflow-y: scroll; }

.horizontal-scrolling-items {
  font-size: 4vw;

}

#info {
padding-top: 4em;
padding-bottom: 4em;
  }
  #info p {
    margin-bottom: 0.5rem;
    }

#hover-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 15em;
  display: none;
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
}

.carousel video{
  display: block;
  height: 300px;
  margin-right: 10px;
}

@media screen and ( min-width: 768px ) {
  .carousel video{
  display: block;
  height: 500px;
  margin-right: 20px;
}


}
.txt {
  min-height: 70vh;      /* fills the full viewport height */
  min-height: 70svh;     /* better on mobile browsers with dynamic toolbars */
  width: 100%;

}

.txt-text {
    max-width: 900px;       /* keeps long lines readable */
  font-size: clamp(1.25rem, 3vw + 1rem, 2.5rem); /* bigger across the board */
  font-weight: 500;
  line-height: 1.2;
  margin: 2rem auto;
       /* breathing room on small screens */
}

.my-table {
  margin-bottom : 4rem;
}

.my-table td,
.my-table th {
font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
 font-weight: 500;

border-bottom-width: 2px !important;
border-color: black !important;
}
.blue {
color: #0091ff;
}