*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  text-decoration: none;
}
html {
  scroll-behavior: smooth
}
:root {
  --ink: #1a1a18;
  --ink2: #232320;
  --ink3: #2c2c28;
  --grey: #7a7a72;
  --white: #faf9f6;
  --red: #eb3d1f;
  --yellow: #e8c84a;
  --green: #274029;
  --border: rgba(250, 249, 246, 0.1);
}
.ibm-plex-mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-regular-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: italic;
}
.ibm-plex-mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-sans-condensed-regular {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 28%;
}
.ibm-plex-sans-condensed-semibold {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 10%;
}

.ibm-plex-sans-condensed-bold {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 20%;
}
.caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

div {
  width: 100%;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 5vh 5vw 0 5vw;
}

header {
  color: var(--grey);
  text-align: center;
}
.dark-bg {
  background-color: var(--ink);
}

.uppercase {
  text-transform: uppercase;
}
.small-text {
  font-size: 0.6rem;
}
.large-text {
  font-size: 1.5rem;
}
.extra-large-text {
  font-size: 2.5rem;
}

hr {
  border: none;
  border-top: 2px dashed var(--grey);
  width: 80%;
  margin: auto;
}

nav {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
}

a {
  color: var(--ink);
  text-decoration: underline;
}

nav a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
  transition: 0.3s;
  line-height: 1.4rem;
  text-decoration: none;
}

nav a::after {
  content: "";
  flex: 1;
  margin-left: 12px;
  height: 0.6em;
  align-self: baseline;

  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

nav a:hover {
  color: var(--red);
}

nav a:hover::after {
  background-image: radial-gradient(circle, var(--red) 1px, transparent 1px);
}

.cta {
  position: relative;
  display: inline-block;
  width: auto;
  background: url("brush.svg") center/contain no-repeat;
  padding: 20px 10px;
  align-self: end;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 10vw 0 0;
}
button {
  border: none;
  position: relative;
  display: inline-block;
  width: auto;
  background: url("brush.svg") center/contain no-repeat;
  padding: 20px 10px;
  align-self: end;
  cursor: pointer;
  transition: 0.3s;
  color: var(--ink);
}

.cta span {
  position: relative;
  color: var(--ink);
}

.cta:hover {
  scale: 110%;
}
.about-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-label span {
  color: var(--red);
  font-size: 0.5rem;
  letter-spacing: 10%;
  text-transform: uppercase;

  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.label-line {
  height: 1px;
  width: 60px;
  background: var(--red);
}

h1 {
  text-transform: uppercase;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 10%;
  color: var(--ink);
  margin-bottom: 2rem;
}

.highlight {
  color: var(--red);
}

p {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.br {
  height: 2rem;
}
.note {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--yellow);
  font-size: 1.3rem;
  transform: rotate(-5deg);
  text-align: end;
  position: static;
  display: block;
  margin-bottom: 1rem;
}

.coming-soon {
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 24, 0.8);
}

.left {
  width: 70%;
}

.right {
  width: 70%;
  margin-left: 30%;
}

h2 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 1rem 0;
}

.green-bg {
  background-color: #1c2e1d;
  color: var(--white);
}
form {
  padding: 2em;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  display: flex;
  gap: 1.2em;
  flex-direction: column;
  color: var(--grey);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}

.field {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.4em;
  width: 100%;
}
input,
textarea {
  background-color: var(--ink2);
  border-color: var(--border);
  border-radius: 4px;
  font-size: 0.95em;
  padding: 0.6em 0.8em;
  transition: border-color 0.2s;
  resize: vertical;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
input:focus,
textarea:focus {
  border-color: var(--white);
}

.footer-nav {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
  transition: 0.3s;
  line-height: 1.4rem;
  text-decoration: none;
  font-size: 0.6rem;
}

.footer-nav-value {
  margin-left: auto;
  white-space: nowrap;
}

.footer-nav a::after {
  display: none;
}

.footer-nav-label {
  white-space: nowrap;
}

.footer-nav-dots {
  flex: 1;
  height: 0.6em;
  align-self: baseline;
  margin: 0 12px;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  transition: background-image 0.3s;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-nav a:hover .footer-nav-dots {
  background-image: radial-gradient(circle, var(--red) 1px, transparent 1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0 2rem;
}

.footer-bottom a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  margin: 2rem 0;
}
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s;
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 180px;
}
.photo {
  background-color: var(--ink);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.info {
  background-color: var(--green);
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tym-role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
}
.tym-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 10%;
}
.card:hover {
  transform: translateY(-4px);
}

@media screen and (min-width: 767px) {
  .container {
    padding: 5vh 15vw 0 15vw;
  }

  form {
    max-width: 100%;
  }
  .half {
    width: 49%;
  }
  .cta {
    padding: 30px 20px;
  }
  .note {
    margin-top: 1rem;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    width: 80%;
    margin: 2rem auto;
  }
  .card {
    grid-column: span 2;
  }
  .card-large {
    grid-column: span 3;
  }
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background: none;
  background-color: var(--ink2);
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
