:root {
  --brand-red: #ab2623;
  --brand-blue: #0b4ea6;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  background: #eff3f7;
}

/* NAVBAR */
.navbar-brand img { height: 48px; }
.nav-link { font-weight: 500;color:#222222 }
.nav-link:hover,
.nav-link.active { color: #000 !important; }

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero-thumbnail {
  position: absolute;
  inset: 0;
  background: url("assets/images/video-poster.jpg") center/cover no-repeat;
  cursor: pointer;
  z-index: 3;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-btn span {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  font-size: 34px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.hero-thumbnail:hover span { transform: scale(1.1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,78,166,.45), rgba(171,38,35,.45));
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
  margin-bottom: 240px;
}
.hero-content h1 { font-size: 3rem; font-weight: 700; }

/* ---------- PRODUCT TILES ---------- */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 260px;
  cursor: pointer;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* DEFAULT BG COLORS */
 /* Overlay colors matching your image */
  .bg-navy {
    background-color: rgba(38, 55, 85, 0.88);
  }

  .bg-brick-red {
    background-color: rgba(147, 58, 56, 0.88);
  }

  .bg-olive {
    background-color: rgba(76, 104, 72, 0.88);
  }

  .bg-mustard {
    background-color: rgba(214, 181, 92, 0.88);
  }

  .bg-charcoal {
    background-color: rgba(60, 60, 60, 0.75);
  }

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  transition: background-color 0.8s ease, opacity 0.6s ease;
}

.tile-overlay h3,
.tile-overlay p {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tile:hover img {
  transform: scale(1.15);
}

/* HOVER → BG COLOR REMOVE */
.tile:hover .tile-overlay {
  background-color: transparent;
}

.tile:hover h3,
.tile:hover p {
  opacity: 0;
  transform: translateY(15px);
}

.tile h3 {
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { height: 60vh; }
  .hero-content h1 { font-size: 2rem; }
  .tile { min-height: 200px; }

  .tile:hover h3,
  .tile:hover p {
    opacity: 1;
    transform: none;
  }
}

/* FOOTER */
 footer{
    color:#fff;
    font-size: 16px;
    text-decoration:none;
}    
         footer a{color:#fff;text-decoration:none;} 