/* Reset some default styles */
*{
  box-sizing: border-box;
  margin: 0;
    padding: 0;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    font-family: "SUSE", system-ui;
    box-sizing: border-box;
    overflow: hidden;
}
p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2em;
}
/* Ensure the sections take up the full viewport height */
.section {
    height: 100vh; /* Full viewport height */
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: white; /* Text color for better visibility */
    font-size: 2em;
    text-align: center;
}
.flip-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    perspective: 1000px; /* Add perspective for 3D effect */
    cursor: pointer;
}

.flip-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d; /* Enable 3D transformations */
}

.flip-container:hover .flip-inner {
    transform: rotateY(180deg); /* Rotate on hover to show the back */
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide the back face when facing away */
}

.flip-front {
    background: rgba(0, 0, 0, 0.1); /* Front background style */
    color: white; /* Text color for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    text-align: center;
}

.flip-back {
    background: inherit; /* Back background style */
    color: black; /* Text color for readability */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    text-align: center;
    transform: rotateY(180deg); /* Initially hide the back side */
    color: #fff;
    font-weight: 800;
}


/* Background images or colors */
#section1 {
    background: #c8c7ff;
    background-size: cover;
}
.flip-back:nth-child(2) {
  background: #c8c7ff;
}
.flip-back:nth-child(3) {
  background: #ffd4c7;
}
#section2 {
    background: #feffc7;
    background-size: cover;
}

#section3 {
    background: #ffd4c7;
    background-size: cover;
}

/* Optional: Style the content inside each section */
.content {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
    padding: 20px;
    border-radius: 10px;
}
/* Style for the interactive particles */
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none; /* Ensure particles don’t interfere with other elements */
    transform: translate(-50%, -50%);
}

.phone {
    width: 320px;
    height: 600px;
    border: 16px solid #333;
    border-radius: 36px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.phone::before {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    position: absolute;
    top: 15px;
    left: calc(50% - 30px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.waitlist {
  height: 70vh;
  width: 80vw;
  border: 7px solid #111;
  background: white; /* Initial background color */
  position: fixed;
  top: 15vh;
  left: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease; /* Smooth transition when changing background */
}

.waitlist.loading {
  background: url(wavy.jpg);
}

.waitlist form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
}
form details {
  width: 100%;
  margin-top: 2em;
  cursor: pointer;
}
.inputs {
  display: flex;
  gap: 1em;
  width: 100%;
}
.inputs input {
  height: 3em;
  width: 100%;
  border: 5px solid #111;
  padding: 0 .7em;
}

form button {
  height: 3em;
  width: 10em;
  background: #000;
  color: #fff;
  border: none;
  align-self: end;
  font-weight: bolder;
}

.socials {
  display: flex;
  margin-top: 1em;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.socials a i {
  color: #000;
  font-size: 1.5em;
}

/* Hide default marker */
details summary {
    list-style: none !important;
}

/* Add custom marker */
details summary {
    position: relative;
    cursor: pointer;
    padding-left: 20px; /* Adjust based on your marker size */
}

details summary::before {
    content: '▼'; /* Custom marker symbol, e.g., ▶, ▼, +, etc. */
    position: absolute;
    left: 0;
    font-size: 16px; /* Size of the marker */
    transition: transform 0.3s ease;
}

details[open] summary::before {
    content: '▼'; /* Change marker when open */
    transform: rotate(180deg); /* Rotate marker if desired */
}

.tnc {
  color: dodgerblue;
  text-decoration: none;
  text-align: center;
  display: block;
  margin-top: .4em;
}
p#message {
    font-weight: 700;
    text-align: center;
}
::selection {
  background: #101010;
  color: aliceblue;
}

@media (max-width: 48em) {
  body {
    display: block;
  }
  .flip-container {
    display: none;
  }
  .waitlist {
    position: relative !important;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    border: none;
  }
  .waitlist form {
    width: 90%;
  }
}

@media (max-width: 40em) {
  .inputs {
    flex-direction: column;
  }
  .inputs input {
    height: 3.4em;
  }
}