/* assets/style.css */

/* Import Unbounded (primary) and Work Sans (secondary) */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&family=Work+Sans:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #002855;
  color: #CBD3EA;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 600px;
  padding: 1rem;
}

.logo {
  width: 80%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  margin: 0.5em 0;
  transform: scale(0.8);
  opacity: 0;
  animation: expand-primary 0.8s ease-out forwards;
}

p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  /* …animation stuff… */
}

/* new link styles */
a {
  color: #F65275;              /* your hot-pink brand colour */
  text-decoration: none;       /* or underline if you prefer */
  transition: color 0.3s;
  /* keep the same animation if you want the expand effect: */
  transform: scale(0.8);
  opacity: 0;
  animation: expand-secondary 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

a:hover,
a:focus {
  color: #41B6E6;              /* your bright-blue brand accent */
  text-decoration: underline;  /* gives extra affordance */
}

.divider {
  width: 50px;
  height: 4px;
  background: #0061A0;
  margin: 20px auto;
}

.footer p {
  margin-top: 2rem;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  color: #CBD3EA;
}

@keyframes expand-primary {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes expand-secondary {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

@media (max-width: 480px) {
  body { padding: 1rem 0; }
  h1 { margin: 0.3em 0; }
  .divider { width: 40px; margin: 1rem auto; }
}