/* --- GLOBAL RESET & LAYOUT --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}

/* --- NAVIGATION BAR --- */
nav {
  background-color: #0b192c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.logo-icon {
  color: #2563eb;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.nav-links a.active {
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
}

/* --- HERO SECTION WITH STADIUM & FOOTBALL --- */
.hero {
  background: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.95)), 
              url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
  color: #ffffff;
  padding: 60px 5% 90px;
  width: 100%;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #3b82f6;
  display: block;
}

.hero p.tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f1f5f9;
}

.hero p.description {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-secondary {
  background-color: #1e293b;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #334155;
}

/* Floating Football Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: cover;
}

/* --- FEATURE CARDS --- */
.features-container {
  max-width: 1100px;
  margin: -35px auto 50px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-icon {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: #64748b;
}

/* --- INNER PAGE CONTAINER --- */
.page-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0f172a;
}

.content-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 20px;
}

/* --- ABOUT PAGE GRID --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- CONTACT PAGE GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.contact-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #f1f5f9;
}

.contact-illustration {
  width: 100px;
  margin-top: 20px;
  opacity: 0.8;
}

/* --- FOOTER --- */
footer {
  background-color: #0b192c;
  color: #94a3b8;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #2563eb;
  font-size: 1.1rem;
  text-decoration: none;
}

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 850px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 220px;
  }

  nav {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
  font-size: 0.9rem;
}

.btn-secondary {
  background-color: #1e293b;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #334155;
}

/* --- FEATURE / STAT CARDS --- */
.features-container {
  max-width: 1100px;
  margin: -40px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-icon {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: #64748b;
}

/* --- PAGE CONTAINER LAYOUT --- */
.page-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0f172a;
}

.content-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 20px;
}

/* --- ABOUT PAGE GRID --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- CONTACT PAGE GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.contact-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #f1f5f9;
}

.contact-illustration {
  width: 120px;
  margin-top: 30px;
  opacity: 0.8;
}

/* --- FOOTER --- */
footer {
  background-color: #0b192c;
  color: #94a3b8;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #2563eb;
  font-size: 1.1rem;
  text-decoration: none;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}
