/* CSS Document */
/* hi */
/* Reset default browser styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Set full width and background color for menu bar */
.menu-bar {
  width: 100%;
  background-color: #999999;
}

/* Set container to full width and flex layout */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
  flex-wrap: wrap;
}

/* Set size and margin for box images */
.boxcover {
  max-width: 400px;
  margin: 5px;
}


.video-box {
  width: auto;
  margin: 5px;
  max-width: 100%; /* Add this line to limit the width to the screen */
}

/* Set the max-width and height for the video tag */
video {
  width: 854px;
  height: auto;
  max-width: 100%; /* Add this line to limit the width to the screen */
}

/* For screens smaller than 600px */
@media screen and (max-width: 600px) {
  /* Set the video div and video tag to be 100% width */
  .video-box,
  video {
    width: 100%;
    max-width: 100%; /* Add this line to limit the width to the screen */
    height: auto;
  }
}



.boxcover {
  max-width: 400px;
  margin: 5px;
}

.boxcover img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .boxcover {
    max-width: 300px;
  }
}

/* Set grid layout and size for gallery items */
.movies-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
}

.movies-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.movie {
  width: 100%;
  text-align: center;
}

/* Set background color and padding for extra area */
.extra-area {
  background-color: #f2f2f2;
  padding: 20px;
}

.buy-button{
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #999999;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 100vw; /* Limit width to viewport width */
}
.vod-button{
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #999999;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 100vw; /* Limit width to viewport width */
}

.download-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #fe1f00;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 100vw; /* Limit width to viewport width */
}

.buy-button:hover,
.vod-button:hover,
.download-button:hover {
  background-color: #666666;
}

.buy-button:active,
.vod-button:active,
.download-button:active {
  background-color: #333333;
}



.movie-info {
  text-align: left;
}

.movie-info span {
  display: block;
}

/* Hide the description by default */
.toggle-description:not(.active) {
  display: none;
}

/* Style the toggle button */
.toggle-button {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
}

.toggle-description {
  display: none; /* Hide the description by default */
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Gallery thumbs Off 
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
Gallery thumbs Off  */

.item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail-container {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

