body {
    margin: 0;
    font-family: 'Domine', sans-serif;
    background: white;
    color: #0a2342; /* Dark navy */
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    min-height: 90vh; /* allows padding without overflow */
    padding: 2rem;
    box-sizing: border-box; /* makes sure padding counts inside */
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0a2342;
}

.tagline {
  font-size: 1.8rem;       /* Bigger than subheader */
  font-weight: 500;        /* Medium weight */
  margin-bottom: 0.6rem;
  color: #2a7de1;          /* Accent blue */
  letter-spacing: 0.5px;   /* Slight spacing for style */
}

.subheader {
  font-size: 1.2rem;       /* Clearly smaller */
  font-weight: 400;        /* Light */
  color: #444;             /* Neutral gray so it doesn’t fight */
  margin-bottom: 2rem;
}

.links a {
    display: inline-block;
    margin: 0 1rem;
    color: #0a2342;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.links a:hover {
    color: #2a7de1;
}
