/* -------------------------------
   TOP PLAYERS BOX
-------------------------------- */
.top-players-section {
  max-width: 600px;
  margin: 40px auto 60px; /* below subscribe section */
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.top-players-section h2 {
  font-size: 2rem;
  color: #0B2540;
  margin-bottom: 20px;
  font-weight: 700;
}

.players-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0B2540;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.rank {
  font-size: 1.1rem;
  font-weight: 700;
  color: #32A571;
  margin-right: 10px;
}

.player-name {
  flex: 1;
  text-align: left;
}

.player-team {
  font-size: 0.9rem;
  color: #d8e2ec;
}

/* Responsive */
@media (max-width: 480px) {
  .player {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .player-team {
    text-align: left;
  }
}

.read-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #32A571; /* Your site accent green */
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.read-btn:hover {
  background-color: #27895d; /* Slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  background: #0B2540; /* Your dark blue */
  color: #32A571;       /* Accent green */
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  background: #32A571;
  color: #fff;
  transform: translateY(-3px);
}

.see-all-wrapper {
  text-align: center;
  margin: 25px 0 20px;
}

.see-all-btn {
  background-color: #32A571;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}

.see-all-btn:hover {
  background-color: #28895c;
}
/* Featured First Article — Homepage */
.article-grid .article-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  background: #0B2540;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.article-grid .article-card:first-child img {
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}


/* Text inside featured card */
.article-grid .article-card:first-child h3 {
  font-size: 1.8rem;
}

.article-grid .article-card:first-child p {
  font-size: 1.1rem;
}


.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .article-grid .article-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .article-grid .article-card:first-child img {
    height: 200px;
  }
}

/* Categories Page */
.categories-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

.categories-header {
  text-align: center;
  margin-bottom: 40px;
}

.categories-header h1 {
  font-size: 2.4rem;
  color: #0B2540;
  margin-bottom: 10px;
}

.categories-header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #555;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: #0B2540;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #d8e2ec;
}

.cat-btn {
  background: #32A571;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  align-self: flex-start;
  transition: 0.2s ease;
}

.cat-btn:hover {
  background: #2a8a60;
}

/* --- Newsletter Section Styling --- */
.subscribe-section {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
}

.subscribe-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.subscribe-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}

.subscribe-input {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  flex: 1;
  font-size: 1rem;
}

.subscribe-btn {
  background: #32A571; /* Your site accent? */
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.subscribe-btn:hover {
  background: #27895c;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
  }
}
/* ----------------------------------
   GLOBAL RESET + BASE STYLING
---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

.accent {
  color: #32A571;
}

/* ----------------------------------
   HEADER
---------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0B2540;
  padding: 1rem 2rem;
}

header .logo img {
  height: 100px;   /* Increased from 70px */
  width: auto;
}


/* Desktop Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

nav ul li a:hover {
  color: #32A571;
}

/* ----------------------------------
   HAMBURGER MENU
---------------------------------- */
.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-menu ul {
  transition: 0.3s ease;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #0B2540;
    width: 100%;
    padding: 1rem 0;
    margin-top: 1rem;
    border-radius: 8px;
    gap: 1rem;
    text-align: center;
  }

  .nav-menu.show ul {
    display: flex;
  }
}

/* ----------------------------------
   BANNER
---------------------------------- */
.banner {
  position: relative;
  text-align: center;
  color: white;
  background-color: #0B2540;
}

.banner-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  background-color: #0B2540;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 8px black;
  margin-bottom: 0.5rem;
}

.banner-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Mobile banner */
@media (max-width: 600px) {
  .banner-img {
    height: 270px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content h2 {
    font-size: 1.1rem;
  }
}

/* ----------------------------------
   LATEST ARTICLES
---------------------------------- */
.latest-articles {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.latest-articles h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.article-card img {
  width: 100%;
  border-radius: 10px;
}

.article-card h3 {
  margin: 0.75rem 0;
}

.article-card button {
  background-color: #32A571;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.article-card button:hover {
  background-color: #278a5d;
}

/* ----------------------------------
   CONTENT SECTIONS
---------------------------------- */
.content-sections {
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
  gap: 2rem;
}

.categories,
.news {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.category-box {
  background: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.category-box button {
  background-color: #32A571;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* NEWS */
.news-item {
  margin-bottom: 1.5rem;
}

.news-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.news-btn {
  background-color: #32A571;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.news-btn:hover {
  background-color: #278a5d;
}

/* ----------------------------------
   ABOUT PAGE
---------------------------------- */
.about-story {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0B2540;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* What We Do */
.what-we-do {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}

.what-we-do h2 {
  font-size: 2.2rem;
  color: #0B2540;
  margin-bottom: 2rem;
  font-weight: 700;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.wwd-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  border: 3px solid #4EBA6F;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
}

.wwd-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #32A571;
  font-weight: 700;
}

.wwd-box p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* ----------------------------------
   ARTICLE PAGE
---------------------------------- */
.article-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem 1.5rem;
}

.article-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0B2540;
  margin-bottom: 0.5rem;
}

.article-meta {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.article-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
}

.article-content h2 {
  color: #0B2540;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* More Articles */
.more-articles-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem;
}

.more-articles-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0B2540;
}

.more-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.more-article-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.more-article-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.read-more-btn {
  background-color: #32A571;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
}

.read-more-btn:hover {
  background-color: #278a5d;
}

/* ----------------------------------
   CONTACT PAGE —
---------------------------------- */
/* CONTACT HEADER SPACING */
.contact-header {
  text-align: center;
  margin-top: 60px;   /* Space from top */
  margin-bottom: 40px; /* Space before contact box */
}

.contact-header-text h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0B2540;
}

.contact-header-text h2 {
  font-size: 1.2rem;  /* Smaller than h1 */
  font-weight: 400;
  color: #555;
}

/* CONTACT BOX ADJUSTMENTS */
.contact-section {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-box {
  background: #0B2540;
  padding: 35px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  color: #fff;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-top: 5px;
}

/* BUTTON NOT FULL WIDTH */
.submit-btn {
  background: #32A571;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  float: right;     /* Moves to bottom-right */
  width: auto;      /* Prevents full width */
  display: inline-block;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #28925e;
}


/* ----------------------------------
   FOOTER
---------------------------------- */
footer {
  background-color: #0B2540;
  color: white;
  padding: 2rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo img {
  height: 65px;
  width: auto;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #32A571;
}


  
@media (max-width: 900px) {
  .content-sections {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    align-items: center;
  }

  .submit-btn {
    width: 100%;
  }
}


/* Proper hamburger button (visible only on mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 28px;
  z-index: 9999;
}

/* Desktop nav stays normal */
.nav-menu ul {
  display: flex;
  gap: 2rem;
}

/* FULL mobile navigation fix */
@media (max-width: 900px) {

  .hamburger {
    display: block;
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0B2540;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 80px; /* pushes menu below header */
  }

  .nav-menu ul.show {
    display: flex;
  }
}

/* -------------------------------
   SOCIAL ICON CENTERING
-------------------------------- */
.social-icons {
  display: flex;
  justify-content: center; /* FIX */
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* -------------------------------
   FOOTER NAV CENTER ON MOBILE
-------------------------------- */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-nav ul {
    align-items: center; /* FIX */
    justify-content: center;
  }
}


button,
.news-btn,
.category-box button,
.article-card button,
.read-more-btn,
.read-btn {
  background-color: #32A571 !important;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

button:hover,
.news-btn:hover,
.category-box button:hover,
.article-card button:hover,
.read-more-btn:hover,
.read-btn:hover {
  background-color: #27895d !important;
  transform: translateY(-2px);
}

