* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
       background: url('bg-pic.jpg') no-repeat center center;
       background-size: cover;
       background-position: center;
       min-height: 100vh;
       color: #fff;
       background-attachment: fixed;
    }

    /* Navbar */
header {
  background-color: #14121f;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: #14121f;
  backdrop-filter: blur(8px);
}


.logo-group img {
  height: 110px;
  width: 200px;
  margin-right: 10px;
}

.nav-links a {
  color: #ffd700;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
  text-decoration: underline;
}
    

    .ticket-section {
      margin-top: 100px;
      padding: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .hero-image {
      max-width: 100%;
      height: auto;
      margin: 2rem auto;
      display: block;
      border-radius: 10px;
    }

    .buy-panel {
      margin: 1.5rem auto;
      padding: 1rem;
      background: rgba(63, 0, 88, 0.8);
      border-radius: 10px;
    }

    
    .buy-btn {
      background-color: #48134e;
      color: #fff;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .buy-btn:hover {
      background-color: #0e5d05;
    }

    .ticket-info {
      margin-top: 2rem;
      background-color: rgba(129, 13, 167, 0.8);
      padding: 1.5rem;
      border-radius: 10px;
      text-align: left;
    }

    .ticket-info p {
      margin-bottom: 0.75rem;
    }

    .ticket-info a {
      color: #FFB200;
      text-decoration: underline;
    }

        /* Footer */
    footer {
      background-color: #14121f;
      color: #ccc;
      padding: 40px 20px;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }
    .footer-column h4 {
      color: #fff;
      margin-bottom: 10px;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    .footer-container img {
      height: 60px;
      width: 100px;
    }
    .footer-column ul li {
      margin-bottom: 10px;
    }
    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 20px;
      text-align: center;
      color: #777;
    }
    .social-icons a {
      margin-right: 10px;
      display: inline-block;
    }
    .social-icons img {
      width: 24px;
      height: 24px;
      filter: brightness(1.2);
    }

    @media screen and (max-width: 768px) {
      .about-carnival {
        flex-direction: column;
      }
      .merch-container, .footer-container {
        flex-direction: column;
        align-items: center;
      }
    }
    
  /* Footer link and icon hover styles */
  .footer-column a {
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .footer-column a:hover {
    color: #4c1d95; /* dark purple */
    background-color: #fcd34d; /* yellow-300 */
  }

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 10px 20px;
  }
  .nav-links {
    margin-top: 10px;
    justify-content: center;
    gap: 15px;
  }
}


  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .card img {
    width: 100%;
  }

  .carnival-leftside {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .carnival-rightside {
    padding: 0;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .merch-container {
    flex-direction: column;
    align-items: center;
  }
    @media (max-width: 600px) {
      .buy-panel {
        flex-direction: column;
        align-items: flex-start;
      }
      .ticket-action {
        flex-direction: column;
        width: 100%;
      }
      .ticket-action input,
      .ticket-action button {
        width: 100%;
      }
    }