/* ♻️ Tiny CSS Reset (https://github.com/gnat/css-reset-tiny) */ 
/*,*::before,*::after { box-sizing: border-box; margin: 0; }*/ /* Prevent padding and border from affecting element width. Remove margins. */ 
html { text-size-adjust: none; -webkit-text-size-adjust: none; -moz-text-size-adjust: none; tab-size: 4; } /* Prevent font size inflation on mobile. Sane tab size. */ 
html,body,p,ol,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,h1,h2,h3,h4,h5,h6,label,table,td,th { padding: 0; } /* No padding. */ 
h1,h2,h3,h4,h5,h6,p { font-size: inherit; font-weight: inherit; overflow-wrap: break-word; } /* Reset all headers and <p>. */ 
h1,h2,h3,h4 { text-wrap: balance; } /* Balance text on big headers. */ 
button,input,select,textarea { font: inherit; } /* No custom font on forms. */ 
img,picture,svg,video { height: auto; max-width: 100%; } /* Media should not break outside of parent. */ 
audio,canvas,embed,iframe,img,object,svg,video { vertical-align: middle; } /* Removes tiny space on bottom. */ 
table { text-indent: 0; border-color: inherit; border-collapse: collapse; border-spacing: 0; } /* Modern tables. */ 
[hidden] { display: none; } /* Hidden elements stay hidden. */ 

/* ------------------------------------------------------------------------------------------------- */

a {
  text-decoration: none;
}

@font-face {
  font-family: ArchivoBlack;
  src: url(/fonts/Archivo_Black/ArchivoBlack-Regular.ttf);
}

@font-face {
  font-family: ArchivoNarrow;
  src: url(/fonts/Archivo_Narrow/ArchivoNarrow-VariableFont_wght.ttf);
}

@font-face {
  font-family: Sans;
  src: url(/fonts/Sans/SourceSans3-VariableFont_wght.ttf);
}

:root {
  --primary-color: rgba(149, 216, 233, 1);
  --secondary-color: rgba(255, 127, 80);
}

button, a {
  cursor: pointer;
}

html, body {
  height: 100%;
  margin: 0;
  background-color: black;
  color: var(--primary-color);
  font-family: ArchivoNarrow;
}

/* header */

.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
header {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  text-align: center;
  background-color: rgba(0, 0, 0, 1);
  z-index: 99;
  width: 100%
}
#header {
  display: flex;
  justify-content: space-evenly;
  align-items: end;
  width: 916px;
  margin: 0 auto;
}
.header-separator {
  border: 1px solid var(--secondary-color);
  width: 100%;
}
.header-item {
  font-size: 24px;
}
.header-item h2 {
  margin: 0;
}
@media (max-width: 920px) {
  header {
    padding-top: 20px;
  }
  #header {
    width: 80%;
  }
  .header-item {
    font-size: 20px;
  }
}
@media (max-width: 730px) {
  .header-item {
    font-size: 17px;
  }
}
@media (max-width: 670px) {
  #header {
    width: 95%;
  }
}
@media (max-width: 506px) {
  .header-item {
    font-size: 14px;
  }
}

header a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.orange {
  color: var(--secondary-color);
}

/* looper */

#looper {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translateY(0);
  overflow: clip;
}

.flex {
  display: flex;
}
#looper h1 {
  font-size: 103px;
  color: var(--primary-color);
  margin-left: 10px;
  text-shadow: 5px 5px 10px black;
}
#looper h2 {
  font-size: 40px;
  color: white;
  margin-top: -100px;
  text-align: center;
  text-shadow: 3px 3px 2px black;
}
@media (max-width: 840px) {
  #looper h1 {
    font-size: 80px;
  }
  #looper h2 {
    font-size: 24px;
    margin-top: -70px;
  }
}
@media (max-width: 720px) {
  #looper .logo {
    flex-direction: column;
    align-items: center;
  }
  .landing-logo {
    width: 120px;
  }
  #looper h1 {
    margin: 0;
    font-size: 70px;
  }
  #looper h2 {
    font-size: 24px;
    margin-top: -20px;
  }
}
@media (max-width: 560px) {
  #looper h1 {
    font-size: 60px;
  }
}
@media (max-width: 420px) {
  .landing-logo {
    width: 95px;
  }
  #looper h1 {
    font-size: 50px;
  }
  #looper h2 {
    margin-top: -10px;
  }
}
@media (max-width: 340px) {
  .landing-logo {
    width: 80px;
  }
  #looper h1 {
    font-size: 40px;
  }
  #looper h2 {
    font-size: 18px;
  }
}

