 .navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Force hamburger icon to show */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

 :root {
  --brand-red: #c62828;      /* rich football red */
  --brand-red-dark: #b71c1c; /* hover / emphasis */
}

 
 /* --------------------
   GLOBAL STYLES
-------------------- */
body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* --------------------
   NAVBAR
-------------------- */
.navbar {
  background: rgba(0, 0, 0, 0.92);
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin-left: 10px;
}

.nav-link:hover {
  color: #c9a24d !important;
}

/* --------------------
   BUTTONS
-------------------- */
.btn-accent {
  background: #c9a24d;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 28px;
  border: none;
}

.btn-accent:hover {
  background: #b18f3f;
  color: #000;
}

/* --------------------
   HERO SECTION
-------------------- */
/* Hero Section */
.hero-section {
  min-height: 70vh;              /* Gives it presence */
  display: flex;
  flex-direction: column;
  align-items: center;           /* Horizontal centering */
  justify-content: center;       /* Vertical centering */
  text-align: center;            /* Center text */
  background: white;             /* Clean background */
  padding: 40px 20px;
}

/* Logo */
.hero-logo {
  width: 150px;
  margin-bottom: 20px;
}

/* Headline */
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Subtext */
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}


/* Join Us Button */
.btn-join {
  background-color: #c62828; /* red */
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-join:hover {
  background-color: #b71c1c;
}

/* --------------------
   CTA SECTION
-------------------- */
.cta-section {
  background: #0d0d0d;
  color: white;
  padding: 80px 0;
}

/* --------------------
   PROGRAM IMAGE PLACEHOLDER
-------------------- */
.program-image-placeholder {
  height: 300px;
  background: #e5e5e5;
  border-radius: 16px;
}

/* --------------------
   PAGE HEADER
-------------------- */
.page-header {
  background-color: rgb(255, 254, 254); /* sets white background */
  color: #000; /* text color black */
  padding: 100px 0; /* spacing top & bottom */
}


/* --------------------
   CARDS (SQUAD)
-------------------- */
.player-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.player-card:hover {
  transform: translateY(-6px);
}

.player-image {
  height: 260px;
  background: #ddd;
}

.player-info {
  padding: 20px;
  text-align: center;
}

/* --------------------
   TABLES (LEAGUE)
-------------------- */
.table thead {
  background: #0d0d0d;
  color: white;
}

.table tbody tr:hover {
  background: #f8f8f8;
}

/* --------------------
   FIXTURES
-------------------- */
.fixture-card {
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

/* --------------------
   FOOTER
-------------------- */
.footer {
  background: #0d0d0d;
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  color: #cfcfcf;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer a {
  color: #c9a24d;
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icons svg {
  width: 26px;
  height: 26px;
  fill: #c9a24d;
  transition: all 0.3s ease;
}

.social-icons a:hover svg {
  transform: translateY(-3px) scale(1.1);
  fill: #fff;
}

.footer-line {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0 15px;
}

.gallery-box {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-box:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.85);
}

.icon-box {
  background: #f8f8f8;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box svg {
  flex-shrink: 0;
}

.icon-box h5 {
  margin-bottom: 10px;
}

.icon-box p {
  color: #444;
}

.icon-box {
  background: #f8f8f8;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box svg {
  flex-shrink: 0;
}

.icon-box h5 {
  margin-bottom: 10px;
}

.icon-box p {
  color: #444;
}

/* Already added:
.icon-box {
  background: #f8f8f8;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box svg {
  flex-shrink: 0;
}

.icon-box h5 {
  margin-bottom: 10px;
}

.icon-box p {
  color: #444;
}
*/

/* Why La Masia Section */
.bg-gradient-light {
  background: linear-gradient(120deg, #fdf6e3, #fff8e0);
}

.bg-gradient-light h2 {
  color: #222;
}

.bg-gradient-light p {
  color: #fffefe;
  line-height: 1.7;
}

.bg-gradient-light img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.bg-gradient-light img:hover {
  transform: scale(1.03);
}

/* Navbar links */
.navbar .nav-link {
  color: #000; /* black text */
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #c62828; /* red on hover */
}

/* Active link color (optional) */
.navbar .nav-link.active {
  color: #c62828;
}

/* Join Us button */
.btn-join {
  background-color: #c62828; /* red */
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  transition: background-color 0.3s ease;
}

.btn-join:hover {
  background-color: #b71c1c; /* darker red on hover */
  color: #fff;
}

/* Navbar brand text */
.navbar-brand span {
  color: #000; /* black */
  font-size: 1.25rem;
}

/* Optional: remove shadow from mobile navbar toggle icon */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}
/* Navbar links default state */
.navbar-nav .nav-link {
  color: #000 !important;   /* BLACK */
  opacity: 1 !important;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* Hover state */
.navbar-nav .nav-link:hover {
  color: #c62828 !important; /* RED */
}

/* Active page (optional but recommended) */
.navbar-nav .nav-link.active {
  color: #c62828 !important;
}

/* 🔴 GLOBAL BRAND COLOR OVERRIDES */

/* Buttons */
.btn-accent,
.btn-join {
  background-color: var(--brand-red) !important;
  color: #fff !important;
}

.btn-accent:hover,
.btn-join:hover {
  background-color: var(--brand-red-dark) !important;
}

/* SVG icons */
svg {
  fill: var(--brand-red) !important;
}

/* Navbar hover */
.navbar-nav .nav-link:hover {
  color: var(--brand-red) !important;
}

/* Active nav link */
.navbar-nav .nav-link.active {
  color: var(--brand-red) !important;
}

/* Section highlights / accents */
.text-accent {
  color: var(--brand-red) !important;
}

/* Footer links & icons */
.footer a:hover {
  color: var(--brand-red) !important;
}

/* 🔴 FORCE FOOTER CONTACT DETAILS TO BRAND RED */

/* Email & phone links */
.footer a {
  color: var(--brand-red) !important;
  text-decoration: none;
}

/* Hover effect */
.footer a:hover {
  color: var(--brand-red-dark) !important;
}
.player-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS is what makes it look professional */
}
.hero-logo {
  width: 120px;
  margin-bottom: 15px;
}


/* Navbar links default */
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
}

/* Navbar hover */
.navbar-light .navbar-nav .nav-link:hover {
  color: #c62828 !important; /* rich red */
}

/* Active page */
.navbar-light .navbar-nav .nav-link.active {
  color: #c62828 !important;
}

/* Join Us button */
.navbar .btn {
  background-color: #c62828;
  color: #fff !important;
  border: none;
}

.navbar .btn:hover {
  background-color: #a61c1c;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border: none;
}

.fixtures-section {
  background: #f8f9fa;
}

.fixture-card.premium {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.fixture-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.fixture-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team {
  width: 35%;
  text-align: center;
}

.team img {
  width: 60px;
  margin-bottom: 10px;
}

.team h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.scorers {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  color: #555;
}

.score-box {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}

.score {
  color: #000;
}

.dash {
  margin: 0 10px;
  color: #999;
}

.league-table {
  border-radius: 12px;
  overflow: hidden;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.team-cell img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.registration-wrapper {
  max-width: 500px;
  width: 100%;
}

.registration-form input,
.registration-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.btn-join {
  background: #000;
  color: gold;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
}

.btn-join:hover {
  background: gold;
  color: #000;
}
