/* ------------------- GLOBAL RESET ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #111;
    color: #fff;
  }
  
  /* ------------------- NAVBAR ------------------- */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: background 0.3s ease;
  }
  
  .navbar.scrolled {
    background: #000;
  }
  
  .navbar .logo img {
    height: 110px;
  }
  
  /* ------------------- NAV LINKS ------------------- */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links li a {
    color: #100f0f;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
  }
  
  /* Smooth underline */
  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #e50914;
    transition: width 0.3s ease;
  }
  
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 100%;
  }
  
  /* ------------------- SUBSCRIBE BUTTON ------------------- */
  .subscribe-btn {
    background: #e50914;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .subscribe-btn:hover {
    background: #c62828;
    transform: scale(1.05);
  }
  
  /* ------------------- HAMBURGER (MOBILE) ------------------- */
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    z-index: 1100;
  }
  
  /* ------------------- MOBILE MENU ------------------- */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
    }

    @media (max-width: 768px) {
      .navbar .logo {
        order: 1;              
        flex: 1;               
        display: flex;
        align-items: center;
        margin-left: -20px; 
      }
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      flex-direction: column;
      background: #fff;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      text-align: center;
      z-index: 1000;
    }
  
    .nav-links.open {
      max-height: 100vh;   /* ✅ unlimited height so all links show */
      padding: 20px 0;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
    .nav-links li a {
      color: #000; /* Black text in mobile menu */
    }
  }




  /* ---------------------------------------------- Sports Hero Section -------------------------------------------------- */

     /* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;  /* desktop पर full screen */
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

/* Hero Image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* पूरी image दिखेगी mobile पर */
  display: block;
  background: #000; /* image से बाहर का हिस्सा black दिखे */
}

/* Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  animation: fadeSlide 1.8s ease forwards;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(#e50914); /* Red to Black to Red */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  animation: glowPulse 2s infinite alternate;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0;
  animation: fadeUp 1.5s ease 1s forwards;
}

