@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --color-ground: oklch(1 0.005 98);
  --color-ground1: oklch(0.9 0.01 98);
  --color-ground2: oklch(0.7 0.01 98);
  --color-text: oklch(0.3 0.02 220);
  --color-text-light: oklch(0.5 0.02 220);
}

body {
  background-color: var(--color-ground);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  margin: 0;
  padding: 2em 4em;
}

header {
  font-size: 1.7em;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  padding: 1em;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

#hr-head {
  width: 100%;
  border: none;
  height: 1px;
  background-color: var(--color-ground2);
}

#cover-wrap {
  position: relative;
  max-width: 50%;
  margin: 10em auto 0 auto;
  height: 400px;
  /* or whatever fits your desktop layout */
  background-image: url('/static/assets/cover-land.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cover {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

#cover-wrap span {
  color: var(--color-ground);
  font-size: 1.7rem;
  letter-spacing: 0.07em;
  text-align: center;
}

#contact-wrap {
  display: flex;
  align-items: start;
  gap: 8em;
  max-width: 75%;
  margin: 5em auto 0 auto;
  font-size: 1.5em;
}

#profiles-wrap {
  display: flex;
  gap: 4em;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.profile img {
  height: 460px;
  width: 320px;
  object-fit: cover;
}


#email-obf {
  white-space: nowrap;
  color: var(--color-text-light);
  text-decoration: underline;
  cursor: pointer;
}

.ig-link {
  height: 30px;
  width: 30px;
  background-image: url('/static/assets/ig-logo.jpg');
  background-size: cover;
  background-position: center;
}

#contact-info {
  display: flex;
  flex-direction: column;
}

#contact-info p {
  margin: 0;
  padding: 0;
}

#contact-info .contact-item {
  margin-top: 0.5em;
}

#contact-section {
  white-space: nowrap;
  margin-top: 4em;
  font-size: 0.85em;
}

/* BREAKPOINTS */

@media (max-width: 600px) {
  body {
    padding: 2em;
    font-size: 0.7em;
  }

  #contact-wrap {
    margin: 0;
    flex-direction: column;
    gap: 4em;
  }

  #contact-info {
    order: -1;
  }

  #contact-section {
    margin-top: 1em;
  }

  #profiles-wrap {
    flex-direction: column;
    order: 0;
  }

  .profile {
    width: 350px;
    height:auto;
  }

  #cover-wrap {
    max-width: 90%;
    height: 600px;
    background-image: url('/static/assets/cover-vert.jpeg');
    flex-direction: column;
    margin: 5em auto 0 auto;
  }

  #cover-wrap span {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
}
