@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.woff2') format('woff2'),
       url('../font/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #FCF6F5;
  color: #f0f0f0;
  line-height: 1.6;
}


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-color: #111b29; 
background-image: url(../Images/black-paper.png);
}



@media only screen and (max-width: 768px){
  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: rgb(0, 0, 0);
  }
   i{
   color: #fff;
   cursor: pointer;
   padding-left: 0px;
   padding-top: 20px;
  }
  
  }
  
  
  
  #chk1{
    display: none;     
  }
  
  i{
    color: #fff;
    cursor: pointer;
    
  }
  
  
  header .logo{
    flex: 1; 
    margin-left: 30px;
  }
  
  header .logo img{
    float: left;
    width: 150px;
    height: auto;
    padding-top: 0px;
    margin-left: 400px;
    margin-top: 5px;
  }
    
  
  
 @media only screen and (max-width: 768px){
   header .logo img{
    float: left;
    width: 120px;
    height: auto;
    padding-top: 8px;
    margin-left: -20px;
  }  
  }


 @media only screen and (max-width: 480px){
   header .logo img{
    float: left;
    width: 120px;
    height: auto;
    padding-top: 35px;
    margin-left: -20px;
    margin-top: -30px;
  }  
  }
  
@media screen and (min-width: 1024px) and (max-width: 1440px){ 
  header .logo img{
    margin-left: 30px;
  }
}


header ul {
flex: 1.5;
display: flex;
justify-content: space-evenly;
margin-right: 350px;
}

header ul li{
list-style: none
}

header ul li a{
text-decoration: none;
color:#ffffff;
font-weight: bold;
font-size: 13px;
text-transform: uppercase;
padding: 10px;
}
header ul li a:hover{
color: #ffdcdc;
}
header .menu{
font-size: 2.5em;
display: none;
}


#header-social-media a{
  font-size: 16px;
}



/* Mobile styles */
@media only screen and (max-width: 768px) {
  header {
    justify-content: space-between;
    background-color: #111b29;
    background-image: url(../Images/black-paper.png);
  }

  header ul {
    flex-direction: column;
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: #111b29;
    background-image: url(../Images/black-paper.png);
    width: 100%;
    padding: 0px;
    transition: right 0.2s ease;
    border-radius: 0 0 10px 10px;
    z-index: 999;
    height: calc(83vh - 40vh);
    align-items: center;
    margin-right: 0px; 
  }

  #chk1:checked ~ ul {
    right: 0;
  }

  header .menu {
    display: block;
    width:100px;
    text-align: center;
    margin-top: -15px;
    padding-left: 60px;
  }

  /* Allow dropdowns to expand inside mobile menu */
  header ul li:hover > .dropdown,
  header ul li:hover > .dropdown2 {
    position: relative;
    top: 0;
    right: 0;
  }

  header ul .dropdown li a,
  header ul .dropdown2 li a {
    padding-left: 20px;
  }
}


@media screen and (min-width: 1024px) and (max-width: 1440px){ 
header ul {
flex: 5;
margin-right: 50px;
}
}


ul li ul.dropdown li a{
text-transform: capitalize;
display: block;
background:rgb(0, 0, 0);
margin: 0px;
}

ul li ul.dropdown {
width:auto;
background: rgb(0, 0, 0);
position: absolute;
z-index: 999;
display: none;
margin-left: -13px;
border-radius: 0 0 10px 10px;
height: 90px;
padding: 15px;
padding-top: 7px;
}

ul li:hover ul.dropdown{
display: block;
}

ul li ul.dropdown2 li a{
    text-transform: capitalize;
    display: block;
    background:rgb(0, 0, 0);
    margin: 8px 0px;
    }
    ul li ul.dropdown2 {
    width:auto;
    background: rgb(0, 0, 0);
    position: absolute;
    z-index: 999;
    display: none;
       margin-left: -13px;
  border-radius: 0 0 10px 10px;
  height: 45px;
  padding: 15px;
  padding-top: 7px;
    }
    ul li:hover ul.dropdown2{
    display: block;
    }


.language-switcher {
  text-align: right;
  padding: 10px 20px;
  background-color: transparent; /* dark background for contrast */
}