.scroll-arrow {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#silent-disco-img {
  width: 100%;
  height: 100%;
  z-index: 1;
  min-width: 1300px;
  max-width: 2000px;
}
@media (max-width: 1299px) {
  #silent-disco-img {
    min-width: 0;
  }
}
@media (max-width: 840px) {
  #silent-disco-img {
    /* min-width: 0; */
    /* margin-left: -60px;
    margin-right: -60px; */
    scale: 1.65;
  }
}
.overlay {
  position: absolute;
  z-index: 2;
}

/* main */

main {
  width: 1121px;
  margin: 0 auto;
}
@media (max-width: 1144px) {
  main {
    width: 85%;
  }
}
@media (max-width: 835px) {
  main {
    width: 90%;
  }
}
@media (max-width: 672px) {
  main {
    width: 100%;
  }
}

.flex {
  display: flex;
}

.separator {
  border: 1px solid var(--secondary-color);
  width: 400px;
}
@media (max-width: 480px) {
  .separator {
    width: 95%;
  }
}

.long {
  width: 800px;
}

.small {
  width: 200px;
}

#down-arrow-img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.intersect-space {
  height: 300px;
}

/* pricing */

#pricing {
  text-align: center;
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

#pricing #packages {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 2px;
}
@media (max-width: 1029px) {
  #pricing #packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 672px) {
  #pricing #packages {
    grid-template-columns: 1fr;
    width: 380px;
    margin: 0 auto;
  }
}
@media (max-width: 424px) {
  #pricing #packages {
    /* grid-template-columns: 1fr; */
    width: 92%;
  }
}

.package {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  text-align: left;
  padding-bottom: 25px;
  background-color: #4B6172;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: inset 0 -3px 30px #95D8E9;
}

.package .package-inside {
  /* margin-left: 20px;
  margin-right: 20px; */
}
.package-separator {
  border: 1px dashed var(--secondary-color);
}

.selected {
  background-color: black;
  transform: translateY(-40px);
}
@media (max-width: 1029px) {
  .selected {
    transform: translateY(0px);
  }
}

.package .package-title {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
}

.package .package-title h2 {
  font-size: 25px;

}

.package .package-title img {
  width: 30px;
}

.package ul {
  margin-top: 0;
}

.package li {
  color: white;
}

.package-contains-item {
  gap: 10px;
}
.contains {
  margin-top: 0;
  margin-bottom: 0;
}

.select-package-button {
  background-color: var(--secondary-color);
  border-radius: 8px;
  border: none;
  width: 230px;
  height: 40px;
}
@media (max-width: 1138px) {
  .select-package-button {
    width: 200px;
  }
}
@media (max-width: 1029px) {
  .select-package-button {
    width: 100%;
  }
}


.price {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* events */

#events-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
}

.events-separator-top {
  margin-top: 80px;
}

#events {
  scroll-margin-top: 100px;
  scroll-margin-top: 100px;
  margin-bottom: 40px;
  margin-bottom: 40px;
}

#events h2 {
  font-size: 24px;
  display: inline-block;
  text-align: center;
}

#events .title-img {
  width: 40px;
}

#events #gallery {
  border-radius: 14px;
  border: 1px solid var(--secondary-color);
  padding: 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: center;
}
@media (max-width: 672px) {
  #events #gallery {
    grid-template-columns: 1fr;
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (max-width: 480px) {
  #events #gallery {
    margin-left: 20px;
    margin-right: 20px;
  }
}

#events #gallery #main-image {
}
#events #gallery #other-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-other-image {

}

/* how it works */

#how-it-works {
  scroll-margin-top: 100px;
  display: flex;
  margin-top: 60px;
  margin-bottom: 40px;
  justify-content: space-evenly;
  gap: 10px;
}
@media (max-width: 480px) {
  #how-it-works {
    display: grid;
    gap: 20px;
  }
}

#how-it-works-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#how-it-works-title h2 {
  font-size: 26px;
}
@media (max-width: 1144px) {
  #how-it-works-title {
    min-width: 150px;
  }
  #how-it-works-title h2 {
  }
}

#how-it-works-title img {
  width: 120px;
}

#how-it-works #explanations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background-color: black;
}

.explanation-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  border: 1px solid var(--secondary-color);
  width: 280px;
  height: 280px;
  padding: 20px;
  font-weight: bold;
}

.explanation-item-title {
  color: #4B6172;
  font-size: 130px;
  margin: 0;
}

.explanation-item-text {
  color: white;
  font-size: 24px;
  margin: 0;
}
@media (max-width: 940px) {
  .explanation-item {
    width: 200px;
    height: 200px;
    padding-top: 10px;
  }
  .explanation-item-title {
    font-size: 100px;
    margin-top: -22px;
  }
  .explanation-item-text {
    font-size: 20px;
  }
}
@media (max-width: 672px) {
  #how-it-works #explanations {
    grid-template-columns: 1fr;
  }
}

/* contact */