/* ---------- Animations ---------- */
@keyframes fadeSlide {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 5px #ff0000, 0 0 10px #353639; }
  100% { text-shadow: 0 0 15px #ff3333, 0 0 25px #4b4848; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile View ---------- */

@media (max-width: 768px) {
  .hero {
    height: auto; /* mobile पर image की natural height */
  }

  .hero-img {
    object-fit: contain; /* पूरी image fit होगी */
    height: auto;
    margin-top: 50px;   /* ✅ image को नीचे push किया */
    display: block;
  }

  .hero-text {
    top: 70%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}


 
 

/* ------------------------------------ Sports News Section-------------------------------------------- -------- */
.sports-news {
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  background: #111; /* fallback black */
}

.news-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff0000;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeUp 1s ease-in-out;
}

/* News Items */
.news-item {
  padding: 25px;
  margin: 15px auto;
  max-width: 900px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  border-left: 4px solid #ffd700;
  padding-left: 10px;
}

.news-item p {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.6;
}

/* Alternate Colors */
.red-bg {
  background: #b30000;
}
.black-bg {
  background: #1a1a1a;
}

/* Hover Effect */
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .news-heading {
    font-size: 1.6rem;
  }
  .news-item h3 {
    font-size: 1.2rem;
  }
  .news-item p {
    font-size: 0.9rem;
  }
}





/*--------------------------------------------------------------- Sports News Section------------------------------------------------------------------------ */
/* Latest Sports News Section */
.latest-sports {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.latest-sports h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff1a1a; /* Red heading */
  margin-bottom: 40px;
}

/* Grid */
.latest-sports .news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Card */
.latest-sports .news-card {
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: skewY(-2deg); /* Angled card style */
  transition: transform 0.5s, box-shadow 0.5s;
}

.latest-sports .news-card:hover {
  transform: skewY(0deg) scale(1.05);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

/* Card Image */
.latest-sports .news-card .card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ff1a1a;
  transition: transform 0.5s;
}

.latest-sports .news-card:hover .card-img img {
  transform: scale(1.1);
}

/* Card Content */
.latest-sports .news-card .card-content {
  padding: 20px;
  transform: skewY(2deg); /* Fix skew for content */
}

.latest-sports .news-card .card-content h3 {
  font-size: 1.3rem;
  color: #ff1a1a;
  margin-bottom: 10px;
}

.latest-sports .news-card .card-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .latest-sports .news-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .latest-sports .news-card {
    width: 90%;
  }
}



  /*------------------------------------- footer----------------------------------------------------- */

  

 /* Import Google Font */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

 /* ===== Footer Wrapper ===== */
 .site-footer {
     background-color: #ffffff;
     color: #333333;
     font-family: 'Montserrat', sans-serif;
     padding: 50px 20px 20px;
     box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
 }
 
 /* ===== Footer Container ===== */
 .footer-container {
     max-width: 1200px;
     margin: auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
 }
 
 /* ===== Columns ===== */
 .footer-column {
     flex: 1 1 200px;
     min-width: 200px;
     margin-bottom: 20px;
 }
 
 /* ===== Logo & Tagline ===== */
 .footer-logo {
     height: 70px;
     margin-bottom: 10px;
 }
 
 .tagline {
     font-size: 16px; /* Increased from 14px */
     margin-bottom: 15px;
     color: #666666;
     line-height: 1.5;
 }
 
 /* ===== Section Headings ===== */
 .footer-column h3 {
     font-size: 18px; /* Increased from 16px */
     font-weight: 600;
     color: #111111;
     margin: 0 0 15px 0;
     position: relative;
     padding-bottom: 8px;
     display: inline-block;
 }
 
 .footer-column h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: #D72638;
 }
 
 /* ===== Links ===== */
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 .footer-links li {
     margin-bottom: 12px; /* Increased from 10px */
 }
 
 .footer-links a {
     color: #444444;
     text-decoration: none;
     font-size: 16px; /* Increased from 14px */
     transition: color 0.3s ease;
 }
 
 .footer-links a:hover {
     color: #D72638;
 }
 
 /* ===== Social Icons ===== */
 .social-icons {
     display: flex;
     justify-content: flex-start;
     gap: 15px;
     margin-top: 20px;
 }
 
 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #eeeeee;
     color: #D72638;
     border: 1px solid #dddddd;
     transition: background-color 0.3s ease, color 0.3s ease;
 }
 
 .social-icons a:hover {
     background-color: #D72638;
     color: #ffffff;
 }
 
 .social-icons .social-icon {
     width: 20px;
     height: 20px;
 }
 
 /* ===== Subscribe Button ===== */
 .subscribe-btn {
     display: inline-block;
     background-color: #D72638;
     color: #fff;
     padding: 12px 24px; /* Increased padding */
     border-radius: 5px;
     font-size: 16px; /* Increased from 14px */
     font-weight: 500;
     text-decoration: none;
     text-align: center;
     transition: background-color 0.3s ease;
     margin-top: 15px;
 }
 
 .subscribe-btn:hover {
     background-color: #a51928;
 }
 
 /* ===== Footer Bottom ===== */
 .footer-bottom {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid #e0e0e0;
 }
 
 .footer-bottom p {
     margin: 0;
     font-size: 16px; /* Increased from 13px */
     color: #888888;
 }
 
 /* ===== Mobile Responsive ===== */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         text-align: center;
         align-items: center;
         gap: 30px;
     }
 
     .footer-column {
         flex: 1 1 100%;
         min-width: unset;
         margin-bottom: 0;
     }
 
     .footer-column h3::after {
         left: 50%;
         transform: translateX(-50%);
     }
 
     .footer-social {
         width: 100%;
         text-align: center;
     }
 
     .footer-social .social-icons {
         justify-content: center;
         margin-top: 10px;
         margin-bottom: 10px;
     }
 
     .footer-social .subscribe-btn {
         display: block;
         margin: 0 auto;
         max-width: 220px; /* Adjusted max width */
         font-size: 16px; /* Increased font size for mobile button */
     }
 }
       


