

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-weight: 900;
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'AmericanTypewriter';
  src: url('../fonts/American Typewriter Bold.ttf') format('truetype');
}

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1 {
    font-family: "AmericanTypewriter", serif;
    font-size: 50px;
    margin: 0.5rem 0;
    line-height: 1em;
}

p {
    margin: 0.5rem 0;
}

header, main, .footer-copy {
    padding: 0rem 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.logo-placeholder {
    width: 150px;
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
}
.mobile-menu {
    display: none;   
}

nav ul {
    list-style: none;
} 

nav ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5rem;
}

nav ul li a  {
    color: #000;
    text-decoration: none;
}
nav ul li a span {
    font-weight: 900;
}
nav ul li img {
    height: 20px;
}

.nav-toggle {
    display: none;
}

.hero-carousel {
    overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  margin: auto;
  overflow: hidden;
  border-radius: 25px;
}

.carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  transition: transform 0.5s linear;
}

.carousel-slide {
    min-width: 25%;
    height: 400px;
    border-radius: 25px;
    flex-shrink: 0;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.carousel-slide img {
  width: 55%;
  border-radius: 25px;
  display: block;
}

.carousel-caption {
    width: 25%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3rem;
    color: #000;    
} 

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0%);
    z-index: 2;
}
.carousel-slide.move-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.odd .carousel-caption {
    color: #fff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
  gap: 0.5rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.6;
  transition: background 0.3s, opacity 3s;
  
  cursor: pointer;
}
.carousel-dot.active {
  background: #fff;
  width: 20px;
  height: 12px;
  border-radius: 10px;
  opacity: 1;
}   

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}

.tiles-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem !important;
}

.video-item {
    width: 30%;
}

.video-item img {
    width: 100%;
}

.video-img {
    position: relative;
}

.play-btn {
    position: absolute; 
    bottom: 1rem;
    left: 1rem;
    width: 50px !important;
    height: 50px !important;
}
.awards-wrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}
.awards-logo {
    width: 50px !important;
    height: 50px;
}

.video-copy h3 {
    font-family: "AmericanTypewriter", serif;
    font-size: 24px;
    margin: 0.5rem 0;
}

.video-copy p {
    font-size: 16px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 0rem;
    margin: 3rem auto 0 !important; 
}

footer p {
    font-size: 14px;
}