/* Fonts Styles done by Jonathan 2024*/
/* Point to Google Fonts for Poppins */
@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Thin.ttf) format("ttf");
  font-weight: 100; /* Thin weight */
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Light.ttf) format("ttf");
  font-weight: 300; /* Light weight */
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Regular.ttf) format("ttf");
  font-weight: 400; /* Regular weight */
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Italic.ttf) format("ttf");
  font-style: italic;
  font-weight: 400; /* Regular weight */
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Bold.ttf) format("ttf");
  font-weight: 700; /* Bold weight */
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Extrabold.ttf) format("ttf");
  font-weight: 800; /* Extra Bold weight */
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*color: white;*/
  font-family: "Poppins", Arial, Helvetica, sans-serif;

}

body {
  background-color: #333333;
  /*height: auto;*/
  /*width: 100vw;
  overflow-x: hidden;
  max-width: 1000px;*/
  margin: 0 auto;
}

/* Header Styles */
header {
  padding: 1em 0;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
}

header .left-section,
header .right-section {
  display: flex;
  align-items: center;
}

header .left-section {
  margin-right: auto;
  padding-left: 1em;
}

header .icon {
  cursor: pointer;
  font-size: 25px;
}

header .section-logo {
  margin: 0 auto;
}

header .logo {
  height: 35px;
}

header .right-section {
  gap: 10px;
  margin-left: auto;
}

header .svg-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

main {
  background:black;
}

/* Full-screen menu styles */
.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-color: black;
  color: white;
  z-index: 1000;
  overflow: hidden;
  flex-direction: column;
}

.menu.active {
  display: flex;
}

.menu-header {
  display: flex;
  justify-content: flex-start; /* Align close button to the left */
  padding: 20px;
}

.menu-header .fa-times {
  cursor: pointer;
  font-size: 30px;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.social-icons a {
  color: white;
  font-size: 24px;
}

/* Separator styles */
.separator {
  width: 90%;
  border-bottom: 1px solid white;
}

.menu-items {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.menu-items li {
  margin: 15px 0;
  position: relative;
}

.menu-items a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
}

.menu-items a:hover,
.menu-items a:focus {
  text-decoration: none;
  color: orange;
}

.menu-footer {
  width: 100%;
  padding-bottom: 20px;
}

.menu-footer .box-office {
  padding: 20px;
  text-align: center;
}

.menu-footer .box-office h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  padding-bottom: 10px;
}

.menu-footer .box-office p {
  margin: 5px 0;
}

.box-office-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.box-office-item {
  min-width: 150px;
  margin-right: 10px;
  text-align: left;
  color: white;
}

.box-office-item img {
  width: 100px;
  height: auto;
  margin-bottom: 5px;
}

/* Prevent scrolling when the menu is active */
.no-scroll {
  overflow: hidden;
}

/* Overlay styles */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.menu.active + .menu-overlay {
  display: block;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  overflow: hidden;
}

.modal.active {
  display: block;
}

.modal-content {
  background-color: white;
  margin: 50px auto;
  padding: 20px;
  width: 90%;
  max-width: 600px; /* Increase max-width for a bigger modal */
  border-radius: 10px;
  position: relative;
}

/* Modal header with flex alignment */
.modal-header {
  justify-content: space-between; /* Distribute space between close button and nav tabs */
  align-items: center;
  border-bottom: none;
  padding: 0 !important;
  padding-top: 20px !important;
}

.close {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  float: none !important;
}

/* Renamed nav-tabs to modal-nav-tabs and aligned with flexbox */
.modal-nav-tabs {
  display: flex;
  justify-content: space-around;
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 20px;
}

.modal-nav-tabs li {
  flex: 1;
  text-align: center;
}

.modal-nav-tabs li a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.modal-nav-tabs li.active a {
  color: orange !important;
  border-bottom: 2px solid orange !important;
}

.tab-content {
  text-align: center;
  margin-top: 20px; /* Add margin-top to create space between nav-tabs and form */
}

.tab-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-content form input[type="text"],
.tab-content form input[type="email"],
.tab-content form input[type="password"],
.tab-content form input[type="date"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  color: black;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Add orange border on input focus */
.tab-content form input:focus {
  border: 1px solid orange;
  outline: none; /* Remove default outline */
}

.tab-content form button {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: orange;
  color: white;
  cursor: pointer;
}

.tab-content .forgot-password,
.tab-content .cancel {
  display: block;
  color: orange;
  text-decoration: none;
  margin-top: 10px;
}

.tab-content .forgot-password:hover,
.tab-content .cancel:hover {
  text-decoration: underline;
}

.tab-content label {
  font-size: 14px;
  text-align: left;
  color: black;
}

.tab-content label input[type="checkbox"] {
  margin-right: 10px;
  color: orange;
}

/* Styling for Post Code label */
.postcode-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap; /* Prevent wrapping */
}