.language-switcher a{
  display: block;
  color: white;
  font-size: 15px;
  text-align: center;
  padding: 5px;
  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;
}


@media (max-width: 600px) {
  .language-switcher {
    text-align: center;
  }

  .language-switcher .lang-btn {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
  }
}



/* RIGHT SIDE (BUTTON + BURGER) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.member-btn {
  background: transparent;
  border: 2px solid #f0c14b;
  color: #f0c14b;
  padding: 10px 20px;
  margin-top: -10px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 13.33px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.member-btn:hover {
  background-color: #f0c14b;
  color: #000;
}


/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 26px;
  color: #f0c14b;
  cursor: pointer;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}





footer{
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
}
.footerContainer{
  width: 100%;
  padding: 20px 20px 5px 20px ;
}
.socialIcons{
  display: flex;
  justify-content: center;
}



@media only screen and (max-width: 768px){
  .socialIcons{
           display: flex;
           justify-content: center;
           padding-left: 170px;
       
       }
.socialIcons a i{
    padding:  30px;
}
   
 }


.socialIcons a{
  text-decoration: none;
  padding:  7px;
  margin: 10px;
  border-radius: 50%;
}
.socialIcons a i{
  font-size: 1.3em;
  color: rgb(255, 255, 255);
  opacity: 0,9;
}

/* Hover affect on social media icon */
.socialIcons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}

.footerNav{
  margin: 20px 0;
}
.footerNav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.footerNav ul li a{
  color:white;
  margin: 20px;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.7;
  transition: 0.5s;

}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  padding: 20px;
  padding-top: 0px;
  text-align: center;
}
.footerBottom p{
  color: white;
  font-size: 11px;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media only screen and (max-width: 768px){
  .footerNav ul{
      flex-direction: column;
  } 
  .footerNav ul li{
      width:100%;
      text-align: center;
      margin: 5px;
  }
  .socialIcons a{
      padding: 10px;
    padding-bottom: 0px;
      margin: 4px;
    margin-left: -180px;

  }
}










/* ===================== */
/* THEATRE LIST STYLES   */
/* ===================== */

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Hero Section */
.hero-section {
  /*background: linear-gradient(135deg, #da6969, #800c0c);*/
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  text-align: center;
  padding: 170px 20px 142px;
  animation: fadeInDown 1s ease-out;
}

.hero-section img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(0) scale(1);
  transition: transform 0.4s;
}

.hero-section img:hover{
  transform: translateY(-6px);
  transition: transform 0.4s;
}


.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #FCE877;
  padding-top: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}

.subtitle {
  margin-top: 0px;
  font-size: 1.2rem;
  color: #f3f3f3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}

/* Region Heading */
.region {
  margin: 60px 0 30px;
}

.region h2 {
  font-size: 1.5rem;
  border-left: 4px solid #1d1d1d;
  padding-left: 15px;
  margin-bottom: 20px;
  color: #1d1d1d;
}

/* Cinema Grid */
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Card Style */
/* Card Base Style */
.card {
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.05);
  opacity: 0;
  transform: translateY(40px) scale(1); /* base transform includes scale */
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* When visible in scroll */
.card.visible {
  opacity: 1;
  transform: translateY(0) scale(1); /* reset to normal */
}

/* Hover - keeps scale smooth even with scroll effect */
.card.visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 204, 0, 0.12);
  border-color: #fe5d5d;
}


/* Card Content */
.card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.card-text {
  flex: 1;
}

.card-poster {
  width: 200px;
  flex-shrink: 0;
}

.card-poster img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}


.card h3 {
  font-size: 1.1rem;
  color: #FCE877;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.95rem;
  color: #ccc;
}


.info {
  margin-top: 10px;
}

.info iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 8px;
  margin-top: 6px;
}


/* Book Button */
.book-btn {
  background-color: #FCF6F5;
  color: #111b29;
  font-weight: 600;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.book-btn:hover {
  background-color: rgb(255, 255, 255);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Text */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .region h2 {
    font-size: 1.3rem;
  }
}


@media (max-width: 768px) {
  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-poster {
    width: 60%;
    margin-top: 15px;
  }
}
