@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Mr+Dafoe&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap");

/* ---------------- NAVBAR ---------------- */

.navbar {
  background: linear-gradient(135deg, #28292c, #830415);
  backdrop-filter: blur(10px);
}

/* hero-banner */

.navbar-brand {
  color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f8f9fa !important;
  transform: translateY(-1px);
}

.navbar a i {
  color: #ffffff;
  transition: all 0.3s ease;
}

/* Search bar */
form.d-flex input.form-control {
  border-radius: 20px;
  border: 1px solid (135deg, #141518, #830415);
  background-color: #fff;
  color: #333;
}

form.d-flex button {
  border-radius: 20px;
  border-color: #f1f1f1;
  color: #f8eae3;
  background-color: transparent;
  transition: all 0.3s ease;
}

form.d-flex button:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #f8eae3;
  transform: scale(1.05);
  border: none;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  background-size: cover;
  height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 5px 4px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 600;
}

.hero h1 {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
}

.hero p {
  font-family: "Mr Dafoe", cursive;
  font-size: 25px;
  font-style: italic;
  color: #f8eae3;
}

/* Hero Button */
.hero .btn-primary {
  background-color: #ff6f20;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #e85d11;
}

/* Carousel */
.carousel-item {
  transition: transform 1s ease-in-out;
}

.carousel-inner {
  border-radius: 10px;
  overflow: hidden;
}

/* ---------------- PRODUCTS ---------------- */
#products {
  background-color: #f9f9f9;
}

#products h2,
#products h3 {
  text-align: center;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

#products h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.card-text {
  color: #444;
  font-size: 1rem;
  font-family: "Libre Baskerville", serif;
}

.btn-primary {
  background-color: #e85d11;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  border: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #ff6f20;
}

/* ---------------- CONTACT SECTION ---------------- */
#contact {
  background-color: #bf61508f;
  padding: 50px 0;
}

#contact img {
  height: 100%;
  object-fit: cover;
}

/* ---------------- FOOTER ---------------- */
footer {
  background-color: #050f19ea;
  color: #ddd;
  font-size: 0.95rem;
}

footer h5,
footer h6 {
  color: #fff;
}

footer p,
footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer hr {
  border-top: 1px solid #333;
  margin: 2rem 0 1rem;
}

footer small {
  color: #888;
}

/* Social Icons */
footer .fa-lg {
  font-size: 1.2rem;
}

footer .fa-facebook:hover {
  color: #3b5998;
}
footer .fa-twitter:hover {
  color: #1da1f2;
}
footer .fa-instagram:hover {
  color: #e4405f;
}

/* ---------------- AUTH (LOGIN/REGISTER) ---------------- */
.auth-section {
  background: url(./img/stadium.jpg) no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.auth-form {
  background-color: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
}

.auth-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.auth-logo {
  max-width: 75px;
}

.nav-tabs .nav-link {
  color: #fdfafa;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  background-color: #e85d11;
  color: #fff;
  border-color: transparent;
  border-radius: 8px 8px 0 0;
}

.form-control {
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #e85d11;
  box-shadow: none;
}

.form-label,
.form-check-label,
.text-end a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.text-end a:hover {
  color: #e85d11;
  text-decoration: underline;
}

.btn-success {
  background-color: #e85d11;
  color: #fff;
}

.btn-success:hover {
  background-color: transparent;
  border: 1px solid #e85d11;
  color: #e85d11;
}

.auth-section img {
  max-height: 90vh;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .auth-form {
    padding: 30px 20px;
    margin-top: 20px;
  }
}

/* League Icon: */

.league-icon {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.2s;
}
#leagueTabsContent {
  display: none;
}
.league-icon:hover {
  transform: scale(1.05);
  background-color: #f8f9fa;
}
.league-icon img {
  width: 100px;
  height: 100px;
}
.club-card {
  text-align: center;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.2s;
  font-size: 0.5rem;
}

.club-card:hover {
  transform: scale(1.03);
  background-color: #f1f1f1;
}

.club-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 2px;
  object-fit: contain;
}

.club-card p {
  font-size: 10px;
  margin: 0;
  font-weight: bold;
}

