body { font-family: tt-commons-pro, sans-serif; font-weight: 300; font-style: normal; }

.bg-dark { background-color: #373535 !important; }

.launching-banner { background-color:#373535; text-align:center; color:#ffffff; padding: 0.6rem 0; font-weight: 500; }

/* Hero */
/*
.hero { height: 100vh; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
*/

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;         /* hero height now follows width */
  overflow: hidden;
  background: #000;             /* behind any letterboxing/cropping */
  height: auto;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fills the 16:9 hero without distortion */
  object-position: center;
  display: block;
  z-index: 0;
}

.hero-overlay,
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10% !important;
}

.hero-content .btn
{
  margin-top:2rem;
}

.product-hero-words {
  font-size: 1.2rem !important;
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35)); }
/*.hero-content { position: relative; z-index: 2; top: 50%; transform: translateY(-50%); font-weight: }*/
.logo { max-width: 500px; }
footer .logo { max-width:50%; }

@media (max-width: 767.98px) { 
  
   .hero { padding-bottom: 2rem; padding-bottom: 125%; overflow: hidden; height: 0; }
   .hero-video { posiiton: absolute; top: 0; left: 0; width:100%; height: 100%; object-fit: cover; }
   .logo { max-width:300px !important;}
   .hero-content { padding-top: 25% !important; }
   .hero-content .btn { margin-top:1.5rem;  }
   .hero-content .display-9 { font-size: 1.5rem !important; }
}
 
 @media (min-width: 1000px) { 
    .hero-content { padding-top: 15% !important; }
    .product-hero-words { font-size: 1.7rem !important; }
}


/* Features */
.feature-icon { width: 64px; height: 64px; object-fit: contain; }

/* Founder image */
.founder-img { width: 150px; height: 150px; object-fit: cover; }

/* Layout niceties */
.rounded-4 { border-radius: 1rem; }


/* ===== Scrolling marquee ===== */
.marquee-strip {
  overflow: hidden;            /* hide overflow for the loop */
}

.marquee-track {
  display: flex;
  width: max-content;          /* shrink-wrap contents */
  animation: marquee-scroll var(--marquee-speed, 28s) linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 3rem;                   /* space between items */
  padding: 0 1.5rem;           /* small inner padding to prevent gap snap */
  margin: 0;
  list-style: none;
  flex-shrink: 0;              /* keep group width fixed so the loop is smooth */
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.marquee-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: none;                /* icons are already light-on-dark */
}

/* Optional: pause on hover */
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* The loop: translate the width of the first group (50% of the track) */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Small screens: tighten spacing a bit */
@media (max-width: 576px) {
  .marquee-group { gap: 1.5rem; }
  .marquee-icon  { width: 40px; height: 40px; }
}

/* ===== Superfoods section ===== */
#superfoods .h1 { margin-bottom: .25rem; }

.superfood-icon-wrap {
  /*
  width: 160px;
  height: 160px;
  border: 3px solid #3a3a3a;
  border-radius: 50%;
  */
  display: grid;
  place-items: center;
  background: transparent;
}

.superfood-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

/* If the provided SVGs are white-line icons, this filter makes them dark on white bg */
.superfood-icon.darkize {
  filter: invert(1) brightness(0.2);
}

@media (max-width: 576px) {
  .superfood-icon-wrap { width: 120px; height: 120px; }
  .superfood-icon { width: 64px; height: 64px; }
}

/* Product range cards */
.product-card {
  border-radius: 16px;                 /* soft rounded corners like the design */
  background: #fff;
}
.product-media {
  background: #e7dfd2;                 /* warm beige backdrop behind placeholder */
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.product-card .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#product-range ul {
  padding-left: 1.1rem;                /* tidy bullets */
}

/* ===== Three promo tiles ===== */
.promo-tile {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  background: #000;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transform: scale(1.02);              /* slight crop like the comp */
}

/* Dark gradient for legible text */
.promo-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
	to top,
	rgba(0,0,0,.55) 0%,
	rgba(0,0,0,.25) 35%,
	rgba(0,0,0,0) 60%
  );
  pointer-events: none;
}

.promo-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  color: #fff;
  z-index: 1;
}

.promo-lines {
  font-size: clamp(1rem, 1.2vw + .6rem, 1.6rem); /* responsive size */
  line-height: 1.2;
}

/* Optional: subtle hover */
.promo-tile:hover .promo-img { transform: scale(1.05); transition: transform .5s ease; }

/* Stack on small screens */
@media (max-width: 767.98px) {
  .promo-lines { font-size: 1.25rem; }
}

.btn-primary {
	background-color: #373535;
	border: 1px solid #fff;
}

.btn-primary:hover {
	border: 1px solid #373535;
	background-color:#ffffff;
    color: #373535 !important;
}


a { color: #ffffff !important; font-weight:bold; }
a:hover { text-decoration: underline; }

.svg-inline--fa {
  height: 1.5em !important; 
  width: 1.5em !important;
  margin-right:1em;
}