#contact {
  scroll-margin-top: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
}

#contact #contact-container {
  display: flex;
  gap: 20px;
}
#jakob-miha {
  flex: 1; 
  display: flex;
  border: 1px solid var(--secondary-color);
  border-radius: 16px;
}
#jakob-miha video {

}
@media (max-width: 800px) {
  #contact #contact-container {
    flex-direction: column;
  }
  #jakob-miha {
    display: flex;
  }

  #contact-form-container {
    padding-bottom: 30px;
  }
}
@media (max-width: 672px) {
  #contact #contact-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

#jakob-miha img {
  height: 350px;
  width: 556px;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 800px) {
  #jakob-miha img {
    height: 100%;
    aspect-ratio: 1 / 1;
  }
}

#contact-form-container {
  padding-left: 30px;
  padding-right: 30px;
  background-color: #263139;
  border: 1px solid var(--secondary-color);
  border-radius: 16px;
  flex: 1;
}

#contact-form-container input {
  display: block;
  background-color: #263139;
  border: 1px solid white;
  height: 26px;
  border-radius: 8px;;
  color: white;
  padding: 7px;
}

#contact-form-container textarea {
  background-color: #263139;
  border: 1px solid white;
  border-radius: 8px;
  color: white;
  padding: 7px;
}

#contact-form-container select {
  display: block;
  background-color: #263139;
  border: 1px solid white;
  height: 40px;
  border-radius: 8px;;
  color: white;
}

#contact-us-form {
  display: flex;
  flex-direction: column;
}

#contact-us-form button {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  border: none;
  height: 40px;
  margin-top: 10px;
  border-radius: 4px;
}

#contact-us-form select {
  font-weight: bolder;
}

.contact-us-title {
  font-size: 26px;
  margin-top: 40px;
}

#call-us {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  margin-bottom: 30px;
}

.call-view {
  display: flex;
  gap: 14px;
  font-size: 20px;
}
@media (max-width: 400px) {
  .call-view {
    gap: 8px;
    font-size: 16px;
  }
}

.call-view p {
  margin: 0;
}

.call-view img {
  width: 30px;
}

.call-view a {
  color: var(--secondary-color);
  text-decoration: none;
  cursor: pointer;
}

#contact-us-target {
  height: 22px;
}

/* misc */

.main-title-view {
  background-image: url(../images/textbg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 400px;
  text-align: center;
  justify-content: center;
}

.main-title-view h1 {
  color: rgb(15, 32, 39);
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 0;
}

.main-title-view h4 {
  color: rgb(15, 32, 39);
  margin-top: 0;
  margin-bottom: 60px;
}
@media (max-width: 1029px) {
  .main-title-view {
    height: 300px;
    background-size: cover;
  }
  
  .main-title-view h1 {
    font-size: 70px;
  }
  
  .main-title-view h4 {
  }
}
@media (max-width: 719px) {
  .main-title-view {
    height: 280px;
  }
}
@media (max-width: 540px) {
  .main-title-view {
    height: 270px;
  }
  
  .main-title-view h1 {
    font-size: 55px;
  }
}
@media (max-width: 390px) {
  .main-title-view {
    height: 200px;
  }
  
  .main-title-view h1 {
    font-size: 40px;
    margin-top: 20px;
  }
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}
@media (max-width: 800px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}

/* footer */

footer {
  background-color: rgba(0, 0, 0, 0.5);
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

footer #footer-top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 938px) {
  footer #footer-top {
    justify-content: center;
  }
}

#footer-logo {
  display: flex;
  gap: 10px;
  font-size: 28px;
  align-items: center;
}

#footer-logo img {
  width: 40px;
  /* height: 45px; */
}

#footer-logo h2 {
  margin: 0;
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 1213px) {
  #footer-logo {
  }
  
  #footer-logo img {
    width: 30px;
  }
  
  #footer-logo h2 {
    font-size: 24px;
  }
}

#footer-menu {
  display: flex;
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 30px;
  text-align: center;
  align-items: center;
  font-size: 18px;
  color: #3CB3BA;
  font-weight: 300;
}
@media (max-width: 1213px) {
  #footer-menu {
    font-size: 16px;
  }
}
@media (max-width: 938px) {
  #footer-menu {
    display: none;
  }
}

#footer-menu .transparent {
  opacity: 0.5;
}
#footer-menu a {
  text-decoration: none;
  color: #3CB3BA;
}

footer #footer-bottom {
  display: flex;
  justify-content: end;
}
@media (max-width: 938px) {
  footer #footer-bottom {
    justify-content: center;
    margin-bottom: 20px;
  }
}

footer hr {
  border: 1px solid var(--secondary-color);
  width: 100%;
  margin-top: 20px;
}

footer #footer-email {
  display: flex;
  gap: 10px;
}

