/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000; /* black background */
  color: #f1f1f1;   /* light gray text for readability */
  line-height: 1.6;
}

/* Header / Navbar */
header {
  background: #111;
  padding: 15px 0;
  box-shadow: 0 3px 5px rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff4757;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f1f1f1; /* lighter nav links */
  font-weight: 500;
  padding: 6px 12px;
  transition: 0.3s;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ff4757;
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('images/football-bg.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* dark overlay for better text visibility */
}

.hero h2,
.hero p {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

/* Content Section */
.container-section {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.container-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff4757;
}

.card {
  background: #111; /* dark card background */
  color: #f1f1f1;   /* light text */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
  color: #ff4757;
}

/* Footer */
footer {
  background: #111;
  color: #f1f1f1;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

/* Contact Form */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222; /* dark input background */
  color: #f1f1f1;   /* light text */
  font-size: 1rem;
}

form input::placeholder,
form textarea::placeholder {
  color: #aaa; /* subtle placeholder text */
}

form input:focus,
form textarea:focus {
  border-color: #ff4757; /* red highlight */
  outline: none;
}

form button,
form input[type="submit"] {
  background: #ff4757;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover,
form input[type="submit"]:hover {
  background: #e84141;
}

/* Social icons: red by default, white on hover */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.social-links a {
  color: #ff4757;                     
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  transition: background .15s ease, color .15s ease, transform .12s ease;
}

.social-links a i {
  font-size: 1.25rem;
  line-height: 1;
}

.social-links a:hover {
  color: #ffffff;                     
  background: rgba(255, 71, 87, 0.12);
  transform: translateY(-2px);
}

.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-icons a {
  font-size: 2rem;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a.youtube {
  color: #ff0000;
}

.social-icons a.instagram {
  color: #e1306c;
}

social-icons a.email {
  color: #0073e6;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* ===== EPL Table (Dark Mode, No Stripes) ===== */
.card table,
.card table tr,
.card table td,
.card table th {
  background: #111 !important;   /* solid dark background */
  color: #f1f1f1 !important;     /* light text */
  border: 1px solid #333 !important;
}

.card table th {
  background: #ff4757 !important; /* red header row */
  color: #ffffff !important;
}

.card table tr:hover td {
  background: #222 !important;    /* subtle hover effect */
}
