/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: linear-gradient(45deg, #e2c0d7, #e2c6b1, #e0d2ef, #eff0f1);
    /* You can also adjust the angle (45deg) to change the gradient direction */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #f7f4f4;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Cricket themed colors */
  :root {
    --cricket-green: #1b5e20;
    --highlight-yellow: #ffeb3b;
  }
  
  /* 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;
  }
  
  .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%;
  }
  
  /* Booking Section */
  .booking-section {
    background-image: url('images/cricbg1.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    /* background: rgba(0, 0, 0, 0.7); */
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: bounceIn 1.2s ease;
  }
  
  .booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f1c40f;
    text-shadow: 2px 2px #000;
  }
  
  /* Form Styles */
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .booking-form label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
  }
  
  .booking-form input,
  .booking-form select {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.3rem;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 1rem;
  }
  
  .booking-form input[type="file"] {
    padding: 0.4rem;
    background-color: #f9f9f9;
  }
  
  .booking-form button {
    padding: 0.8rem 2rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .booking-form button:hover {
    background: #219150;
    transform: scale(1.05);
  }
  
  /* Instructions */
  .instructions {
    margin-top: 2rem;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    animation: fadeIn 1s ease;
  }
  
  .instructions h3 {
    margin-bottom: 0.75rem;
    color: #f1c40f;
  }
  
  .instructions ul {
    list-style: disc;
    padding-left: 1.2rem;
  }
  
  .instructions ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Confirmation Message */
  .confirmation {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    animation: fadeIn 1s ease;
  }
  
  /* Footer */
  footer {
    margin-top: 4rem;
    background-color: #1b5e20;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes bounceIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    60% {
      transform: scale(1.05);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  
    .booking-section {
      padding: 2rem 1rem;
    }
  }
  .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;
    }
  }
  