
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/*  Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  background-color: #e4e738;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007acc;
}

/* front section */
.front {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.front-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(68%);
  z-index: -1;
}

.front-content {
  color: #fff;
  max-width: 700px;
  padding: 20px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.front-content h1 {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.front-content p {
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  margin-bottom: 35px;
}

.discover {
  display: inline-block;
  padding: 14px 38px;
  background-color: #03a9f4;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.discover:hover {
  background-color: #0288d1;
  transform: translateY(-2px);
}

/*  Sports Section  */
.sports-section {
  text-align: center;
  padding: 100px 60px 70px;
  background-color: #f8fafc;
}

.sports-section h2 {
  font-size: 2.4rem;
  margin-bottom: 55px;
  color: #111;
  letter-spacing: 1px;
  position: relative;
}

.sports-section h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #03a9f4;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.sports-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.card1, .card2, .card3, .card4 {
  background-color: white;
  border-radius: 14px;
  overflow: hidden;
  width: 270px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover, .card2:hover, .card3:hover, .card4:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.card1 img, .card2 img, .card3 img, .card4 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card1 h3, .card2 h3, .card3 h3, .card4 h3 {
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
}

.card1 p, .card2 p, .card3 p, .card4 p {
  font-size: 0.95rem;
  color: #666;
  margin: 12px 18px 25px;
  line-height: 1.6;
}

/*  About Section  */
.about-section {
  text-align: center;
  padding: 100px 35px;
  background-color: #000;
}

.about-section h2 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.8px;
  margin-bottom: 25px;
}

.about-section p {
  font-size: 1.1rem;
  color: #d2d2d2;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

