@font-face {
  font-family: "FunnelDisplay-ExtraBold";
  src: url("./FunnelDisplay-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lexend-Medium";
  src: url("./Lexend-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lexend-Medium", sans-serif;
  overflow-x: hidden;
  background: linear-gradient(to right, #eaeeff, #eaeeff);
}

/* Video Background */
.video-background {
  /** Fixed video background**/
  /* position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  object-fit: contain;
  z-index: -1;
  background-color: #eaeeff; */

  /** Stretched video background**/
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
  background-color: #eaeeff;
}

.content-container {
  margin-top: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-card-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.orb-placeholder {
  width: 4px;
  height: 4px;
}

.demo-card {
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 1rem;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
}

.demo-card:hover {
  cursor: pointer;
}

.header-subtitle {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.bold {
  font-weight: 700;
}

.header {
  text-transform: uppercase;
  font-size: 2.1rem !important;
  font-family: "FunnelDisplay-ExtraBold", sans-serif;
  font-weight: 100;
}

.header-container {
  padding: 1rem 2rem;
}

.footer-container {
  padding: 1.75rem;
  background-color: #5a17ee;
  color: #ffffff;
  width: 100%;
}

/* Overlay Content */
.content {
  position: relative;
  z-index: 1;
  /* Places content above video */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  /* Full viewport height */
  text-align: center;
  /* background: rgba(0, 0, 0, 0.5); */
  /* Semi-transparent overlay for readability */
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.content button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #ff6200;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.content button:hover {
  background: #e55a00;
}

.video-orb-container {
  margin-left: auto;
  margin-right: auto;
}

.video-orb {
  width: 75px;
}

/* @media (min-width: 768px) {
  .demo-card {
    width: 350px;
  }

  .video-orb {
    width: 95px;
  }

  .demo-card-container {
    gap: 5rem;
  }
} */

@media (min-width: 768px) {
  .demo-card {
    width: 415px;
  }

  .video-orb {
    width: 150px;
  }

  .demo-card-container {
    gap: 7rem;
  }

  .header-subtitle {
    margin-bottom: 5rem;
  }
}
