:root {
  --primary-color: #bca056;
  --primary-color-opacity: rgba(188, 160, 86, 0.75);
  --secondary-color: #2ecc71;
  --text-color: #333;
}
p,
h1,
h3,
h2,
h4,
h5,
h6 {
  margin-bottom: 0;
}
@keyframes animatedBackground {
  0% {
    background-color: #ff0000;
  }
  50% {
    background-color: #cc0000;
  }
  100% {
    background-color: #990000;
  }
}
body {
  font-family: "Sofia Sans", system-ui;
  color: black;
}

/* Only apply red background animation to pages that need it, not landing page */
body:not(.landing-page-body) {
  animation: animatedBackground 5s infinite;
}

/* Override for landing page - black background, no animation */
body.landing-page-body {
  animation: none !important;
  background-color: #1a1a1a !important;
}
.max-width {
  max-width: 1200px;
  margin: auto;
  padding-inline: 20px;
}
.main-container {
  width: 100%;
  min-height: 100vh;
}
.logo {
  width: 200px;
  height: auto;
  position: relative;
  z-index: 3;
}
.container-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-block: 40px;
}
.title-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 3;
}
.primary-button {
  background-color: var(--primary-color);
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
.primary-button > svg {
  width: 20px;
  height: 20px;
  color: white;
  transition: all 0.3s ease;
}
.primary-button:hover > svg {
  transform: translateX(5px);
}
.header-image {
  width: 100%;
  position: absolute;
  bottom: -150px;
  left: 0;
  z-index: 2;
}
.container-theater {
  display: flex;
  gap: 40px;
  flex-direction: column;
  padding-block: 40px 40px;
}
.item-theater {
  position: relative;
  width: 100%;
}
.img-theater {
  width: 100%;
  height: 100%;
}
.container-text-theater {
  position: absolute;
  bottom: 40px;
  width: 100%;
  padding-inline: 80px;
  display: flex;
  align-items: end;
}
.time-text-theater {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
}
.container-text-theater > div {
  flex: 1;
}
.title-theater {
  font-size: 50px;
  color: white;
}
.overlay-image {
  position: absolute;
  bottom: 0;
  height: 50%;
  left: 0;
  width: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 40%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.3) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}
.genre-theater > div {
  font-size: 20px;
  color: var(--primary-color);
}
.genre-theater > p {
  font-size: 18px;
}

.container-hightlight {
  display: flex;
  gap: 60px;
  flex-direction: column;
  padding-bottom: 40px;
}
.wrapper-hightlight > h1 {
  font-size: 50px;
  padding-block: 40px 60px;
  text-align: center;
  margin-bottom: 0;
}
.item-hightlight {
  display: flex;
  gap: 40px;
  height: 380px;
}
.item-hightlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item-hightlight > div {
  flex: 1;
}
.text-hightlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-hightlight > p {
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 0;
}
.text-hightlight > h3 {
  font-size: 36px;
  margin-bottom: 0;
}
.text-hightlight > div {
  font-size: 18px;
}
.container-hightlight > :nth-child(even) {
  flex-direction: row-reverse;
}
.content-bottom-hightlight {
  display: flex;
  align-items: center;
  gap: 16px;
}
.voucher-hightlight > svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.voucher-hightlight {
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
}
.voucher-hightlight:hover > svg {
  transform: translateX(10px);
}

.instagram-section {
  padding-block: 40px;
}

.instagram-section h2 {
  font-size: 50px;
  margin-bottom: 24px;
  text-align: center;
}

