/* Website by GNSL Production and Vital Production. All rights reserved. */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: 'Txt';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Title';
  src: url('../fonts/Anton-Regular.ttf') format('truetype');
}

:root {
  --color1: #7a15ad;
  --color2: #222;
  --color3: #111;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 10px;
}

body {
  color: white;
  font-family: 'Txt', serif;
  background: var(--color3);
}

.home {
  padding-top: 100vh;
}

.page {
  margin-top: 100px;
}

.content {
  background-color: var(--color3);
  padding: 50px 15px 15px 15px;
}

a {
  text-decoration: none;
  color: white;
}

.box {
  background-color: var(--color2);
  border: 1px solid #7a15ad79;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2000;
}

.logoHome {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  opacity: 1;
  z-index: -2000;
  transition: width 0.2s ease-out, opacity 0.2s ease-out;
}

.block {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  position: fixed;
  top: 15px;
  z-index: 1000;
  width: calc(100% - 30px);
  left: 15px;
  flex-wrap: wrap;
  background-color: #22222299;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 25px;
  gap: 5px;
}

.titleLogo {
  font-size: 1.2em;
  font-weight: 800;
  white-space: nowrap;
}

.logo img {
  height: 50px;
}

.navLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 1;
}

.btn {
  padding: 10px 15px;
  background-color: var(--color2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 1.2s;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 1.1em;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
}

.btn:nth-child(6) {
  animation: pulse 2s infinite;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

.btn:nth-child(6):hover, .btn.active:nth-child(6) {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 55%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: 1s ease;
}

.btn:hover::before, .btn.active::before {
  top: -90%;
  right: -65%;
}

.btn:hover, .btn.active {
  background-color: var(--color1);
}

.section-title {
  text-align: center;
  margin: 0px 20px 40px 20px;
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Title';
  font-weight: lighter;
}

.infoSec {
  text-align: center;
  max-width: 420px;
  margin: 50px auto;
}

.banner-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.banner-text {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.quick-services {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  margin: 0 8px;
}

.service-icon img {
  height: 40px;
}

.info.box {
  border-color: var(--color1);
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
}

.title {
  font-size: 1.85rem;
  text-align: center;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: 'Title';
  font-weight: lighter;
}

.text {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.4;
}

.text-credits {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.4;
  text-align: center;
}

.liste {
  margin-bottom: 0.8rem;
}

.liste li {
  margin-bottom: 0.4rem;
}

.engagement-banner {
  background: var(--color1);
  color: #fff;
  text-align: center;
  padding: 1.2rem;
  margin-bottom: 50px;
  font-size: 1.1rem;
  border-radius: 20px;
}

.contact {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group label {
  position: absolute;
  top: 25px;
  left: 10px;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.9rem;
  pointer-events: none;
  transition: 1s ease all;
  background-color: var(--color2);
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 25px;
  font-size: 1.1rem;
  border-radius: 17.5px;
  outline: none;
  transition: 1s ease;
  background: var(--color2);
  border: 1px solid var(--color1);
  resize: none;
  color: #888;
}

input {
  height: 45px;
}

textarea {
  height: 280px;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 15px 5px rgba(94, 30, 116, 0.5);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -30px;
  font-size: 0.7rem;
  border: 1px solid var(--color1);
}

.poster-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  justify-content: center;
  margin-bottom: 50px;
}

.poster {
  position: relative;
  width: 380px;
  overflow: hidden;
  cursor: pointer;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 1s ease;
}

.poster:hover img {
  transform: scale(1.1);
}

.poster-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
  box-sizing: border-box;
  font-size: 1.1em;
  overflow: auto;
  border-radius: 0px;
}

.poster:hover .poster-description {
  opacity: 1;
}

.gallery {
  column-count: 3;
  column-gap: 12px;
  margin-bottom: 50px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.gallery-item.tall img {
  height: 350px;
}

.gallery-item img:hover {
  transform: scale(1);
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 1.25s ease;
  z-index: 900;
  backdrop-filter: blur(0px);
  cursor: pointer;
}

#lightbox.active {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(15px);
}

#lightbox img {
  position: relative;
  top: 40px;
  box-shadow: 0 0 30px #000;
  cursor: auto;
  width: 650px;
  height: max-content;
}

#lightbox .close-btn {
  position: absolute;
  top: 18px;
  right: 25px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  user-select: none;
}

.BilletsIframe {
  width: 100%;
  margin-bottom: 50px;
  height: 650px;
}

.section {
  max-width: 1200px;
  margin: 0px auto;
}

.btnImg {
  width: 30px;
  height: 30px;
}

.footer {
  gap: 8px;
}

@media (max-height: 1400px) and (min-width: 769px) {
  #lightbox {
    align-items: unset;
    overflow: auto;
    padding: 80px 0px;
  }
}

@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }

  #lightbox {
    z-index: 9999;
  }

  #lightbox img {
    width: 90%;
    top: 0px;
  }

  .footerLinks {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .page {
    margin-top: 200px;
  }

  .btn:hover, .btn:nth-child(6):hover {
    background-color: var(--color2);
    color: white;
  }

  .btn:hover::before {
    top: 100%;
    right: 55%;
  }

  .btn, .footer {
    font-size: 0.8em;
  }

  .section-title {
    text-align: center;
    font-size: 2rem;
  }

  .poster {
    height: auto;
  }

  .poster img {
    height: auto;
  }

  .poster-description {
    position: static;
    opacity: 1;
    border-radius: 20px;
    background-color: var(--color2);
    display: block;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    height: auto;
    padding: 20px;
  }

  .poster-container {
    gap: 60px;
  }

  .poster:hover img {
    transform: none;
  }

  .txtFooter {
    display: none;
  }
}

@media (max-width: 370px) {
  .section-title {
    font-size: 1.8rem;
  }
}

/* Website by GNSL Production and Vital Production. All rights reserved. */