/* ========================================
   CONTACT PAGE
======================================== */

.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 120px;
}

.contact-content {
  max-width: 800px;
}

/* TITLE */

.contact-content h1 {
  font-size: 64px;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

/* TEXT */

.contact-text {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* EMAIL */

.contact-email {
  display: inline-block;
  font-size: 24px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 40px;
  transition: 0.3s ease;
}

.contact-email:hover {
  opacity: 0.6;
}

/* SOCIAL */

.contact-social a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s ease;
}

.contact-social a:hover {
  opacity: 1;
}
.footer {
  padding: 60px 20px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}
