*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
.contact-section {
  padding: 60px 20px;
  background-color: #1e1b4b; /* Purple theme */
  color: #e5e5e5;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact-container h2 {
  font-size: 30px;
  color: #facc15;
  margin-bottom: 30px;
}

.contact-details p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}
/* 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;
}

/* Optional form style (if enabled) */
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.contact-form button {
  background-color: #facc15;
  color: #1e1b4b;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  background-color: #facc15; /* Yellow */
  color: #1e1b4b; /* Purple */
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #fcd34d;
}
/* 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: 70px;
    }
    .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) {
      
       .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;
  }