@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

:root {
  color-scheme: dark;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background: #000000;
  color: #f6f6f6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  display: grid;
  place-items: center;
  background-color: #000000;
  width: 100vw;
  height: 100vh;
}

.page {
  width: min(100%, 1300px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.hero {
  width: 100%;
  min-height: calc(100vh - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 250px;
  transform: translateY(0);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 48px);
  text-align: left;
  flex-wrap: wrap;
  padding: 12px;
  transform: translate(-70px, -40px);
}

.logo-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

.subtitle,
.hero-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.92;
  max-width: 40ch;
  font-weight: 300;
}

.contact-bar {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 200px;
  padding: 24px 0 12px;
  transform: translate(0px, -150px);
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 300px;
}

.contact-label {
  font-size: 10px;
}

.contact-link,
.contact-link:visited {
  color: #f6f6f6;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 10px;
}

.contact-link:hover,
.contact-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  html, body {
    overflow: hidden;
  }

  .page {
    padding: 24px 18px;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    gap: 10rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    transform: translateY(200px);
  }

  .logo-image {
    width: 170px;
  }

  .subtitle,
  .hero-text {
    font-size: 14px;
    max-width: 32ch;
  }

  .contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px 0 16px;
    transform: translate(0px, -150px);
    margin-top: auto;
  }

  .contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 360px);
    gap: 10rem;
  }

  .contact-label {
    font-size: 11px;
    
  }

  .contact-link {
    font-size: 13px;
  }
}

