/* Reset and Fonts */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
  
/* Consolidate custom font imports if possible */
@import url("https://use.typekit.net/fyg5waf.css");

@font-face {
  font-family: 'Inter', sans-serif; /* Corrected the font-family */
  font-weight: 500;
  font-style: normal;
}

/* Global Styles */
:root {
  --dark-gray: rgb(90, 90, 90);
  --light-gray: rgb(148, 148, 148);
  --focus-blue: rgb(69, 159, 189);
  --white: #ffffff;
}

.screen a {
  display: contents;
  text-decoration: none;
}

/* Modal Styles */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content button {
  /* Consolidated font-size */
  font-size: xx-large;
  padding: 3em;
  text-align: center;
  font-family: 'Inter', sans-serif; /* Corrected the font-family */
  font-weight: 500;
  font-style: normal; /* Changed from 'bold' to 'normal' */
  border-radius: 1em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  min-width: 80vh;
  min-height: 80vh;
  vertical-align: middle;
  background-color: yellow;
  color: blue;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Starfield Styles */
.starfield {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0px;
  left: 0;
}

/* General Styles */
input:focus {
  outline: none;
}

.googinput {
  background-color: #dcdcdc;
}

.hidden,
.hidden * {
  pointer-events: none;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

/* Label and Logos */
.label {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 3.47vw;
  max-width: 70vw;
  position: relative;
}

.logos {
  max-width: 60%;
  position: relative;
  width: 100vw;
}

/* Input and Container Styles */
.input_text {
  align-items: center;
  align-self: stretch;
  border-radius: 0.93vw;
  display: flex;
  max-width: 57.87vw;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.input-with-label {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.35vw;
  position: relative;
  width: 57.87vw;
}


.input-data:hover {

  transform: scale(1.1);
}

.input {
  align-items: center;
  align-self: stretch;
  background-color: var(--white);
  border: 0.06vw solid var(--dark-gray);
  border-radius: 0.46vw;
  box-shadow: 0.0vw 0.06vw 0.12vw #1018280d;
  display: flex;
  flex: 0 0 auto;
  gap: 0.46vw;
  padding: 1.39vw;
  position: relative;
  width: 100%;
}

/* Responsive Text Styles */
.responsive-text {
  font-size: calc(12px + (36 - 12) * ((100vw - 300px) / (1600 - 300)));
  text-align: center;
}

@media (min-width: 576px) {
  .responsive-text {
    font-size: calc(12px + (24 - 12) * ((100vw - 576px) / (1600 - 576)));
  }
}

@media (min-width: 768px) {
  .responsive-text {
    font-size: calc(14px + (28 - 14) * ((100vw - 768px) / (1600 - 768)));
  }
}

@media (min-width: 992px) {
  .responsive-text {
    font-size: calc(16px + (32 - 16) * ((100vw - 992px) / (1600 - 992)));
  }
}

@media (min-width: 1200px) {
  .responsive-text {
    font-size: calc(18px + (36 - 18) * ((100vw - 1200px) / (1600 - 1200)));
  }
}

/* Stroked Text */
.stroked {
  text-shadow: 
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

/* Container Styles */
.container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
}

.card-top {
  grid-column: span 3;
}

.card-bottom {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .card-top, .card-bottom {
    grid-column: span 6;
  }
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Project Liftoff Desktop Styles */
.project-liftoff-desktop {
  align-items: center;
  background-image: url(/img/bg.svg);
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 0.58vw;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.project-liftoff-desktop .content {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  gap: 2.5vw;
  padding-top: 2vw;
  padding-left: 4vw;
  padding-right: 4vw;
  padding-bottom: 4vw;
  position: relative;
  width: 100%;
}

/* Styleguide Styles */
/* These styles should be checked and updated as needed */
.text-mdregular {
  font-family: var(--font-family-inter);
  font-size: var(--font-size-s);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.billboard {
  margin-top:-2rem;
  margin-bottom:2rem;
}
/* Add other .newfrank styles as needed */
