

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #171717;
  font-family: Noto Sans Devanagari;
}

/* HEADER BASE */
header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 99;
  box-shadow: 0 0 10px #000;
  background: #171717;
  padding: 0 20px;
}

/* LOGO */
header .logo {
  flex-shrink: 0;
}
header .logo img {
  width: 105px;
  height: auto;
  display: block;
  padding-top: 25px;
  margin-left: 360px;
  margin-top: -20px;
}

/* NAVIGATION */
header ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  list-style: none;
  transition: right 0.3s ease-in-out;
}
header ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 12px;
}
header ul li a:hover {
  color: #f37021;
}

/* MENU ICON */
#chk1 {
  display: none;
}
header .menu {
  font-size: 2rem;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
  margin-right: 175px;
}
.social-icons a {
  color: white;
  font-size: 20px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #f37021;
}


#header-social-media{
 display: none;
}




/* ================== RESPONSIVE ================== */

/* Tablets & Below */
@media (max-width: 1000px) {
  header {
    padding: 0 25px;
  }

  header ul {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: #171717;
    background-image: url(Images/black-paper.png);
    width: 100%;
    height: calc(45vh - 40px);
    justify-content: center;
    gap: 25px;
    border-radius: 0 0 10px 10px;
  }

  #chk1:checked ~ ul {
    right: 0;
  }

  header .menu {
    display: block;
    width:100px;
    text-align: center;
    margin-top: 0px;
    padding-left: 140px;
  }

  .social-icons {
    display: none;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0;
    margin-left: 0px;
    margin-right: 0px;
  }

  #chk1:checked ~ .social-icons {
    display: none;
  }

  #header-social-media{
   display: flex;
  }

}




/* Small Tablets & Large Phones */
@media (max-width: 768px) {

  header .logo img {
    width: 95px;
    margin-left: 0px;
  }

  header ul li a {
    font-size: 13px;
  }

  .social-icons {
    display: none;
    margin-left: 0px;
    margin-right: 0px;
  }

  header .menu {
    display: block;
    width:100px;
    text-align: center;
    margin-top: 0px;
    padding-left: 450px;
  }

  #header-social-media{
   display: flex;
  }


}

/* Small Phones */
@media (max-width: 480px) {
  header {
    height: 70px;
  }

  header ul {
     padding-top: 0px;
      height: calc(60vh - 40px);
    }

  header .logo img {
    width: 95px;
    margin-left: -20px;
  }

  header ul li a {
    font-size: 12px;
    padding: 6px 10px;
  }

  .social-icons {
    display: none;
    margin-left: 0px;
    margin-right: 0px;
  }

  .social-icons a {
    display: none;
    font-size: 18px;
  }

  #header-social-media{
   display: flex;
  }

  header .menu {
    display: block;
    width:100px;
    text-align: center;
    margin-top: 0px;
    padding-left: 140px;
  }

}



.language-switcher {
  text-align: right;
  padding: 5px 20px;
  background-color: transparent; /* dark background for contrast */
}

.language-switcher a{
  display: block;
  color: white;
  font-size: 15px;
  text-align: center;
  padding: 2px;
  text-decoration: none;
}

.language-switcher .lang-btn {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  padding: 6px 12px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.language-switcher .lang-btn:hover {
  background-color: #fff;
  color: #111;
}


.language-switcher a:hover {
  color: #f37021;
}


@media (max-width: 600px) {
  .language-switcher {
    text-align: center;
    padding: 0px;
  }

  .language-switcher .lang-btn {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
  }

  .language-switcher a{
   font-size: 10px;
  }

}




/* FOOTER NAV LINKS */
.footerNav {
  margin: 20px 0;
}

.footerNav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  padding: 0;
}

.footerNav ul li a {
  color: #fff;
  margin: 10px 15px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footerNav ul li a:hover {
  color: #f37021;
}

/* COPYRIGHT */
.footerBottom {
  background-color: #171717;
  padding: 15px;
  text-align: center;
}

.footerBottom p {
  color: white;
  font-size: 11px;
  margin: 0;
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .footerNav ul {
    flex-direction: column;
    align-items: center;
  }

  .footerNav ul li {
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .socialIcons a i {
    font-size: 1em;
  }
}



/* ===== Movies Section ===== */
.movies {
  background: linear-gradient(180deg, #111 0%, #1b1b1b 100%);
  padding: 200px 0px 100px 0px;
  text-align: center;
}

.movies h3 {
  color: #f37021;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Gallery ===== */
#mz-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

#mz-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* ===== Movie Card ===== */
.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 260px;
  background: #222;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.movie-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.65);
}

.movie-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  transition: opacity 0.35s ease;
}

.movie-card:hover img {
  opacity: 0.85;
}

/* ===== Caption (always visible) ===== */
.movie-card .caption {
  padding: 10px;
  margin-top: 0px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: #1b1b1b;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== Tablet ===== */
@media (max-width: 1000px) {
  .movies h3 {
    font-size: 28px;
  }
  #mz-gallery {
    gap: 25px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .movies {
    padding: 100px 20px;
  }
  .movies h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  #mz-gallery {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  .movie-card .caption {
    font-size: 0.7rem;
    padding: 10px;
  }
}


  .about-img2{
    width: 100%;
    height: 875px;
  }

  .about-img2 img{
    width: 100%;
    height: 875px;
    margin-top: 80px;
  }




  .movie-details{
    display: flex; 
    width: 100%;
    background:#fff;
    margin: 0;
    padding: 30px 400px 20px 400px;
    margin-top: 0px;
    padding-top: 50px;
    border-radius: 0px;
    justify-content: center;
  }


 .movie-title a{
    font-size:22px;
    font-weight:bold;
    color:#333333;
    display: inline-block;
    text-transform:uppercase;
    transition: all 0.3s ease 0s;
  }

  .movie-description{
    width: 100%;
    line-height:24px;
    color:#2d2d2d;
    text-align: justify;
    margin-bottom:25px;
    padding-top: 0px;
    padding-right: 0px;
  }

  .movie-description p{
    font-size: 1.1rem;
    padding-top: 5px;
    line-height: 32px;
  }


.movie-credit {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px; /* exact spacing between rows */
    font-size: 16px;
    line-height: 1.3;
    margin-top: 55px
}

.movie-credit .credit-row {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.movie-credit .credit-label {
    font-weight: bold;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.movie-credit .credit-text {
    margin: 0;
    padding: 0;
    margin-left: 6px;
}

  @media only screen and (max-width: 768px){
    .movie-description{
        width: 100%;
      }

.movie-details{
    display: block; 
    width: 100%;
    justify-content: center;
    padding: 15px 0px 15px 30px;
    padding-right: 30px;
  }
    
  .movie-credit{
    padding-top: 5px;
    padding-bottom: 20px;
  }

  }