#footer-email a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* animations */

.smooth {
  transition: all 1s ease-in;
}
.fade-in-05s.htmx-added {
  opacity: 0;
}
.fade-in-05s {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

@keyframes fadeInOpacity {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.qr-container {
  position: relative; /* equivalent to `relative` */
  display: flex; /* equivalent to `flex` */
  flex-direction: column; /* equivalent to `flex-col` */
  align-items: center; /* equivalent to `items-center` */
  justify-content: center; /* equivalent to `justify-center` */
  text-align: center; /* equivalent to `text-center` */
  margin-bottom: 1.5rem; /* equivalent to `mb-6` (assuming 1rem = 16px, so 1.5rem = 24px) */
  color: #1C1B1F;
}

.qr-inner-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 320px;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  margin-top: 2.5rem;
}

.qr-landing-img {
  width: 556px; /* equivalent to `w-[556px]` */
  height: 536px; /* equivalent to `h-[536px]` */
  object-fit: none; /* equivalent to `object-none` */
  display: block; /* equivalent to `block` */
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

.qr-landing-title {
  display: flex; /* equivalent to `flex` */
  align-items: center; /* equivalent to `items-center` */
  justify-content: center; /* equivalent to `justify-center` */
  font-family: 'Outfit', sans-serif;
  font-size: 3rem; /* equivalent to `text-5xl` (default Tailwind: 3rem or 48px) */
  color: var(--title-color); /* equivalent to `text-title` (assumes `--title-color` is defined in your CSS variables) */
  font-weight: 500; /* equivalent to `font-bold` */
  margin-top: -30px; /* equivalent to `-my-30` (Tailwind: 30   = 120px, negative = -120px) */
  margin-bottom: -30px; /* equivalent to `-my-30` (Tailwind: 30   = 120px, negative = -120px) */
  padding-bottom: 40px;
}

.qr-landing-description {
  font-size: 1.2rem;
  margin: 0;
}

.qr-text-red-size {
  font-size: 2rem;
  margin: 0;
}

.qr-text-custom-red {
  color: #C70039; /* Custom red color */
}

.qr-calendy-text-description {
  margin-top: 16px;
  margin-bottom: 0px;
}

.qr-social-containter {
  display: flex; /* equivalent to `flex` */
  justify-content: center; /* equivalent to `justify-center` */
  gap: 1.5rem; /* equivalent to `space-x-6` (Tailwind: 6 = 1.5rem or 24px) */
  margin-top: 20px; /* equivalent to `my-3` (Tailwind: 3 = 0.75rem or 12px) */
  margin-bottom: 20px; /* equivalent to `my-3` */
}

.qr-form {
  display: flex;
  flex-direction: column;
}

.qr-form-input {
  padding-top: 0.5rem; /* equivalent to `py-2` (Tailwind: 2 = 0.5rem or 8px) */
  padding-bottom: 0.5rem; /* equivalent to `py-2` */
  margin-top: 0.75rem; /* equivalent to `my-3` (Tailwind: 3 = 0.75rem or 12px) */
  margin-bottom: 0.75rem; /* equivalent to `my-3` */
  border: 2px solid #D9D9D9;
  border-radius: 0.375rem;
  padding-left: 1.25rem; /* px-5 (horizontal padding) */
  padding-right: 1.25rem; /* px-5 (horizontal padding) */
  margin-left: 0.25rem; /* mx-1 (horizontal margin) */
  margin-right: 0.25rem; /* mx-1 (horizontal margin) */
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-form-input:focus {
  border: 2px solid;
  border-color: #007BFF; /* Optional: change border color on focus */
}

.qr-button {
  display: block;
  width: 300px; /* Equivalent to `w-[300px]` */
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  background-color: #95D8E9; /* icy blue color */
  color: white;
  font-weight: bold;
  min-width: 15rem;
  cursor: pointer;
  border-radius: 0.375rem;
  margin-left: auto; /* Centers the element horizontally */
  margin-right: auto; /* Centers the element horizontally */
  border: none;
}

.qr-button-sent {
  display: block;
  width: 300px; /* Equivalent to `w-[300px]` */
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  background-color: #000000; /* icy blue color */
  color: #C70039;
  font-weight: bold;
  min-width: 15rem;
  cursor: not-allowed;
  border-radius: 0.375rem;
  margin-left: auto; /* Centers the element horizontally */
  margin-right: auto; /* Centers the element horizontally */
  border: none;
}

.qr-button:hover {
  background-color: #39A7C2; /* main color on hover */
}

.qr-horizontal-line {
  width: 100%; /* Full width of the parent container */
  height: 2px; /* Thickness of the line */
  background-color: #C70039; /* Color of the line */
  margin: 20px 0; /* Optional: add space above and below the line */
}