/* css/styles.css */

/* Tipografía: Apparat Regular (si está instalada localmente).
   Si la tienen como archivo, dime la ruta y lo ajusto con @font-face. */
:root{
  --font: "Apparat", "Apparat Regular", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --text: #ffffff;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
}

body{
  /* Fondo */
  background:
    linear-gradient(0deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("../img/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrap{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.card{
  width: min(720px, 100%);
  padding: 24px 18px 18px;
}

.logo{
  display: block;
  margin: 0 auto 14px;
  max-width: min(220px, 85vw);
  height: auto;
}

.coming{
  margin: 0 0 14px;
  font-size: clamp(22px, 2.1vw, 40px);
  letter-spacing: 0.5px;
    padding-top: 40px;
  font-weight: 400; /* Apparat Regular */
}

.social{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 0 0 18px;
}

.social-link{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,.12);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.social-link:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.85);
}

.social-link i{
  font-size: 18px;
}

.contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  opacity: .95;
}

.contact-item{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}

.contact-item:hover{
  border-color: rgba(255,255,255,.85);
}

.dot{
  opacity: .7;
}
