@font-face {
  font-family: 'Ubuntu';
  src: url('/fonts/Ubuntu.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0066;
}

@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/Quicksand.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0069, U+006E, U+0064, U+006C, U+0065;
}

@font-face {
  font-family: 'Trykker';
  src: url('/fonts/Trykker.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  unicode-range: U+002E;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 150%;
}

body {
  background-color: black;
}

#splash-screen {
  height: 100vh;
  width: 100%;
  background-color: #000000;
  background-size: 100% auto; /* 100% height, width scales accordingly */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo {
  font-size: 4rem;
  color: white;
  display: flex;
  gap: 0; /* Or remove the line entirely */
  letter-spacing: normal; /* Just to be explicit */
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.logo span {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo span.visible {
  opacity: 1;
  transform: translateY(0);
}

#tagline {
  margin-top: 1rem;
  color: white;
  font-size: 1.2rem;
  font-family: 'Roboto';
  opacity: 0;
  transition: opacity 0.6s ease;
}

#tagline.visible {
  opacity: 1;
}

#main-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease; /* Delay visibility change */
}

#main-content.visible {
  opacity: 1;
}

main {
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #000000;
  color: #333;
  
  transition: background-color 0.5s ease;
}

.ping-wrapper {
  position: relative;
  width: 500px;  /* keep your desired width */
  margin: 500px auto 50px auto; /* top, horizontal auto-centers, bottom */
}

h1 {
  text-align: center;
  width: 100%;
  display: block;
  margin: auto;
  color: white;
  font-family: 'Roboto', sans-serif;
  position: relative;
  z-index: 2;
}

.ripple-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 16px;
  opacity: 0.15;
  filter: blur(20px);
  animation: ripple-box 3s infinite ease-out;
  z-index: 1;
  pointer-events: none;
}

.ripple-box:nth-child(1) {
  animation-delay: 0s;
}

.ripple-box:nth-child(2) {
  animation-delay: 1s;
}

.ripple-box:nth-child(3) {
  animation-delay: 2s;
}

@keyframes ripple-box {
  0% {
    transform: scale(1);
    opacity: 0.2;
    filter: blur(20px);
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
    filter: blur(40px);
  }
}

#spimage {
  display: block;
  margin: auto;
  margin-bottom: 350px;
  width: 30%;
  transition: transform 0.3s ease-out;
  z-index: 1;
  position: relative;
  top: 200px;
}

.no-select {
  -webkit-user-select: none; /* Safari / iOS */
  -webkit-touch-callout: none; /* iOS long-press menu */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Section container */
.tracking-section {
  margin-top: 350px;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: #000000;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23ffffff" width="20px" height="20px" viewBox="0 0 10.04 10.04"><circle cx="5.02" cy="5.02" r="4.52"/></svg>') 10 10, auto;
}

/* Main layout wrapper */
.content-wrapper {
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.image-wrapper img {
  max-width: 420px;
  width: 100%;
  display: block;
}

/* Text container */
.text-wrapper {
  max-width: 420px;
}

.text-wrapper p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
}

/* First line bold */
.text-wrapper .headline {
  font-size: 22px;
  font-weight: 700;
}

#basics {
  opacity: 1;
  width: 60%;
  display: block;
  margin: auto;
  margin-top: 70px;
}

#creator {
  color: white;
  font-family: 'Roboto';
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
  transition: color 1.5s ease;
}

#creator:hover {
  color: #000000;
  cursor: pointer;
}

/* animation definition */
@keyframes pulseColor {
  0%   { color: white; }
  50%  { color: black; }
  100% { color: white; }
}

/* animation only runs when this class is added */
#creator.animate {
  animation: pulseColor 4s ease-in-out infinite;
}

.container {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  text-align: center;
}

#mockup2 {
  width: 48%;
  transition: width 0.5s ease;
  display: block;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 300px;
}

#mockup2.full-visible {
  width: 50%;
}

/* Desktop / default */
#arcontain {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  width: 100%;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23ffffff" width="20px" height="20px" viewBox="0 0 10.04 10.04"><circle cx="5.02" cy="5.02" r="4.52"/></svg>') 10 10, auto;
}

#side img.full-visible {
  opacity: 1;
}

.side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side img {
  width: 60%;
}

#mockupx1, #mockupx2, #theftprob, #theftsolve {
  opacity: 0;
  transition: opacity 1s ease-out, visibility 0s linear 0.5s; /* Delay visibility change */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23ffffff" width="20px" height="20px" viewBox="0 0 10.04 10.04"><circle cx="5.02" cy="5.02" r="4.52"/></svg>') 10 10, auto;
}

#theftprob {
  width: 60%;
}

#theftsolve {
  width: 60%;
}

#theftprob.full-visible, #theftsolve.full-visible {
  opacity: 1;
}

#mockupx2.full-visible {
  opacity: 1;
}


#mockupx1.full-visible {
  opacity: 0.7;
}

.divider {
  width: 2px;
  height: 600px;
  background-color: #ccc;
}

.in_logo {
  width: 30px;
  display: block;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 70px;
}

.controls {
  margin-bottom: 15px;
}

.controls button {
  margin: 5px;
  padding: 10px 20px;
  background: #ffffff;
  transition: background-color 0.5s ease;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

#viewer {
  display: block;
  margin: auto;
  width: 320px;
  height: 350px;
  background-color: #000000;
  border-radius: 0px;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23ffffff" width="20px" height="20px" viewBox="0 0 10.04 10.04"><circle cx="5.02" cy="5.02" r="4.52"/></svg>') 10 10, auto;
}

.color-picker {
  padding-left: 8px 12px;
  margin-bottom: 50px;
}

