
@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');



/* GLOBAL STYLES */

body {
  margin: 3rem auto;
  font-family: "Inconsolata", monospace;
  color: black;
  max-width: 1900px;
  padding: 0 0.25rem;
}

p {
  font-family: "Inconsolata", monospace;
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4rem;
  letter-spacing: 0.02em;
}

u {
  text-decoration-line: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a {
  color: black;
  text-decoration: none;
}

i {
  letter-spacing: 0.02rem;
}

* {
  box-sizing: border-box;
}




/* SPACER */

.spacer { height: 1rem; }
.spacer--sm { height: 1rem; }
.spacer--md { height: 2rem; }
.spacer--lg { height: 4rem; }




/* NAV */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 8px;
  width: 100%;
  background: white;
  z-index: 1000;
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.05rem 1rem;
  margin: 0;
  list-style: none;
}

.main-nav a {
  font-family: "Inconsolata", monospace;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: black;
  text-decoration: none;
  position: relative;
}

/* active page */
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
}

@media (max-width: 800px) {
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .main-nav a {
    font-size: 1.5rem;
  }
}

/* LANGUAGE SWITCH */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Inconsolata", monospace;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.lang-switch button {
  all: unset;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
  text-transform: uppercase;
  color: black;
  opacity: 0.35;
}

.lang-switch button:hover {
  opacity: 0.7;
}

.lang-switch button.active {
  opacity: 1;
}

.lang-switch span {
  opacity: 0.3;
  line-height: 1;
}



/* INFO PAGE WRAPPER */
.info {
  width: 100%;
}

.info-hero {
  width: 100%;height: 83vh; /* adjust as you like */
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.info-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 crops instead of shrinking */
  object-position: 80% center; /* optional: adjust vertical focus */
  display: block;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.caption {
  grid-column: 1 / 2;
}

.role {
  grid-column: 3 / 4;
}

.contact {
  grid-column: 4 / 5;
}

.info-col p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.info-col h1 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  padding-bottom: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.info-caption {
  font-size: 1rem;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .info-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .caption,
  .role,
  .contact {
    grid-column: auto;
  }

  .info-hero {
    height: 80vh;
  }
}

@media (max-width: 900px) {

  .caption p {
    font-size: 0.9rem;
    max-width: 250px;
  }

  .role h1,
  .contact h1 {
    font-size: 0.9rem;
    max-width: 250px;
  }

  .role p,
  .contact p {
    font-size: 0.85rem;
    max-width: 250px;
  }

}