.postcode-wrapper p {
  margin: 0;
  padding-right: 5px; /* Add some space between the text and input */
  color: #6f6f6f;
  font-size: 14px;
  flex: 1; /* Ensure it takes up 50% of the space */
}

.postcode-wrapper input {
  flex: 1; /* Ensure it takes up 50% of the space */
}

/* Footer Styles */
footer {
  color: white; /* White text */
  text-align: center; /* Center text */
}

.footer-content {
  background-color: #444; /* Dark gray background for the main footer */
}

.footer-content .footer-section {
  max-width: 800px; /* Center the content with max-width */
  margin: 0 auto; /* Center align the content */
  padding: 15px; /* Padding around the content */
}

.footer-section h2 {
  font-size: 18px; /* Font size for the title */
  font-weight: bold; /* Make the title bold */
  margin-bottom: 15px; /* Margin below the title */
}

.footer-section p {
  font-size: 12px; /* Font size for the paragraph */
  margin-bottom: 15px; /* Margin below the paragraph */
  line-height: 1.5; /* Line height for better readability */
}

.footer-highlight {
  font-size: 18px; /* Font size for the highlighted text */
  font-weight: bold; /* Make the highlighted text bold */
  color: orange; /* Color for the highlighted text */
}

.footer-bottom {
  background-color: #000; /* Full black background for the bottom section */
  padding: 20px 0;
}

.footer-logo {
  max-width: 150px; /* Logo size */
  padding-right: 10px;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px; /* Margin below the social media links */
}

.social-media span {
  font-size: 16px;
  margin-right: 10px; /* Space between text and icons */
  font-weight: bold;
}

.social-media a {
  color: white;
  font-size: 18px; /* Icon size */
  text-decoration: none;
}

.social-media a:hover {
  color: orange; /* Hover color */
}

.footer-legal {
  font-size: 10px;
  line-height: 1.5;
  color: #8b8b8b;
}

.text-grey {
  color: #a7a9ac !important;
}

/* Top Breadcrumb Nav */
.breadcrumb-container {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 10px;
}
.breadcrumb-left {
  text-align: left;
  align-self: start;
  flex:40%;
}
.breadcrumb-right {
  text-align: right;
  align-self: end;
  flex:40%;
}
.breadcrumb-nav {
  color: orange;
  /*font-size: 14px;*/
  text-decoration: none;
}

/* Global Styles */
.main-container-side-padding {
    padding-left: 10px; /*edited on revamp 2024*/
    padding-right: 10px;
}
.content {
    padding-bottom: 10px;
    padding-top: 10px;
}

.content-header {
    display: flex;
    align-items: center;
    padding-left: 10px; /* Add padding to left */
    padding-right: 10px;
}

.content .title {
    /*font-size: 24px;*/ /* Adjust size for larger title */
    font-weight: bold; /* Make the title bold */
    color: white; /* Set text color to white */
    margin: 0;
    margin-right: 5px; /* Smaller spacing between title and date */
}

/* Featuring Styles */
.content.featuring .nav-tabs {
    width: 100%;
    display: flex;
    justify-content:start;
    border:none !important;
    /* border-bottom: 2px solid orange; Default bottom border for the tab container */
}

.content.featuring .nav-tabs > li {
    text-align: center;
}

.empty-tab {
    border-bottom: 2px solid orange !important; /* Default bottom border for empty tabs */
}

.content.featuring .nav-tabs > li > a {
    width: 100%;
    border: none;
    color: white;
    /*font-size: 18px;*/ /* Make text bigger */
    font-weight: bold; /* Make text bold */
    padding-bottom: 8px; /* Add padding to bottom */
    border-bottom: 2px solid orange; /* Orange border on bottom */
    display: block;
}

.content.featuring .nav-tabs > li.active > a {
    color: orange;
    border-top: 2px solid orange; /* Orange border on top */
    border-right: 2px solid orange; /* Orange border on right */
    border-left: 2px solid orange; /* Orange border on left */
    border-bottom: none; /* No bottom border */
    background-color: black;
}

.content.featuring .nav-tabs > li:not(.active) > a:hover {
    color: orange;
    border-bottom: 2px solid orange; /* Ensure bottom border is orange */
    background-color: black; /* Ensure background is black */
}