.color-picker select {
  padding: 8px;
  font-size: 14px;
  background-color: #000000;
  color: #858585;
  cursor: pointer;
  padding: 8px 12px;
  border: 1.5px solid #858585;
  border-radius: 5px;
  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

}

.color-picker select:hover {
  background-color: #000000;
  transition: background-color 0.3s ease 0.1s;
  color: #c2c2c2;
  border-color: #c2c2c2;
}

.preorder-section {
  margin-top: 100px;
}

.newsletter {
  margin-top: 20px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  font-size: 14px;
  width: 250px;
  max-width: 90%;
  color: white;
  background-color: #000000;
  border: 1.5px solid #858585;
  border-radius: 4px;
  outline: none;
}

.newsletter input:focus {
  border: 1.5px solid #c2c2c2;
  background-color: #000000;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #ffffff;
  transition: background-color 0.5s ease;
  color: rgb(0, 0, 0);
  border: none;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #ffc783;
  transition: background-color 0.3s ease 0.1s;
}

.hidden {
  display: none;
}


.info-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start; /* Not vertically centered */
  width: 100%;
  padding: 20px;
  font-family: 'Roboto';
  text-align: center;
  color: white;
  z-index: 1;
}

#ff-text {
  text-align: center; width: 50%; display: block; margin: auto; font-size: 125%; color: #c2c2c2;  margin-bottom: 100px; font-family: 'Roboto';
}

#ar-text {
  line-height: 35px;
  text-align: center; width: 50%; display: block; margin: auto; font-size: 120%; color: #c2c2c2;  margin-top: 50px; margin-bottom: 200px; font-family: 'Roboto';
}

.text-block {
  flex: 1;
  padding: 10px;
}

.headline {
  font-size: 30px;
  font-weight: bold;
}

.subtext {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.8;
}

#block2, #block3 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

#block2.visible, #block3.visible {
  opacity: 1;
}


#mode-text {
  text-align: center; width: 45%; display: block; margin: auto; font-size: 110%; color: #c2c2c2;  margin-bottom: 20px; font-family: 'Roboto'; line-height: 28px;
}

#gest-text {
  text-align: center; width: 45%; display: block; margin: auto; font-size: 110%; color: #c2c2c2;  margin-bottom: 100px; font-family: 'Roboto'; line-height: 28px;
}

.basic-headline {
  text-align: center; width: 500px; display: block; margin: auto; color: white; margin-bottom: 50px; margin-top: 500px; font-family: 'Roboto';
}

#ar-head {
  margin-top: 300px;
  display: block;
}

#ar-head2 {
  margin-top: 300px;
  display: none;
}

@media (max-device-width: 1300px) {

}

@media (max-device-width: 1400px) {

  .side img {
    max-width: 75%;
  }
}

@media (max-device-width: 950px) {
  #mockupx1 {
    width: 60%;
  }

  #mockupx2 {
    width: 60%;
  }

  #charge-text {
    font-size: 20px;
  }

  #design-text {
    font-size: 20px;
  }

  #privacy-text {
    font-size: 20px;
  }



  .content-wrapper {
    flex-direction: column;
    align-items: center;     /* ✅ still centered */
    gap: 40px;
    max-width: 420px;        /* ✅ centered column block */
  }

  #theftprob {
    content: url('resources/theft_prob_mobile.webp');
    width: 55%;
  }

  #theftsolve {
    content: url('resources/theft_solve_mobile.png');
    width: 55%;
  }

  .text-wrapper {
    width: 100%;
  }

  .container-ar {
    flex-direction: column;
    height: auto;
  }

  #spimage {
    top: 100px;
    width: 50%;
  }

  .divider {
    display: none; /* remove the vertical line */
  }

  .side {
    width: 100%;
    padding: 1rem 0;
  }

  .side img {
    margin-bottom: 150px;
  }

  .controls button {
    padding: 8px 12px;
    font-size: 14px;
  }

  #preorderBtn {
    padding: 10px 20px;
  }

  #mockup2 {
    width: 56%;
    transition: width 0.5s ease;
    display: block;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 300px;
  }

  #mockup2.full-visible {
    width: 60%;
  }

  .headline {
    font-size: 20px;
  }

  #spimage {
    width: 50%;
    margin-top: 130px;
  }


}

@media (max-width: 750px) {
  #mockupx1 {
    width: 80%;
  }

  #mockupx2 {
    width: 80%;
  }
  
  #theftprob {
    width: 80%;
  }

  #theftsolve {
    width: 80%;
  }


  .color-change-text {
    font-size: 18px;
  }

  .side img {
    margin-bottom: 150px;
    max-width: 95%;
  }

  #mockup2 {
    width: 61%;
    transition: width 0.5s ease;
    display: block;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 300px;
  }

  #mockup2.full-visible {
    width: 70%;
  }

  #ff {
    width: 100%;
    margin-left: 0px;
  }


}

@media (max-width: 600px) {
  #splash-screen {
    background: none;
  }
  
  .headline {
    font-size: 25px;
  }

  #ar-head {
    display: none;
  }

  #ar-head2 {
    display: block;
  }

  #mode-text {
    font-size: 90%;
    width: 85%;
  }

  .basic-headline {
    font-size: 25px;
    width: 60%;
  }

  #ff-text {
    width: 70%;
    font-size: 15px;
  }

  #ar-text {
    font-size: 15px;
    width: 70%;
  }

  .subtext {
    font-size: 15px;
  }

}

@media (max-width: 496px) {

  .subtext {
    font-size: 13px;
  }

  #mockup2 {
    width: 70%;
    transition: width 0.5s ease;
    display: block;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 300px;
  }

  #mockup2.full-visible {
    width: 90%;
  }




  #spimage {
    margin-bottom: 200px;
  }

}
