/* ==========================================================================
   Home Page
   ========================================================================== */

.home-container {
  max-width: 1100px;
  padding: 40px 24px 80px;
}

.home-title-row {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 50px;
}

.home-logo {
  width: 420px;
}

.home-page h1 {
  font-size: 5.2rem;
  letter-spacing: 3px;
  text-align: center;
}

.intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 70px;
}

.social-btn {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(18, 18, 18, .88);
  font-size: 2.2rem;
  transition: .2s ease;
}

.social-btn:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 22px rgba(179, 18, 75, .45);
}
