/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #fefefe;
    color: #2e2e2e;
  }
  
  /* Cricket themed colors */
  :root {
    --cricket-green: #1b5e20;
    --pitch-brown: #a1887f;
    --highlight-yellow: #ffeb3b;
    --accent-blue: #00bcd4;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cricket-green);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 1s ease;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .logo {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Bangers', cursive;
    color: var(--highlight-yellow);
    letter-spacing: 1px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--highlight-yellow);
    transition: width 0.3s;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Section Title */
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 1rem;
    color: #0a3d62;
  }
  
  /* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a3d62;
    margin: 3rem 0 1.5rem;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #1dd1a1;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 2rem 2rem 4rem;
    background: linear-gradient(to bottom right, #f5f9ff, #e8f0ff);
    border-top: 2px solid #1dd1a1;
  }
  
  .gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
  }
  
  /* Gallery Item */
  .gallery-page {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .gallery-page img {
    width: 100%;
    height: 70vh;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .gallery-page img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  footer {
    background-color:var(--cricket-green);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.95rem;
    margin-top: 2rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .gallery-container {
      grid-template-columns: 1fr;
    }
  
    .gallery-page img {
      max-width: 100%;
    }
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 1rem 0;
    /* background: #f1f6fb;
    border-top: 2px solid #1dd1a1; */
    margin-top: 2rem;
  }
  
  .social-icons a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .social-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .social-icons {
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .social-icons a {
      width: 45px;
      height: 45px;
    }
  }
  