
*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
.about-section {
  padding: 60px 20px;
  background-color: #300a4a; /* Same purple */
  color: #e5e5e5;
  background-size: cover;
}


.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 32px;
  color: #facc15; /* Yellow */
  margin-bottom: 20px;
}
 
.heading-with-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.inline-logo {
  width: 50px;
  height: auto;
}



.about-container p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.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;
}
/* 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: 110px;
  margin-right: 10px;
}

/* 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;
  }