/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, #root {
  width: 100%;
  height: 100%;
}

body {
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafaf9;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  min-height: 100vh;
  padding: 2rem;
}

.logo {
  margin-bottom: 3rem;
}

.logo svg {
  width: 100px;
  height: 100px;
}

.brand {
  text-align: center;
  margin-bottom: 4rem;
}

.title {
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 100;
}

.flag {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.tagline {
  letter-spacing: .15em;
  color: #666;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 200;
}

.location {
  letter-spacing: .1em;
  color: #888;
  font-size: clamp(.875rem, 2vw, 1rem);
  font-weight: 200;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service {
  letter-spacing: .1em;
  color: #888;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 300;
}

.divider {
  background: #ddd;
  align-self:  center;
  width: 1px;
  height: 16px;
}

.contact {
  text-align: center;
}

.contact-label {
  letter-spacing: .2em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: .875rem;
  font-weight: 200;
}

.contact-email {
  letter-spacing: .05em;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #0000;
  transition: border-color .3s;
  font-size: 1.25rem;
  font-weight: 200;
}

.contact-email:hover {
  border-bottom-color: #1a1a1a;
}

.footer {
  position: absolute;
  letter-spacing: .1em;
  color: #bbb;
  font-size: .875rem;
  font-weight: 200;
  bottom: 2rem;
}

@media (max-width: 480px) {
  .services {
    flex-direction: column;
    align-items:  center;
    gap: 1rem;
  }

  .divider {
    display: none;
  }
}
