/* Main child theme styles for homepage hero and components */

:root {
  --font-sans: "VF FuturaLT", sans-serif;
}

html,
body {
  font-family: var(--font-sans);
}

/* Page background */
body {
  background-color: #000000 !important;
  color: #ffffff;
}

/* Ensure partner card container has no extra padding that could show background */
.swiper .rounded-lg {
  padding: 0;
  background: transparent;
}

/* Fallbacks in plain CSS so classes work even if Tailwind browser compile misses them */
.font-primary {
  font-family: var(--font-sans) !important;
}

.partner-thumb {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* Hero 16:9 viewport */
.hero-viewport {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.hero-viewport .swiper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.hero-viewport .swiper-wrapper,
.hero-viewport .swiper-slide {
  height: 100%;
}

.hero-viewport .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-family: "VF FuturaLT", sans-serif;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.hero-span {
  font-family: "VF FuturaLT", sans-serif;
  font-weight: 300 !important;
  text-transform: uppercase;
}

/* Fix hover effect for links inside slides */
.swiper-slide a {
  display: block;
}
