/* About Page Styles */
#aboutPage {
  position: relative;
  padding: 50px 0;
  color: white;
  text-align: center;
  background: url("img/about-bg.jpg") no-repeat center center/cover; /* Optional background image */
  height: 100vh;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-content {
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Slight dark background for readability */
  padding: 40px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}

.about-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.about-description,
.about-mission {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.cta-button {
  background-color: #ff0;
  color: #111;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff9900;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #aboutPage {
    padding: 30px 0;
  }

  .about-content {
    width: 90%;
    padding: 30px;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-description,
  .about-mission {
    font-size: 16px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(
    to right,
    black
  ); /* Soft gradient matching the playful vibe */
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.footer h3 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.social-icons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 28px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Specific social media colors on hover */
.instagram-icon:hover {
  color: white;
}

.tiktok-icon:hover {
  color: white;
}

.whatsapp-icon:hover {
  color: white;
}

.snapchat-icon:hover {
  color: white;
}

.footer-copy {
  margin-top: 20px;
  font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* fadeInUp animation already defined in your previous CSS */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex: 1;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  box-sizing: border-box;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links li {
  display: inline;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #ff0;
}

/* Ensure there's space between the "Home", "About", and "Tickets" links */
nav .nav-links li:last-child {
  margin-left: auto; /* This will push the last item (Tickets) to the far right */
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 50px; /* adjust size */
  width: auto;
  object-fit: contain;
}

nav .logo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Page fade-out effect */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
