@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  font-family: "Inter", sans-serif;
  margin: 0 auto;
  width: min(90em, 100%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1em;
  padding: 1em 0;
}

.logo-link {
  display: flex;
  justify-content: center;
  gap: 0.2em;
  text-decoration: none;
  color: white;
}

.logo-link h1 {
  font-size: 2.4em;
  font-weight: 300;
}

.logo {
  width: 2em;   /* control image size here */
  height: auto;  /* keeps aspect ratio */
  object-fit: contain;
}


/* nav */
.nav-links {
  display: flex;
  gap: 1em;
  font-size: 1em;
  font-weight: 500;
  list-style: none;
}

/* buttons */
.standard-button {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 0.6em 1em;
  font-weight: 500;
  border: 1px solid white;
  transition: all 0.2s ease;   /* smooth hover */
}

.contact-us-button {
  display: inline-block;
  text-decoration: none;
  color: black;                /* text color */
  background-color: pink;      /* base background */
  padding: 0.6em 1em;
  font-weight: 500;
  transition: all 0.2s ease;   /* smooth hover */
}

.contact-us-button:hover, .standard-button:hover {
  color: black;
  background-color: white;
}

.contact-us-button:active, .standard-button:active {
  opacity: 0.7;
}

/* hero */
.hero-container {
  width: calc(100% - 2em);   /* apply margin at the container level */
  margin: 0 1em;
  aspect-ratio: 1.618;
  position: relative;
  overflow: hidden;
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* ensures perfect center crop */
  transform: translate(-50%, -50%);
}

hr, .internal-break {
  border: none;
  height: 1px;
  margin: 1em 0;
}

hr { 
  background: white; 
  margin: 1em;
}
.internal-break { 
  background: gray; 
}

.company, .team {
  display: grid;
  grid-template-columns: 1fr; /* always single column */
  row-gap: 1em;               /* spacing between h4 and text */
  margin: 1em;
  margin-bottom: 2em;
}

.company h4,
.company-description h2,
.company-description p {
  color: white;
}

.company-description h2 {
  font-weight: 200;
}

.indented-list, .process-steps {
  color: white;
  font-weight: 200;
  margin-left: max(5em, 10%);
  font-size: 24px;
}

.team h4, .team-description a {
  color: white;
}

.team-description h2{
  text-align: center;
}

.team-description a {
  text-decoration: none;
  font-weight: 200;
  transition: all 0.2s ease;
}

.team-description a:hover {
  color: gray;
}

.team-description a:active {
  opacity: 0.7;
}

footer {
  text-align: center;
  margin: 0 1em;
  padding-bottom: 1em;
}

footer p {
  color: gray;
  padding-bottom: 0.5em;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: gray;
}

.footer-links a:active {
  opacity: 0.7;
}