    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Baloo 2', cursive;
    }

body {

  background-repeat: no-repeat;
  background-size: cover; /* Cover entire screen */
  background-attachment: fixed; /* Makes the background stay fixed */
  background-position: center center;
  min-height: 100vh;
  color: black;
  font-family: 'Baloo 2', cursive;
  margin: 0;
  animation: none; /* Disable animation for fixed background */
}


@keyframes slideBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100vw 0;
  }
}


    header {
      background: rgba(255, 255, 255, 1.0);
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      gap: 30px;
      justify-content: center;
      /*background: rgba(0, 0, 0, 0.5);*/
    }

    .packages {
      flex: 1 1 400px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 10px;
    }

    .packages h2 {
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .package {
      background: rgba(255, 255, 255, 0.2);
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .package h3 {
      margin-bottom: 10px;
    }

    .booking-form {
      flex: 1 1 350px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 10px;
    }

    .booking-form h2 {
      margin-bottom: 20px;
    }

    .booking-form label {
      display: block;
      margin: 10px 0 5px;
    }

    .booking-form input,
    .booking-form select{
 
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 15px;
      font-size: 1rem;
    }
   .booking-form button {
     width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 15px;
      font-size: 1.4rem; 
   }
    .booking-form input,
    .booking-form select {
      background: rgba(255, 255, 255, 0.9);
    }

    .booking-form button {
      
      background: #F3D300;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
      border:solid;
    }

    .booking-form button:hover {
      background: #35CD40;
      color: #000;
    }

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center; /* This will center child flex items */
  }

  .packages, .booking-form {
    width: 100%;
    max-width: 500px;
  }

  header h1 {
    font-size: 2rem;
  }
}

    .ticket-price {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1.1rem;
}
.special-offer {
 background: linear-gradient(135deg, #F9F9A6, #FFFE7B, #F2F12E, #F6D100);



  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  color: #000;
  text-align: center;
  animation: pulseGlow 3s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.6);
  transition: transform 0.3s ease;
}

.special-offer:hover {
  transform: scale(1.02);
}

.special-offer h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.special-offer p {
  font-size: 1.1rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 114, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.4);
  }
}

@media (max-width: 768px) {
  .special-offer {
    padding: 15px;
  }

  .special-offer h3 {
    font-size: 1.4rem;
  }

  .special-offer p {
    font-size: 1rem;
  }
}
#ticket-selection {
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
}

.ticket-name {
  flex: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.qty-controls {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.qty-controls button {
  padding: 3px 8px;
  font-size: 14px;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.qty-controls input {
  width: 40px;
  text-align: center;
  font-size: 14px;
  padding: 2px;
  border-radius: 4px;
  border: none;
  background: #fff;
}

.ticket-total {
  flex: 1;
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
}

.summary {
  margin-top: 15px;
  text-align: right;
}

.summary p,
#coupon-field {
  margin: 5px 0;
}

#coupon-field input {
  padding: 4px 8px;
  border-radius: 5px;
  border: none;
  background: #fff;
  font-size: 14px;
  width: 150px; /* Set fixed width */
  max-width: 100%;
  margin-top: 5px;
}


.coupon-toggle {
  cursor: pointer;
  color: #00c6ff;
  font-weight: 500;
  text-decoration: underline;
  display: inline-block;
}
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 30px;
  justify-content: center;
  /*background: rgba(0, 0, 0, 0.5);*/
  max-width: 1400px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  header p {
    font-size: 1rem;
  }

  .packages h2,
  .booking-form h2 {
    font-size: 1.4rem;
  }

 .package h3 {
  font-size: 1rem;
  word-wrap: break-word;
  white-space: normal;
}


  .ticket-price {
    font-size: 0.9rem;
    padding: 2px 6px;
  }

  .booking-form label,
  .booking-form input,
  .booking-form select,
  .booking-form button {
    font-size: 0.9rem;
  }

  .special-offer h3 {
    font-size: 1.2rem;
  }

  .special-offer p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 10px; /* Reduce overall padding */
  }

  .package {
    width: 100%;          /* Full width on mobile */
    padding: 10px;        /* Less inner padding */
    font-size: 0.9rem;    /* Slightly smaller text */
  }

  .booking-form {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .booking-form input[type="number"] {
    max-width: 80px;
    font-size: 0.9rem;
    padding: 5px;
  }
}
@media (max-width: 768px) {
  .booking-form input,
  .booking-form select,
  .booking-form button {
    margin-bottom: 10px;
  }
}
