body {
  margin: 0;
  padding: 0;
  background: black;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

a {
  text-decoration: none;
}
/* hover effects -----------------------*/
.card.interactive-3:hover .title {
  transform: rotate(-90deg) !important;
  margin-left: -112px;
  margin-top: 125px;
}
.card.interactive-2:hover .title {
  transform: rotate(-90deg) !important;
  margin-left: -146px;
  margin-top: 108px;
  font-size: 14px;
}
.card.interactive:hover .title {
  transform: rotate(-90deg) !important;
  margin-left: -156px;
  margin-top: 113px;
  font-size: 14px;
}
.card-row {
  display: flex;
  gap: 40px;
}
.card-container {
  perspective: 1000px;
  position: relative;
  z-index: 1;
}

.card {
  width: 500px;
  height: 300px;
  position: relative;
  transition: all 0.5s ease;
  transform-origin: center;
  overflow: visible;
  z-index: 1;
}

.title {
  font-family: var(
    --framer-blockquote-font-family,
    var(--framer-font-family, Inter, Inter Placeholder, sans-serif)
  );
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: transform 0.5s ease;
  color: lightgray;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: lightgray;
}

/*buttons-----------------------*/
.button:hover {
  background-color: #ff4081 !important;
  color: black !important;
}
.button {
  position: absolute;
  right: -55px;
  margin-top: -41px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  background-color: lightgray;
  color: black;
  font-family: "Roboto Mono", monospace;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 6px;
}
#button-one {
  position: absolute;
  right: -72px;
  margin-top: -41px;
  top: 59%;
  transform: translateY(-50%) rotate(-45deg);

  background-color: lightgray;
  color: black;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
#button-two {
  position: absolute;
  right: -72px;
  margin-top: -41px;
  top: 59%;
  transform: translateY(-50%) rotate(-45deg);

  background-color: lightgray;
  color: black;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
#button-three {
  position: absolute;
  right: -72px;
  margin-top: -41px;
  top: 59%;
  transform: translateY(-50%) rotate(-45deg);

  background-color: lightgray;
  color: black;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
/*cards-----------------------*/

.card.interactive:hover {
  width: 250px;
  height: 250px;
  transform: rotate(45deg);
  margin-right: 68px;
  /* border: 1px solid white; */
  border-radius: 10px;
  box-shadow: 0px 0px 15px white;
}

.card.interactive:hover .title {
  transform: rotate(-45deg);
}

.card.interactive:hover .center-text,
.card.interactive:hover .button {
  opacity: 1;
}

.card.interactive-2:hover {
  width: 250px;
  height: 250px;
  transform: rotate(45deg);
  margin-left: 30px;
  margin-right: 27px;
  box-shadow: 0px 0px 15px white;
  border-radius: 10px;
}

.card.interactive-2:hover .title {
  transform: rotate(-45deg);
}

.card.interactive-2:hover .center-text,
.card.interactive-2:hover .button {
  opacity: 1;
}

.card.interactive-3:hover {
  width: 250px;
  height: 250px;
  transform: rotate(45deg);
  margin-left: 39px;
  margin-right: 27px;
  box-shadow: 0px 0px 15px white;
  border-radius: 10px;
}

.card.interactive-3:hover .title {
  transform: rotate(-45deg);
}

.card.interactive-3:hover .center-text,
.card.interactive-3:hover .button {
  opacity: 1;
}
.card.normal {
  background-color: #eee;

  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* POPUP STYLE -----------------------*/
.popup {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  height: 100px;
  width: 200px;
}

.popup.show {
  display: flex;
}

/* Optional: Adjust popup placement for each card */
#popup1.show {
  /* overlays card 2 -----------------------*/
  display: flex;
  height: 43vh;
  width: 56%;
  margin-top: -82px;
  margin-left: 21.3rem;
  border-radius: 10px;
}
img#popup-image-one {
  width: 100%;
  height: -webkit-fill-available;
  border-radius: 10px;
}
#popup2.show {
  display: flex;
  height: 39vh;
  width: 38%;
  left: 59.5%;
  border-radius: 10px;
  margin-top: -73px;
}
img#popup-image-two {
  width: 100%;
  border-radius: 10px;
  height: -webkit-fill-available;
}
#popup3.show {
  /* overlays itself -----------------------*/
  height: 40vh;
  width: 54.5%;
  margin-top: -67px;
  border-radius: 10px;
}
img#popup-image-three {
  width: -webkit-fill-available;
  border-radius: 10px;
  height: -webkit-fill-available;
}
/*hiding image in square-----------------------*/

.card-container:hover #popup-image-one {
  visibility: hidden;
}

/*card inner text-----------------------*/
.hover-card-text {
  width: max-content;
}
li {
  margin: 2px;
  border-radius: 5px;
  width: max-content;
  padding-left: 10px;
  padding-right: 8px;
  box-shadow: 0px 0px 4px lightgray;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 14px;
  /* margin-bottom: 1%; */
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  list-style-type: none;
}

/*navbar----------------*/

nav {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  z-index: 3;
}

.nav-left {
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  color: #9d9c9c;
  font-family: "Roboto Mono", monospace;
}
.nav-left:hover {
  text-underline-position: under;
}

.nav-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ff4081;
  transition: width 0.3s ease-in-out;
}

.nav-left:hover::after {
  width: 100%;
}
.nav-right {
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ccc;
  font-family: "Roboto Mono", monospace;
}
.nav-right:hover {
  text-underline-position: under;
}

.nav-right::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ff4081;
  transition: width 0.3s ease-in-out;
}

.nav-right:hover::after {
  width: 100%;
}
.bracket-container {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.bracket-left {
  font-size: 20px;
  margin: 6px;
}
.bracket-right {
  font-size: 20px;
  margin: 6px;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 2;
}

.menu.open {
  transform: translateY(0);
}

.menu ul {
  list-style: none;
  text-align: center;
}

.menu li {
  margin: 20px 0;
  transition: color 0.3s;
}

.menu li:hover {
  color: #ff4081;
  cursor: pointer;
}
.menu-items {
  margin: 2px;
  border-radius: 5px;
  width: max-content;
  padding-left: 10px;
  padding-right: 8px;
  box-shadow: none !important;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 14px;
  margin-bottom: 1%;
  font-size: 70px !important;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: lightgray;
  font-family: var(
    --framer-blockquote-font-family,
    var(--framer-font-family, Inter, Inter Placeholder, sans-serif)
  );
}

/*heading text--------*/

.status {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  font-family: "Roboto Mono", monospace;
}

.pulse {
  margin: 5px;
  margin-right: 13px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 0 #40e6ff;

  animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #40e6ff;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #40e6ff;
    box-shadow: 0 0 0 0 #40e6ff;
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.job-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: lightgray;
  font-family: var(
    --framer-blockquote-font-family,
    var(--framer-font-family, Inter, Inter Placeholder, sans-serif)
  );
}

@media (max-width: 600px) {
  .job-title {
    font-size: 40px;
  }
}
section {
  width: -webkit-fill-available;
  top: 0;
}
section.section-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 7%;
  margin-bottom: 7%;
}
section.section-three {
  display: flex;
  gap: 40px;
  position: relative;
  justify-content: center;
}
