:root {
  --ash-blue: #5e91b0;
  --text-dark: #2e343b;
  --dark-ash: #335671;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #000;
  /* flex layout to align the card to the left */
  display: flex;
  align-items: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-container {
  position: relative;
  z-index: 1;
  margin-left: 178px;
  width: 727px;
  height: 879px;
  background: rgba(252, 244, 239, 0.4);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border-radius: 363.5px 363.5px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 89px;
  box-sizing: border-box;
}

.logo {
  width: 193px;
  height: 259px;
  margin-bottom: 48px;
}

.coming-soon {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ash-blue);
  margin: 0 0 33px 0;
  line-height: normal;
  text-align: center;
}

.description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 37px;
  margin: 0 0 118px 0;
  max-width: 622px;
  text-align: center;
}

.description p {
  margin: 0;
}

.follow {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-ash);
  margin: 0 0 15px 0;
  line-height: 37px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 0 0 10px 0;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

.social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.email {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
  line-height: 37px;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .card-container {
    margin-left: 5vw; /* reduce left margin on tablets */
  }
}

@media (max-width: 768px) {
  body {
    justify-content: center; /* Center the card horizontally on small screens */
  }

  .video-bg {
    width: 100vh;
    height: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    object-fit: cover;
  }

  .card-container {
    margin-left: 0;
    width: 90vw;
    max-width: 500px;
    height: auto;
    padding: 60px 20px 40px;
    /* Adjust border radius so top maintains a nice curved dome, but scalable */
    border-radius: 45vw 45vw 30px 30px; 
  }

  .logo {
    width: 140px;
    height: auto;
    margin-bottom: 30px;
  }

  .coming-soon {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .description {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 60px;
    max-width: 100%;
  }

  .follow {
    font-size: 16px;
  }
  
  .email {
    font-size: 16px;
  }
}
