.hero-slide{
  height:90vh;
  background-size:cover;
  background-position:center;
  position:relative;
}

.hero-slide::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-overlay{
  position:absolute;
  bottom:15%;
  left:8%;
  color:#fff;
}

.hero-overlay h1{
  font-size:64px;
  font-weight:900;
}

.hero-overlay h3{
  font-size:22px;
}

.hero-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 25px;
  background:#dc2626;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
}

.hero-btn:hover{
  background:#991b1b;
}

/* fixtures hero */
.fixtures-hero{
  position:relative;
  padding:80px 0 100px;
  background:url('../images/uwanja.jpg') center/cover no-repeat;
}

.fixtures-hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(79,7,2,0.9), rgba(241,7,7,0.8));
}

.fixtures-hero .container{
  position:relative;
  z-index:2;
}

.section-title{
  font-size:48px;
  font-weight:800;
}

.sub-nav{
  display:flex;
  gap:20px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.sub-nav a{
  color:#fff;
  text-decoration:none;
}

@media(max-width:768px){
  .hero-overlay h1{ font-size:36px; }
}