.content.featuring .tab-content {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* Carousel Styles */
.content.featuring .carousel-inner .item {
    text-align: center;
}

/* Box Office Content Styles */
.content.boxOffice .date {
    font-size: 16px; /* Smaller size for the date */
    color: white; /* Set text color to white */
    margin: 0;
}

.content.boxOffice .box-office-content {
    display: flex;
    align-items: flex-start; /* Center the image vertically */
    gap: 20px; /* Space between the image and the list */
    padding: 0 10px; /* Add padding to left and right */
}

.content.boxOffice .box-office-image {
    width: 160px;
    height: auto;
    object-fit: cover;
    align-self: center; /* Center the image vertically */
}

.content.boxOffice .box-office-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Evenly distribute vertical space */
    align-items: flex-start;
    height: 100%; /* Make it take full height */
}

.content.boxOffice .box-office-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content.boxOffice .box-office-item {
    display: flex;
    align-items: flex-start;
    color: white;
    flex-grow: 1; /* Make each item take equal space */
    font-size: 18px;
    padding-bottom: 10px;
}

.content.boxOffice .box-office-number {
    /*font-size: 22px;*/
    text-align: right;
    padding-right: 10px;
    font-weight: bold;
}

.content.boxOffice .movie-title {
    /*font-size: 20px;*/
    text-align: left;
    color: white;
}

/* Contests Content Styles */
.content.contests .carousel-inner .item img {
    width: 100%;
    height: auto;
}

