*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Roboto", serif;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  background-color: #000;
  /*
  background-image: url('images/placeholder.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  */
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(3.75rem, 12vw, 7.5rem);
  line-height: 1.1;
  width: 100%;
  text-align: center;
}

.contact-info {
  width: 100%;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  text-align: center;
}

.contact-info p + p {
  margin-top: 1rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info a img {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
}
/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    padding: clamp(1.5rem, 6vh, 4rem) clamp(1rem, 4vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  .logo {
    width: 90%;
    max-width: 700px;
    height: auto;
    margin: 30px;
  }
}
