.payment-section {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 500px;
    background-color: black;
  }
  
  .subheading {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
  }
  
  .qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .qr-image {
    width: 300px;
    height: auto;
    border: 2px solid white;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .scan-button {
    padding: 12px 30px;
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .scan-button:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
  }
  
  .back-home-button {
    display: inline-block;
    margin: 30px 0 10px 40px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .back-home-button:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
  }
  
  .event-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white; 
  }

/* Base Header Layout (Desktop) */

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 12px;
}

.nav-links li a:hover {
  background-color: white;
  color: black;
  border-radius: 5px;
}


 .logo a {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid white;
  }
}
  footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 16px;
  width: 100%;
  line-height: 1.6;
}

.footer-text {
  margin: 0;
  font-size: 1rem;
  word-wrap: break-word;
}

