/* =========================
 ROOT
========================= */

:root {
  --font-primary: "Poppins", sans-serif;
  --color-text: #ffffff;
  --color-accent: #7dd2f5;
  --color-accent-dark: #5ab0d6;
  --color-bg: #000000;
}

/* =========================
 BASE
========================= */

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
}

/* =========================
 HERO CONTACT
========================= */

.hero-contact {
  min-height: 60vh;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow:
    0 0 12px var(--color-accent),
    0 0 24px rgba(125, 210, 245, 0.4);
  animation: floatTitle 3s ease-in-out infinite;
}

@keyframes floatTitle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =========================
 STARS BACKGROUND
========================= */

.stars-container {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(
      1.5px 1.5px at 70% 60%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.5), transparent);
  background-size: 300px 300px;
  animation: starsMove 60s linear infinite;
  z-index: 0;
}

@keyframes starsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px;
  }
}

.hero-contact > * {
  position: relative;
  z-index: 2;
}

/* =========================
 CONTACT SECTION
========================= */

.contact-section {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

/* =========================
 CONTACT CARD
========================= */

.contact-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(125, 210, 245, 0.25);
}

.contact-card h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--color-accent);
  text-shadow: 0 0 12px var(--color-accent);
  margin-bottom: 1rem;
}

.contact-intro {
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

/* =========================
 CONTACT LINKS
========================= */

.contact-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-links li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-links span {
  font-weight: 700;
  color: var(--color-accent);
}

.contact-links a {
  color: var(--color-text);
  text-decoration: none;
}

.contact-links a:hover {
  text-shadow: 0 0 8px var(--color-accent);
}

/* =========================
 VGEN BUTTON
========================= */

.vgen-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.vgen-button:hover {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 15px rgba(125, 210, 245, 0.6);
}

.contact-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
 FOOTER
========================= */

.footer {
  font-family: var(--font-primary);
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0.85;
}

.footer p {
  margin: 0;
}

/* =========================
 MOBILE
========================= */

@media (max-width: 428px) {
  .contact-links li {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .contact-card {
    padding: 2.2rem 1.5rem;
  }
}
/* =========================
 STARS BACKGROUND (CONTACT)
========================= */

.hero-contact {
  position: relative;
  overflow: hidden;
}

.hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(
      1.5px 1.5px at 70% 60%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.5), transparent);
  background-repeat: repeat;
  background-size: 300px 300px;
  animation: starsMove 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-contact > * {
  position: relative;
  z-index: 2;
}

@keyframes starsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px;
  }
}