.instagram-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.instagram-gallery img {
  height: 400px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.instagram-gallery button {
  width: fit-content;
  font-size: 16px;
}
.button-container {
  width: 100%;
  text-align: end;
  margin-top: 24px;
}

.review-section {
  padding-block: 40px;
}
.review-section h2 {
  font-size: 50px;
  margin-bottom: 24px;
  text-align: center;
}
.review-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}
.review-container > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.review-container > div > h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.review-container > div > p {
  font-size: 18px;
  margin-bottom: 0;
}
.icon-review-container {
  margin: auto;
  display: flex;
  gap: 4px;
}
.icon-review-container > svg {
  width: 32px;
  height: 30px;
}
.header-video-background {
  position: relative;
}
.video-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-header > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-overlay-header-video {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.main-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper-footer {
  background-color: black;
}
.container-footer {
  width: 100%;
  min-height: 352px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding-block: 40px;
  flex-wrap: wrap;
  padding-inline: 20px;
}
.footer-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.footer-box > h1 {
  font-size: 20px;
  color: white;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-policy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.contact-footer > a {
  font-size: 16px;
  margin-bottom: 0;
  text-decoration-line: none;
  color: white;
}
.contact-footer > p {
  color: white;
  font-size: 16px;
}
.contact-footer > svg {
  width: 40px;
  height: 40px;
}
.container-detail-timeline {
  display: flex;
  gap: 40px;
  padding: 10px 0 40px 0;
}
.timeline-detail {
  flex: 1;
}
.timeline-detail > h1 {
  font-size: 50px;
  margin-bottom: 32px;
}
.timeline-detail > p {
  font-size: 18px;
  margin-bottom: 0;
}
.address-theater-detail {
  display: flex;
  gap: 12px;
  align-items: center;
}
.address-theater-detail > p {
  font-size: 20px;
  margin-bottom: 0;
}
.theater-timeline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding-block: 16px;
}
.labels {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}
.label {
  text-align: center;
  font-size: 14px;
}
.label.after-work {
  width: 48%;
}
.label.main {
  width: 12%;
}
.label.after-show {
  width: 48%;
}
.durations {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}
.duration {
  text-align: center;
  font-size: 12px;
  color: black;
}
.duration.after-work {
  width: 48%;
}
.duration.main {
  width: 12%;
}
.duration.after-show {
  width: 48%;
}
.timeline {
  display: flex;
  align-items: center;
  width: 100%;
}
.play-button,
.pause-button {
  background: white;
  border: none;
  cursor: pointer;
  margin: 0 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-button svg,
.pause-button svg {
  width: 30px;
  height: 30px;
  fill: black;
}
.theater-line-container {
  flex: 1;
  position: relative;
  height: 2px;
  background: white;
  border-radius: 1px;
}
.progress-line {
  position: absolute;
  height: 100%;
  background: white;
  width: 10%;
  border-radius: 1px 0 0 1px;
}
.progress-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f5c518;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
.marker {
  position: absolute;
  width: 2px;
  height: 10px;
  background: white;
  top: 50%;
  transform: translateY(-50%);
}
.marker-1 {
  left: 40%;
}
.marker-2 {
  left: 60%;
}
.container-detail-timeline > img {
  width: 488px;
  height: 394px;
  object-fit: cover;
}
.container-story-brief {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-story-brief > h1 {
  font-size: 50px;
  text-transform: uppercase;
}
.container-story-brief > img {
  width: 1200px;
  height: 553px;
  object-fit: cover;
}
.container-our-actor {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.container-our-actor > h1 {
  font-size: 50px;
  text-transform: uppercase;
}
.container-actor {
  display: flex;
  gap: 40px;
  flex-direction: row;
}
.container-actor > img {
  width: 305px;
  height: 200px;
  object-fit: cover;
}
.wrapper-actor {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapper-actor > h1 {
  font-size: 36px;
}
.wrapper-actor > p {
  font-size: 18px;
}
.container-our-story {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-our-story > h1 {
  font-size: 50px;
  text-transform: uppercase;
}
.story-item {
  display: flex;
  gap: 40px;
  flex-direction: row;
}
.story-item > img {
  width: 305px;
  height: 200px;
  object-fit: cover;
}
.wrapper-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapper-story > h1 {
  font-size: 36px;
}
.wrapper-story > p {
  font-size: 18px;
  font-family: Rubik, sans-serif;
}
.container-our-team {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-our-team > h1 {
  font-size: 50px;
  text-transform: uppercase;
}
.wrapper-our-team {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.item-our-team {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.header-our-team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.header-our-team > img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.header-our-team > h1 {
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.header-our-team > p {
  font-size: 18px;
  margin-bottom: 0;
}
.container-time-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 40px 40px;
  justify-content: center;
  align-items: center;
}
.wrapper-timeline {
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
}
.wrapper-timeline > h1 {
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
}
.wrapper-timeline-items {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.wrapper-timeline-items > h1 {
  font-size: 36px;
  text-align: center;
}
.item-time {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
.icon-time {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 170px;
}
.icon-time > svg {
  width: 60px;
  height: 60px;
}
.icon-time > p {
  font-size: 20px;
  margin-bottom: 0;
}
.text-time {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.text-time > h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.text-time > p {
  font-size: 18px;
  margin-bottom: 0;
}
.wrapper-timeline-box {
  display: flex;
  gap: 24px;
  flex-direction: row;
}
.timeline-box {
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.timeline-box > h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.timeline-box > p {
  font-size: 18px;
  margin-bottom: 0;
  text-align: center;
}

.our-story-list-image {
  display: flex;
  width: 100%;
}
.our-story-list-image > div {
  flex: 1;
  padding: 0 8px;
  overflow: hidden;
  max-height: 450px;
}
.our-story-list-image img {
  object-fit: cover;
  object-position: center;
}
.image-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out forwards;
}
.image-modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 500px;
  aspect-ratio: 1/1;
  animation: zoomIn 0.3s ease-out;
}
.image-modal-wrapper > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.theater-booking-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in-out;
  align-items: center;
}

.theater-booking-modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 1250px;
  height: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.theater-booking-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.button-menu {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  height: fit-content;
  position: absolute;
  right: 10px;
}
.hidden-button-menu {
  display: none !important;
}
.button-menu:hover {
  color: black;
}
.menu-wrapper {
  position: fixed;
  right: -500px;
  top: 0;
  height: 100vh;
  width: 500px;
  background-color: var(--primary-color-opacity);
  z-index: 100;
  transition: right 0.5s ease;
  padding: 100px 30px 100px 130px;
}
.menu-wrapper.open {
  right: 0;
}
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 30px;
}
.menu-item {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.menu-item > a {
  text-decoration: none;
  color: white;
}
.menu-close {
  position: absolute;
  top: 20px;
  left: 30px;
  cursor: pointer;
}
.menu-close > svg {
  width: 30px;
  height: 30px;
  color: white;
}

.menu-item-icon-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-block: 30px;
}

.secondary-button {
  background-color: white;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  text-decoration: none;
}

.header-button-book {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  height: fit-content;
  position: absolute;
  left: 10px;
}

.our-address {
  padding-block: 40px;
}
.our-address > h2 {
  font-size: 50px;
  margin-bottom: 24px;
  text-align: center;
}
.container-address-map {
  border-radius: 5px;
  overflow: hidden;
}
.footer-policy {
  display: flex;
}
.footer-policy > a {
  text-decoration: none;
  color: white;
}
.footer-policy > p {
  color: dark;
  margin-bottom: 0;
  font-size: 16px;
}
.footer-business {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-business > p {
  color: white;
  margin-bottom: 0;
  font-size: 16px;
}
.footer-business > a {
  font-size: 16px;
  text-decoration: none;
  color: white;
}

.footer-copyright {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-copyright p {
  margin: 0;
  color: white;
  font-size: 16px;
}

@media screen and (max-width: 1440px) {
  .item-theater {
    height: 500px;
  }
}
/*tablet*/
@media screen and (max-width: 900px) {
  .social-media {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
  }
  .review-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 45px;
  }
  .header-image {
    bottom: -65px;
  }
  .container-text-theater {
    padding-inline: 40px;
  }
  .item-hightlight {
    height: auto;
  }
  .container-story-brief > img {
    width: 100%;
    height: auto;
  }
  .container-time-detail {
    padding-top: 150px;
  }
}
/*mobile*/
@media screen and (max-width: 500px) {
  .container-header {
    padding-bottom: 0;
  }
  .container-detail-timeline {
    padding-block: 40px 40px;
  }
  .logo {
    width: 150px;
  }
  .title-header {
    padding-top: 0;
  }
  .title-header > h1 {
    font-size: 20px;
    padding-top: 20px;
  }
  .primary-button {
    font-size: 15px;
    padding: 8px;
  }
  .title-theater {
    font-size: 20px;
    color: white;
  }
  .container-footer {
    padding-block: 20px;
    gap: 15px;
    flex-direction: column;
  }
  .social-media {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    padding-right: 213px;
  }
  .social-media > svg {
    width: 30px;
    height: 30px;
  }
  .footer-box:nth-child(1) {
    border-top: none;
  }
  .footer-box {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 5px;
  }
  .footer-box > h1 {
    font-size: 18px;
    font-weight: 600;
  }
  .footer-box p {
    font-size: 14px;
  }
  .contact-footer > svg {
    width: 30px;
    height: 30px;
  }
  .container-text-theater {
    padding-inline: 20px;
  }
  .time-text-theater {
    font-size: 12px;
  }
  .genre-theater {
    font-size: 12px;
    color: white;
  }
  .wrapper-hightlight > h1 {
    font-size: 30px;
  }
  .item-hightlight {
    flex-direction: column;
  }
  .container-hightlight > :nth-child(even) {
    flex-direction: column;
  }
  .instagram-section h2 {
    font-size: 30px;
  }
  .review-section h2 {
    font-size: 30px;
  }
  .container-our-story > h1 {
    font-size: 30px;
  }
  .container-our-team > h1 {
    font-size: 30px;
  }
  .wrapper-story > h1 {
    font-size: 20px;
  }
  .wrapper-our-team > h1 {
    font-size: 20px;
  }
  .wrapper-our-team > p {
    font-size: 16px;
  }
  .story-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .wrapper-our-team {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
  .item-our-team {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
  .container-detail-timeline {
    flex-direction: column;
    align-items: center;
  }
  .container-detail-timeline > img {
    width: 100%;
    height: auto;
  }
  .timeline-detail > h1 {
    font-size: 30px;
  }
  .timeline-detail > p {
    font-size: 16px;
  }
  .address-theater-detail > p {
    font-size: 16px;
  }
  .container-story-brief > h1 {
    font-size: 30px;
  }
  .container-story-brief > img {
    width: 100%;
    height: auto;
  }
  .container-actor > img {
    width: 100%;
    height: auto;
  }
  .container-actor {
    display: flex;
    gap: 35px;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
  }
  .wrapper-actor > h1 {
    font-size: 20px;
  }
  .wrapper-actor > p {
    font-size: 16px;
  }
  .container-our-actor > h1 {
    font-size: 30px;
  }
  .wrapper-timeline > h1 {
    font-size: 30px;
  }
  .wrapper-timeline-items > h1 {
    font-size: 20px;
  }
  .item-time {
    flex-direction: column;
    align-items: center;
  }
  .icon-time {
    width: 100%;
  }
  .icon-time > svg {
    width: 40px;
    height: 40px;
  }
  .text-time {
    width: 100%;
  }
  .text-time > h4 {
    font-size: 14px;
  }
  .text-time > p {
    font-size: 16px;
  }
  .timeline-box > h3 {
    font-size: 16px;
  }
  .timeline-box > p {
    font-size: 16px;
  }
  .wrapper-timeline-box {
    flex-direction: column;
    align-items: center;
  }
  .our-story-list-image {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .our-story-list-image img {
    width: 100%;
    height: auto;
  }
  .mobile-button-book {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .our-address h2 {
    font-size: 30px !important;
  }
  .menu-wrapper {
    width: 300px !important;
    padding: 100px 30px 100px 30px !important;
  }
}
