@import url("./fonts.css");


/* ========== WEBSITE IM AUFBAU ========== */

/* ---------- Grundaufbau ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;

  font-family: "Manrope", sans-serif;

  background-color: #151619;
}

.construction {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;

  padding: 3rem 1.5rem;

  color: #f7f5f0;
}

.construction__content {
  width: min(100%, 760px);

  text-align: center;
}


/* ---------- Unternehmen ---------- */

.construction__brand {
  margin: 0;

  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.construction__subtitle {
  margin: 0.4rem 0 0;

  color: #b78a43;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}


/* ---------- Inhalt ---------- */

.construction__eyebrow {
  margin: 5rem 0 1rem;

  color: #b78a43;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.construction__heading {
  margin: 0;

  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
}

.construction__text {
  max-width: 620px;

  margin: 1.75rem auto 0;

  color: #b8b8bb;

  font-size: 1rem;
  line-height: 1.7;
}


/* ---------- Instagram ---------- */

.construction__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  margin-top: 2.5rem;
  padding: 0.9rem 1.4rem;

  color: #f7f5f0;

  border: 1px solid rgba(247, 245, 240, 0.25);

  text-decoration: none;

  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.construction__instagram:hover {
  color: #b78a43;
  border-color: #b78a43;
}

.construction__instagram-icon {
  width: 20px;
  height: 20px;
}


/* ---------- Responsive Website im Aufbau ---------- */

@media (max-width: 600px) {

  .construction__eyebrow {
    margin-top: 4rem;
  }

  .construction__text {
    font-size: 0.95rem;
  }
}