/* Global */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background-color: #f8f9fa;
  scroll-behavior: smooth;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

/* Custom Navbar Styles */
.custom-navbar {
  background: transparent;
  color: white;
  padding: 1rem 0;
  position: relative;
  top: 0;
  z-index: 999;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.3);*/
}

.mn_75px{
  margin-top: -75px;
}

.custom-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.custom-navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  z-index: 20;
}

.custom-navbar .nav-links {
  display: flex;
  gap: 2rem;
}

.custom-navbar .nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.custom-navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s;
}

.custom-navbar .nav-links a:hover,
.custom-navbar .nav-links a.active {
  color: #fff;
}

.custom-navbar .nav-links a:hover::after,
.custom-navbar .nav-links a.active::after {
  width: 100%;
}

/* Custom Navbar Styles for the other pages */
.custom-sub-navbar {
  background: black;
  color: white;
  padding: 1rem 0;
  position: relative;
  top: 0;
  z-index: 999;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.3);*/
}


.custom-sub-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.custom-sub-navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.custom-sub-navbar .nav-links {
  display: flex;
  gap: 2rem;
}

.custom-sub-navbar .nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.custom-sub-navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s;
}

.custom-sub-navbar .nav-links a:hover,
.custom-sub-navbar .nav-links a.active {
  color: #fff;
}

.custom-sub-navbar .nav-links a:hover::after,
.custom-sub-navbar .nav-links a.active::after {
  width: 100%;
}


/* Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {



  .custom-navbar .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
   /* background: #111;*/
    background: rgba(255, 255, 255, 0.1); /* light glass feel */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
    margin-top: -75px;
    display: none;
  }

  .custom-navbar .nav-links.open {
    display: flex;
  }

   .custom-sub-navbar .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
   /* background: #111;*/
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
    margin-top: -75px;
    display: none;
  }

  .custom-sub-navbar .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    z-index: 20;
  }
}



@media (max-width: 1024px){
    .responsiveness{
      margin-top: -150px;
    }

    .responsiveness_2{
      margin-top: -150px;
    }

}



/* Hero Carousel */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item,
.hero-carousel .hero-slide {
  height: 100%;
  width: 100%;
  display: block;
  min-height: 400px;
}
.hero-carousel .hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
  min-height: 650px;
}
.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  padding: 2rem;
  text-align: center;
}
.hero-carousel h1,
.hero-carousel p {
  animation: fadeInUp 1s ease;
  color: #fff;
}

/* Movie Cards */
.movie-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.movie-card .card-img-top {
  height: 300px;
  object-fit: cover;
}

/* Section Headings */
.now-showing h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #111;
  position: relative;
  margin-bottom: 1.5rem;
}
.now-showing h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Headlines, Branding, Hero */
h1, h2, h3, a, .logo, .display-4, .card-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.text_shadow {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.ticket-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.ticket-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.modal-content input,
.modal-content select,
.modal-content button {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-content button {
  background: #007bff;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1.2rem;
}

.modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.bg_black{
  background-color: black;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer h5,
.footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  color: #ccc;
}

.footer .fab {
  transition: color 0.3s ease;
}

.footer .fab:hover {
  color: #007bff;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.glass {
  background: rgba(255, 255, 255, 0.1); /* light glass feel */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
}
