

/* HERO WITH IMAGE + GRADIENT */
.fixtures-hero{
  position:relative;
  color:#fff;
  padding:80px 0 100px;
  overflow:hidden;

  /* IMAGE YA UWANJA */
  background:url('../images/uwanja.jpg') center/cover no-repeat;
}

/* GRADIENT OVERLAY */
.fixtures-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:linear-gradient(
    135deg,
    rgba(79, 7, 2, 0.95),
    rgba(241, 7, 7, 0.85)
  );

  z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.fixtures-hero .container{
  position:relative;
  z-index:2;
}

/* TITLE */
.section-small{
  letter-spacing:2px;
  font-size:13px;
  opacity:0.8;
}

.section-title{
  font-size:48px;
  font-weight:800;
  margin:10px 0 30px;
}

/* SUB NAV */
.sub-nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,0.2);
  padding-bottom:10px;
}

.sub-nav a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  position:relative;
  padding-bottom:5px;
}

/* ACTIVE LINE */
.sub-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:3px;
  background:#ffffff;
}

/* TABS */
.fixtures-tabs{
  margin-top:-40px;
}

.tabs-wrapper{
  background:#eee;
  border-radius:40px;
  padding:10px;
  display:flex;
  justify-content:center;
  gap:20px;
  max-width:500px;
  margin:auto;
}

/* TAB */
.tab{
  border:none;
  background:transparent;
  padding:10px 25px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.tab.active{
  background:#fff;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* FILTER */
.filter-box{
  display:flex;
  justify-content:flex-end;
  margin-top:30px;
}

.filter-right{
  border-bottom:2px solid #ccc;
  padding-bottom:5px;
  cursor:pointer;
  font-weight:500;
}

.filter-right i{
  margin-left:10px;
}

/* MOBILE */
@media(max-width:768px){

  .section-title{
    font-size:32px;
  }

  .sub-nav{
    gap:10px;
  }

  .tabs-wrapper{
    flex-direction:column;
    border-radius:20px;
  }

  .filter-box{
    justify-content:center;
  }
}

/* HERO */
.post-hero{
  position:relative;
  height:450px;
  overflow:hidden;
}

.post-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */
.post-hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* TEXT */
.post-overlay{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  max-width:1200px;
  width:100%;
  padding:0 20px;
}