.content.contests .carousel-indicators {
    bottom: 10px; /* Adjust position as needed */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.content.contests .carousel-indicators li {
    background-color: orange; /* Indicator color */
    width: 15px; /* Thicker indicator */
    height: 15px; /* Thicker indicator */
    border: 2px solid white; /* Optional: white border for better visibility */
    border-radius: 2px; /* Change to box shape */
    margin: 0 5px;
}

.content.contests .view-more-container {
    position: relative;
    text-align: right;
    padding: 10px;
}

.content.contests .view-more {
    color: orange;
    /*font-size: 14px;*/
    text-decoration: none;
}

.content.contests .view-more:hover {
    text-decoration: underline;
}

/* News Content Styles */
.content.news .article {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.content.news .news-image {
    width: 100%;
    height: auto;
}

.content.news .news-text {
    text-align: center;
    padding: 10px 0;
}

.content.news .news-title {
    /*font-size: 18px;*/
    color: white;
    font-weight: bold;
    margin: 10px 0;
    word-wrap: break-word; /* Enable word wrapping */
    overflow-wrap: break-word; /* Alternative for better support */
    white-space: normal; /* Ensure wrapping is applied */
}

.content.news .news-subtitle {
    /*font-size: 14px;*/
    color: white;
    padding-left: 10px; /* Add padding to the left */
    word-wrap: break-word; /* Enable word wrapping */
    overflow-wrap: break-word; /* Alternative for better support */
    white-space: normal; /* Ensure wrapping is applied */
}

.content.news .view-more-container {
    position: relative;
    text-align: right;
    padding: 10px;
}

.content.news .view-more {
    color: orange;
    /*font-size: 14px;*/
    text-decoration: none;
}

.content.news .view-more:hover {
    text-decoration: underline;
}

/* Details Page Styles */

.movie-details{
    padding-left: 10px;
    padding-right: 10px;
}
/*  Movie details main  */
.movie-detail-box{
    display: flex;
    padding-bottom:15px;
}
.movie-detail-left{
    flex-direction: column;
    flex:  4;
    padding-right:10px;
}
.movie-detail-left img{
    width: 100%;
    height:auto;
}
.movie-detail-right{
    flex-direction: column;
    flex:  5;
}
.movie-detail-title{
    color: #FFF;
    font-size: 22px;
    font-weight: bold;
    padding-bottom:5px
}
.movie-detail-like{
    color: #ed1c24;
    font-size: 22px;
    font-weight: bold;
    padding-bottom:5px
}
.movie-detail-text{
    color: #FFF;
    font-size: 24px;
    padding-bottom:2px;
}

.movie-jump-to-box{
    color: #FFF;
    font-size: 14px;
    padding-bottom:5px;
}
.movie-jump-to-title{
    color: #FFF;
    font-weight: bold;
    padding-bottom:2px;
}
.movie-showtimes-title{
    color: #FFF;
    font-weight: bold;
    padding-bottom:2px;
    margin-bottom:5px;
}
.movie-jump-to-links, .movie-jump-to-links>a{
    color: #f7941e;
    
}


/*  Movie details extended  */
.movie-details-extended{
    padding-top:5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.movie-details-extended-format{
    padding-bottom: 10px;
}
.movie-details-format-title{
    font-size: 16px;
    color: #a7a9ac;
}
.format-block-label {
    display: inline-block;
    background: #a7a9ac;
    border: 1px solid #777777;
    border-radius: 4px;
    min-width: 80px;
    font-size: 14px;
    /* height: 28px; */
    /* line-height: 26px; */
    font-weight: 300;
    text-align: center;
    padding:5px;
    margin: 0 5px 8px 0;
    cursor: help;
    text-transform: uppercase;
}

.md-extended-content-table{
    width:100%;
    border:none;
}
.md-extended-content-table-title{
    border:none;
    font-size: 14px;
    color: #a7a9ac;
    padding-right:10px;
    vertical-align: text-top;
    padding-bottom: 5px;
    width:10%;
}
.md-extended-content-table-content{
    border:none;
    font-size: 14px;
    color: #FFFFFF;
    padding-right:10px;
    vertical-align: text-top;
    padding-bottom: 5px;
}

/*  Movie Review & Trailer  */

.movie-review-trailer{
    padding-left: 10px;
    padding-right: 10px;
    padding-top:10px;
    padding-bottom:10px;
}

.section-header{
    /* font-size: 20px; Adjust size for larger title */
    font-weight: bold; /* Make the title bold */
    color: white; /* Set text color to white */
}

.movie-detail-video{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
  
.movie-detail-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.md-review-title{
    font-size: 16px;
    font-weight: bold;
    color: white;
}
.movie-detail-review{
    padding-top:10px;
}
.md-review-date{
    font-size: 16px;
    font-weight: 300;
    color: rgb(200, 200, 200);
    font-style: italic;
}
.md-review-text{
    font-size: 16px;
    font-weight: 300;
    color: rgb(200, 200, 200);
}


/*  Movie Showtimes */

.movie-showtimes{
    /*padding-left: 10px; edited on revamp 2024
    padding-right: 10px;*/
    padding-top:5px;
    padding-bottom:10px;
}

.md-showtimes-cinemas{
    color: white;
    font-size: 14px;
}

.md-showtimes-cinemas a{
    color: white;
    text-decoration: none;
    cursor: pointer;
}


.md-showtimes-legend-title{
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding-top:15px;
}

.md-showtimes-legend{
    font-size: 14px;
    color: white;
}

.md-showtimes-legend-available{
    color: #60b158;
}
.md-showtimes-legend-fillingup{
    color: #ea983e;
}
.md-showtimes-legend-limitedseats{
    color: #da3731;
}
.md-showtimes-legend-soldout{
    color: #878787;
}

.md-showtimes-cinema-header{
    background-color: white;
    padding:4px;
    width:100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color:black;
    text-transform: uppercase;
    margin-top:15px
}

.md-s-cinema-showtimes{
    padding-top:15px;
    border-bottom: 2px solid orange;
}

.md-s-cinema-name{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.md-s-cinema-address{
    font-size: 12px;
    color: #a9a9a9;

}
.md-s-c-showtimes-listing{
    padding-top:10px;
    padding-bottom:7px;
}

.md-s-c-showtimes-container .md-s-c-showtimes-listing:nth-child(n + 2) {
    border-top: 2px dashed #4d4d4d;
  }

.md-s-c-showtimes-tickettype{
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 3px;
}

.md-s-c-showtimes-sub-tickettype{
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
}

.md-s-c-showtime-item{
    display: inline-block;
    background: #60b158;;
    border: 1px solid #009933;
    text-align: center;
    border-radius: 3px;
    margin: 0 6px 6px 0;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    width:calc(25% - 9px);
    max-width: 100px;
    min-width: 70px;
    padding: 3px 0 2px;
    line-height: 22px;
    text-decoration: none;
    cursor: pointer;
}

.md-s-c-showtime-item:hover{
    background: #0c9200;
    text-decoration: none;
    color: #FFFFFF;
}

.showtimes-status-fillingup{
    background: #ea983e;
    border: 1px solid #bc660b;
    text-decoration: none;
    color: #FFFFFF;
}

.showtimes-status-fillingup:hover{
    background: #f88000;
    text-decoration: none;
    color: #FFFFFF;
}

.showtimes-status-limitedseats{
    background: #da3731;
    border: 1px solid #790400;
    text-decoration: none;
    color: #FFFFFF;
}

.showtimes-status-limitedseats:hover{
    background: #b3120c;
    text-decoration: none;
    color: #FFFFFF;
}

.showtimes-status-soldout{
    background:#878787;
    border: 1px solid #353535;
    text-decoration: none;
    color: #FFFFFF;
}
.showtimes-status-soldout:hover{
    background: #878787;
    text-decoration: none;
    color: #FFFFFF;
}

/* Movies Style */
.featuringMovieImg{
  width: 100%;
  height: auto;
  margin: 0 auto;
}