body {
  background-color: black;
  background-repeat: repeat-x;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.container {
  background-color: #2a5fca;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  flex-direction: column; /* Stack logo above nav */
}

.logo {
height: 60px;
width: 60px;
margin-bottom: 2px; /* Space between logo and nav */
}
.cat-icon {
height: 50px;
width: 50px;
margin-bottom: -45px;
margin-top: -15px;
   z-index: 1000;
   visibility: hidden;
   opacity: 0;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .cat-icon {
  display: none;
  }
}
/* Base nav styles */
.nav-menu ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #2a5fca;
  justify-content: center;
  align-items: center;
}

.nav-menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  font-family: sans-serif;
}

.nav-menu li a:hover {
  background-color: #013cb4;
  border-radius: 25px;
}

/* Hide checkbox */
.menu-checkbox {
  display: none;
}

/* Hamburger icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.menu-icon .bar {
  height: 6px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  margin: 4px 0;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #2a5fca;
    width: 100%;
    z-index: 1000;
  }

  .menu-checkbox:checked ~ .nav-menu {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li a {
    padding: 12px 16px;
    font-size: 18px;
  }
}
img {
  max-width: 100%; /* Ensure images don’t overflow */
  height: auto;
}

.static {
position: relative;
display: block;
width: 100%;
border-radius: 15px;
}
.active {
  display: none;
  position: relative;
  border-radius: 15px;
}
.production-logo:hover .static {
  display: none;
}

.production-logo:hover .active {
  display: block;
}

.production-logo {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

h1 {
  font-family: sans-serif;
  color: #2a5fca;
  text-align: center;
}
@media (max-width: 768px) {
  h1{
  font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h1{
font-size: 1.2rem;
  }
}

.video-container {
    position: relative;
  }
.video-container iframe {
border: 0;
width: 100%;
  max-width:550px;
  height: 350px;
  }
  @media (max-width: 768px) {
    .video-container iframe{
      max-height: 250px;
        width: 70%;
    }
  }
  @media (max-width: 480px) {
    .video-container iframe{
        max-height: 200px;

    }
  }

  .navbar {
  position: relative;
  top: 0;
  width: 100%;
  background-color: #2a5fca;
  z-index: 1000;
  font-family: sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
  }

  .navbar nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  }

  .navbar nav ul li {
  margin: 10px;
  }

  .navbar nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 40px;
  padding: 10px 40px;
  background-color 0.3s;
  border-radius: 50px;
  }

  .navbar nav ul li a:hover {
  background-color: #013cb4;
  border-radius: 50px;
  }
  @media (max-width: 480px) {
    .navbar {
      margin-top: 138px;
    }
  }
  @media (max-width: 480px) {
    .navbar nav ul li a {
      font-size: 20px;
    }
  }
  .copyright-watermark {
    position: static;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5); /* Use correct RGB values for white */
    font-family: sans-serif;
    z-index: 9999;
    text-align: center;
    padding-bottom: 20px;
  }
