body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: #121212;
  color: white;
}

.navbar {
  position: sticky;
  top: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  /* Transparent white background */
  z-index: 1000;
  padding: 10px 20px;
  height: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: Add shadow for better visibility */
  display: flex;
  justify-content: space-around;
  backdrop-filter: blur(10px);
  /* Adds a blur effect for a modern look */
}

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

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

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


.navbar a {
  text-decoration: none;
  color: #ffffff;
  /* Nice blue color for links */
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
  /* Smooth transition for hover effect */
}

.navbar a:hover {
  color: #0056b3;
  /* Darker blue on hover */
}

/* Menu toggle button */
.menu-toggle {
  display: none;
  /* Hidden by default for larger screens */
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive styles for smaller screens */
@media (max-width: 568px) {
  .nav-links {
    display: none;
    /* Hide navigation links by default */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    /* Adjust based on navbar height */
    right: 20px;
    background-color: rgba(52, 62, 177, 0.9);
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
    /* Show navigation links when menu is toggled */
  }

  .menu-toggle {
    display: block;
    /* Hidden by default for larger screens */
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    /* Position it relative to the navbar */
    right: 20px;
    /* Align it to the right */
    top: 50%;
    /* Center it vertically */
    transform: translateY(-50%);
    /* Adjust for vertical centering */
    color: #ffffff;
    /* Optional: Set the button color */
    z-index: 1001;
    /* Ensure it appears above other elements */
  }
}

.scroll-fade-image {
  width: 100%;
  /* object-fit: cover; */
  /* margin: 2rem auto; */
  border-radius: 10px;
  opacity: 0.99;
  /* transform: translateY(50px); */
  transition: opacity 1s ease, transform 1s ease;

}

.scroll-fade-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.site-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.site-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav a:hover {
  color: #e91e63;
}

.section-content {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.full-width-image {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-height: 80vh;
  object-fit: cover;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#performances ul {
  list-style-position: inside;
  /* Ensures bullets are inside the content box */
  text-align: center;
  /* Centers the text */
  padding: 0;
  /* Removes default padding */
}

#performances ul li {
  display: block;
  /* Ensures list items are displayed vertically */
  margin: 0.5rem 0;
  /* Adds spacing between items */
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.media-grid img,
.media-grid video,
.media-grid audio {
  width: 100%;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

input,
textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
}

button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 1rem;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
}

/* Hover effect */
.media-grid img:hover,
.media-grid video:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Lightbox overlay */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-align: center;
}

#lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-content img,
#lightbox-content video {
  max-width: 90vw;
  max-height: calc(100vh - 80px);
  /* Leave room for close button and controls */
  border-radius: 10px;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

#lightbox-close:hover {
  color: #e91e63;
}

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  opacity: 0.7;
}

#lightbox-prev:hover,
#lightbox-next:hover {
  opacity: 1;
}

#lightbox-prev {
  left: 20px;
}

#lightbox-next {
  right: 20px;
}

.youtube-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 1rem 0;
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Match other media hover effect */
.media-grid .youtube-thumbnail:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Thumbnail formatting (same as before) */
.youtube-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: black;
  display: block;
}

.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#featured_video {
  text-align: center;
  margin: 2rem 0;
}

.featured-video-container {
  max-width: 800px;
  margin: 0 auto;
}

.featured-video-container img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  pointer-events: none;
}



.contact-form {
  max-width: 600px;
  margin: 0 auto;
  /* Center the form */
  padding: 20px;
  background-color: #350606;
  /* Light background */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  /* Place label above input */
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
  /* Darker text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  /* Highlight border on focus */
  outline: none;
}

.contact-form button {
  display: inline-block;
  background-color: #007BFF;
  /* Button color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}