body {
  background-image: url("homebackground.jpg"); /* Replace with your image file */
  background-color: black;
  background-size: cover; /* Scales image to cover the page */
  background-repeat: no-repeat; /* Prevents image from repeating */
  margin: 0;
}
/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: white;
  position: relative;
}

/* Logo (Left) */
.logo {
  font-size: 1.5em;
  font-weight: bold;
  position: absolute;
  left: 20px;
  padding-top: 40px;
  padding-left: 40px;
}

/* Navigation Links (Centered) */
#centered {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-top: 110px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "kallisto", sans-serif;
  font-weight: 300;
  font-style: medium;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1em;
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Right Link with Circle Background */
.right-link {
  text-decoration: none;
  color: #4136c3;
  background-color: #ffffff;
  font-size: 1em;
  padding: 10px 15px;
  border-radius: 70%;
  font-weight: bold;
  transition: 0.3s;
  position: absolute;
  right: 20px;
  margin-top: 110px;
  margin-right: 40px;
  font-family: "kallisto", sans-serif;
  font-weight: 300;
  font-style: medium;
}

.right-link:hover {
  font-weight: 800;
}

/* Mobile Menu Toggle */
.menu-toggle {
  font-size: 1.5em;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px;
}
.tagline {
  display: flex;
  font-family: "kallisto", sans-serif;
  justify-content: center;
  padding-top: 350px;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  align-items: center;
  margin: 0;
  color: white;
  animation: fadeIn 1.8s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#homeflex {
  padding-top: 350px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
#homeschedule {
  padding-top: 150px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ticketsflex {
  padding-top: 150px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  width: 90%;
  padding: 40px;
}
.schedule-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 90%;
  padding: 40px;
}

/* Text Content */
.text-content {
  flex: 1;
  text-align: left;
  color: white;
}

.text-content h2 {
  font-size: 16px;
  color: #ffffff;
  font-family: "kallisto", sans-serif;
  font-weight: 800;
  font-style: bold;
  margin-bottom: -20px;
}

.text-content h1 {
  font-size: 2.5em;
  font-family: "kallisto", sans-serif;
  font-weight: 1000;
  font-style: bold;
}

.text-content p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: "azo-sans-web", sans-serif;
  font-style: light;
}

/* Button */
.btn {
  font-family: "kallisto", sans-serif;
  display: inline-block;
  border: 2px solid #ffffff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1em;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #4136c3;
}

/* Image Content */
.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image-content img {
    max-width: 80%;
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #444;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Footer Styling */
.footer {
  margin-top: 30px;
  text-align: center;
  color: white;
  padding: 20px;
  width: 100%;
}

/* Footer Text */
.footer-text {
  font-family: "azo-sans-web", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.2em;
  margin: 0;
}

/* Footer Line */
.footer-line {
  border: none;
  height: 1px;
  background: #555;
  width: 80%;
  margin: 10px auto;
}

/* Copyright Text */
.copyright {
  font-family: "azo-sans-web", sans-serif;
  font-style: light;
  font-size: 0.9em;
  margin: 0;
  opacity: 0.7;
}
/* Footer Styling */
.footer {
  margin-top: 30px;
  text-align: center;
  color: white;
  padding: 20px;
  width: 100%;
}

/* Footer Text */
.footer-text {
  font-family: "azo-sans-web", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.2em;
  margin: 0;
}

/* Footer Line */
.footer-line {
  border: none;
  height: 1px;
  background: #555;
  width: 80%;
  margin: 10px auto;
}

/* Copyright Text */
.copyright {
  font-family: "azo-sans-web", sans-serif;
  font-style: light;
  font-size: 0.9em;
  margin: 0;
  opacity: 0.7;
}
li {
  list-style: none;
}
a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: "kallisto", sans-serif;
}
.navbar {
  padding-top: 50px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  max-width: 1440px;
}
.nav-menu {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1440px;
}
.nav-branding {
  padding-top: 50px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
}
.nav-link {
  transition: 0.7s ease;
  font-family: "kallisto", sans-serif;
}
.nav-link:hover {
  color: #000000;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: rgb(255, 255, 255);
}
#active {
  font-weight: 1000;
  text-decoration: underline;
}
#ticketsnav {
  background-color: white;
  color: #4136c3;
  padding: 10px;
  border-radius: 50%;
}
#ticketsnav:hover {
  color: #000000;
}
.logopadding {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
    padding-top: 50px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
    z-index: 100;
  }
}