@media (max-width: 575.98px) {
  .club-card {
    font-size: 0.65rem;
    padding: 6px;
  }

  .club-logo {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .club-card {
    font-size: 0.7rem;
  }

  .club-logo {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .club-card {
    font-size: 0.75rem;
  }

  .club-logo {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 992px) {
  .club-card {
    font-size: 0.8rem;
  }

  .club-logo {
    width: 40px;
    height: 40px;
  }
}

/* Arsenal Specific */
.arsenal .hero-banner {
  height: 350px;
  background-image: url(../../img/bl.jpg);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.arsenal .discount-bar {
  background: #da291c;
  border-top: 3px solid #9c1001;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}

.arsenal .card-title {
  color: #da291c;
  font-weight: 550;
  font-size: 0.8rem;
}

.arsenal .card,
.chelsea .card,
.liverpool .card,
.mancity .card,
.aston-villa .card,
.tottenham .card,
.westham .card,
.crystal .card,
.man_u .card,
.brighton .card,
.fulham .card,
.bournemouth .card,
.newcastle .card,
.everton .card,
.nottingham .card,
.wolves .card,
.brentford .card {
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  transition: transform 0.5s ease;
  box-shadow: none;
}

.arsenal .card-text,
.chelsea .card-text,
.liverpool .card-text,
.mancity .card-text,
.aston-villa .card-text,
.tottenham .card-text,
.westham .card-text,
.crystal .card-text,
.man_u .card-text,
.brighton .card-text,
.fulham .card-text,
.bournemouth .card-text,
.newcastle .card-text,
.everton .card-text,
.nottingham .card-text,
.wolves .card-text,
.brentford .card-text {
  color: #1a1a1a;
  font-size: 1.05rem;
}

.arsenal .product-card:hover,
.chelsea .product-card:hover,
.liverpool .product-card:hover,
.mancity .product-card:hover,
.aston-villa .product-card:hover,
.tottenham .product-card:hover,
.westham .product-card:hover,
.crystal .product-card:hover,
.man_u .product-card:hover,
.brighton .product-card:hover,
.fulham .product-card:hover,
.bournemouth .product-card:hover,
.newcastle .product-card:hover,
.everton .product-card:hover,
.nottingham .product-card:hover,
.wolves .product-card:hover,
.brentford .product-card:hover {
  transform: scale(0.9);
  box-shadow: 0 4px 14px rgba(218, 41, 28, 0.4);
}

.arsenal .side-filters,
.chelsea .side-filters,
.liverpool .side-filters,
.mancity .side-filters,
.aston-villa .side-filters,
.tottenham .side-filters,
.westham .side-filters,
.crystal .side-filters,
.man_u .side-filters,
.brighton .side-filters,
.fulham .side-filters,
.bournemouth .side-filters,
.newcastle .side-filters,
.everton .side-filters,
.nottingham .side-filters,
.wolves .side-filters,
.brentford .side-filters {
  border-right: 2px solid #da291c;
  background-color: #fff5f4;
  padding: 15px;
}

.arsenal .side-filters h6 {
  font-size: 12px;
  color: #da291c;
  font-weight: bold;
  text-transform: uppercase;
}

.arsenal label,
.chelsea label,
.liverpool label,
.mancity label,
.aston-villa label,
.tottenham label,
.westham label,
.crystal label,
.man_u label,
.brighton label,
.fulham label,
.bournemouth label,
.newcastle label,
.everton label,
.nottingham label,
.wolves label,
.brentford label {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}

.arsenal .btn-primary,
.chelsea .btn-primary,
.liverpool .btn-primary,
.mancity .btn-primary,
.aston-villa .btn-primary,
.tottenham .btn-primary,
.westham .btn-primary,
.crystal .btn-primary,
.man_u .btn-primary,
.brighton .btn-primary,
.fulham .btn-primary,
.bournemouth .btn-primary,
.newcastle .btn-primary,
.everton .btn-primary,
.nottingham .btn-primary,
.wolves .btn-primary,
.brentford .btn-primary {
  background-color: #da291c;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.arsenal .btn-primary:hover,
.chelsea .btn-primary:hover,
.liverpool .btn-primary:hover,
.mancity .btn-primary:hover,
.aston-villa .btn-primary:hover,
.tottenham .btn-primary:hover,
.westham .btn-primary:hover,
.crystal .btn-primary:hover,
.man_u .btn-primary:hover,
.brighton .btn-primary:hover,
.fulham .btn-primary:hover,
.bournemouth .btn-primary:hover,
.newcastle .btn-primary:hover,
.everton .btn-primary:hover,
.nottingham .btn-primary:hover,
.wolves .btn-primary:hover,
.brentford .btn-primary:hover {
  background-color: #9c1001;
}

/* Chelsea */
.chelsea .hero-banner {
  height: 400px;
  background-image: url("https://ghettoradio.co.ke/wp-content/uploads/2025/05/Chelsea-Makes-History-.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.chelsea .side-filters h6 {
  font-size: 12px;
  color: #0033cc;
  font-weight: bold;
  text-transform: uppercase;
}
.chelsea .discount-bar {
  background: #0033ccb9;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.chelsea .card-title {
  color: #0033cc;
  font-weight: 550;
  font-size: 0.8rem;
}

/* liverpool */
.liverpool .hero-banner {
  height: 400px;
  background-image: url("https://resources.premierleague.pulselive.com/photo-resources/2025/05/25/c310dd76-9fe3-40b6-ae43-a3227ac69503/Virgil-van-Dijk-lifts-Premier-League-Trophy.png?width=1400&height=800");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.liverpool .side-filters h6 {
  font-size: 12px;
  color: #c8102e;
  font-weight: bold;
  text-transform: uppercase;
}
.liverpool .discount-bar {
  background: #c8102e;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.liverpool .card-title {
  color: #c8102e;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Man City */
.mancity .hero-banner {
  height: 400px;
  background-image: url("https://e3.365dm.com/24/11/2048x1152/skynews-manchester-city-football_6754426.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.mancity .side-filters h6 {
  font-size: 12px;
  color: #6cabdd;
  font-weight: bold;
  text-transform: uppercase;
}
.mancity .discount-bar {
  background: #6cabdd;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.mancity .card-title {
  color: #6cabdd;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Aston Villa */
.aston-villa .hero-banner {
  height: 400px;
  background-image: url("https://cdn.ca.emap.com/wp-content/uploads/sites/8/2022/03/Villa-Park-1024x682.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.aston-villa .side-filters h6 {
  font-size: 12px;
  color: #7a2a8c;
  font-weight: bold;
  text-transform: uppercase;
}
.aston-villa .discount-bar {
  background: #7a2a8c;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.aston-villa .card-title {
  color: #7a2a8c;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Tottenham */
.tottenham .hero-banner {
  height: 400px;
  background-image: url("https://a4.espncdn.com/combiner/i?img=%2Fphoto%2F2025%2F0521%2Fr1496345_1296x729_16%2D9.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.tottenham .side-filters h6 {
  font-size: 12px;
  color: #132257;
  font-weight: bold;
  text-transform: uppercase;
}
.tottenham .discount-bar {
  background: #132257;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.tottenham .card-title {
  color: #132257;
  font-weight: 550;
  font-size: 0.8rem;
}

/* westham */
.westham .hero-banner {
  height: 400px;
  background-image: url("https://cdn.whufc.com/sites/default/files/inline-images/NobieWallpaper1220_0.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.tottenham .side-filters h6 {
  font-size: 12px;
  color: #7a2a8c;
  font-weight: bold;
  text-transform: uppercase;
}
.tottenham .discount-bar {
  background: #7a2a8c;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.tottenham .card-title {
  color: #7a2a8c;
  font-weight: 550;
  font-size: 0.8rem;
}

/* crystal palace */
.crystal .hero-banner {
  height: 400px;
  background-image: url("https://w0.peakpx.com/wallpaper/547/193/HD-wallpaper-crystal-palace-fc-glitter-logo-premier-league-blue-checkered-background-soccer-fc-crystal-palace-english-football-club-crystal-palace-logo-mosaic-art-football-england.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba( 0, 0, 0, 0.7);}
.crystal .side-filters h6 {
    font-size: 12px;
    color: #1b458f;
    font-weight: bold;
    text-transform: uppercase;
}
.crystal .discount-bar {
    background: #1b458f;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    text-align: center;
    letter-spacing: 0.5px;
}
.crystal .card-title {
    color: #1b458f;
    font-weight: 550;
    font-size: 0.8rem;
}

/* Manchester United */
.man_u .hero-banner {
  height: 400px;
  background-image: url('../assets/img/bl.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.man_u .side-filters h6{
    font-size: 12px;
    color: #da291c;
    font-weight: bold;
    text-transform: uppercase;
}
.man_u .discount-bar {
    background: #da291c;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    text-align: center;
    letter-spacing: 0.5px;
}
.man_u .card-title {
    color: #da291c;
    font-weight: 550;
    font-size: 0.8rem;
}

/* Brighton */
.brighton .hero-banner {
  height: 400px;
  background-image: url("https://i.eurosport.com/2021/09/20/3223781-65992888-2560-1440.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.brighton .side-filters h6 {
  font-size: 12px;
  color: #0057b8;
  font-weight: bold;
  text-transform: uppercase;
}
.brighton .discount-bar {
  background: #0057b8;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.brighton .card-title {
  color: #0057b8;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Fulham */
.fulham .hero-banner {
  height: 400px;
  background-image: url("https://www.shutterstock.com/image-photo/fulham-london-november-15-panoramic-260nw-1585549831.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.fulham .side-filters h6 {
  font-size: 12px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
}
.fulham .discount-bar {
  background: #000000;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.fulham .card-title {
  color: #000000;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Bournemouth */
.bournemouth .hero-banner {
  height: 400px;
  background-image: url("https://resources.premierleague.pulselive.com/photo-resources/2024/08/31/d213092e-180c-4411-a317-a2050f3aea4a/BOU_1920x1280_2425.jpg?width=567&height=319");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.bournemouth .side-filters h6 {
  font-size: 12px;
  color: #ee2737;
  font-weight: bold;
  text-transform: uppercase;
}
.bournemouth .discount-bar {
  background: #ee2737;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.bournemouth .card-title {
  color: #ee2737;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Newcastle */
.newcastle .hero-banner {
  height: 400px;
  background-image: url("https://nufcfeed.com/imager/news/1413518/1751305673_b0464c6958.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.newcastle .side-filters h6 {
  font-size: 12px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
}
.newcastle .discount-bar {
  background: #000000;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.newcastle .card-title {
  color: #000000;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Everton */
.everton .hero-banner {
  height: 400px;
  background-image: url("https://wallpaper-house.com/data/out/7/wallpaper2you_143616.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.everton .side-filters h6 {
  font-size: 12px;
  color: #003399;
  font-weight: bold;
  text-transform: uppercase;
}
.everton .discount-bar {
  background: #003399;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.everton .card-title {
  color: #003399;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Nottingham */
.nottingham .hero-banner {
  height: 400px;
  background-image: url("https://assets.bwbx.io/images/users/iqjWHBFdfxIU/inZ3JNKnwKVM/v2/-1x-1.webp");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.nottingham .side-filters h6 {
  font-size: 12px;
  color: #c8102e;
  font-weight: bold;
  text-transform: uppercase;
}
.nottingham .discount-bar {
  background: #c8102e;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.nottingham .card-title {
  color: #c8102e;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Wolves */
.wolves .hero-banner {
  height: 400px;
  background-image: url("https://images.squarespace-cdn.com/content/v1/60c3d78ceb928a02de55546c/1629657982385-SSSBE7XGYHP6Z8TFSWXX/pic.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.wolves .side-filters h6 {
  font-size: 12px;
  color: #fcbf49;
  font-weight: bold;
  text-transform: uppercase;
}
.wolves .discount-bar {
  background: #fcbf49;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.wolves .card-title {
  color: #fcbf49;
  font-weight: 550;
  font-size: 0.8rem;
}

/* Brentford */
.brentford .hero-banner {
  height: 400px;
  background-image: url("https://www.shutterstock.com/image-photo/brentford-london-august-15-2021-260nw-1988859010.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.brentford .side-filters h6 {
  font-size: 12px;
  color: #f00;
  font-weight: bold;
  text-transform: uppercase;
}
.brentford .discount-bar {
  background: #f00;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}
.brentford .card-title {
  color: #f00;
  font-weight: 550;
  font-size: 0.8rem;
}