/* style.css */
body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: #001f3f; /* navy */
  color: #4682B4;      /* light blue */
  text-align: center;
}

/* Logo only */
.hero-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-inline {
  width: 480px;   /* make the favicon feel like a logo */
  height: 480px;
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 100px 20px;
}

.tagline {
  font-size: 1.2rem;
  margin: 10px 0 80px 0; /* more space above hero statement */
}

.hero-punch {
  font-size: 1.6rem;
  margin: 40px auto;
  font-weight: 500;
  max-width: 600px;
  color: #87CEEB; /* soft sky blue for separation */
}

/* Mission */
.mission {
  padding: 60px 20px;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #add8e6; /* teal accent */
}

.mission p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Contact */
.contact {
  padding: 60px 20px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #add8e6;
  border-radius: 4px;
  color: #001f3f;        /* input text dark for readability */
  background: #e6f2fa;   /* very light blue background for inputs */
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #add8e6; /* Steel Blue accent */
}

.button {
  background: #add8e6;
  color: #001f3f;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #add8e6;
  transform: scale(1.05);
}
.email-link {
  color: #add8e6;       /* steel blue accent */
  font-weight: bold;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
  color: #87CEEB;       /* lighter hover effect */
}