/* 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;
}

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

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

.ticket-selection {
  margin-top: 40px;
}

.ticket-selection h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.tickets-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ticket-card {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.ticket-card:hover {
  transform: scale(1.05);
}

.ticket-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.ticket-price {
  font-size: 20px;
  margin-bottom: 15px;
}

.ticket-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.ticket-features li {
  font-size: 16px;
  margin-bottom: 10px;
}

.ticket-features i {
  color: #ff0;
  margin-right: 10px;
}

.cta-button {
  background-color: #ff0;
  color: #111;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  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) {
  .tickets-container {
    flex-direction: column;
    align-items: center;
  }

  .ticket-card {
    width: 80%;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 12px 25px;
  }
}

/* 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;
}
