/* style.css - FatherShield */

:root {
  --navy: #072f5f;
  --gray: #555555;
  --white: #ffffff;
  --font: 'Open Sans', 'Roboto', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

h1, h2, h3 {
  color: var(--navy);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  color: var(--white);
  background: linear-gradient(rgba(7,47,95,0.7), rgba(7,47,95,0.7)),
              url('images/family.png') center/cover no-repeat;
}

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

.hero h1 {
  color: var(--white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-sub {
  font-size: 1.25rem;
  margin: 1rem auto;
  max-width: 600px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.logo {
  max-width: 140px;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  color: var(--navy);
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.cta-button:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

/* Why Section */
.why {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Features Section */
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.feature h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature::before {
  content: "🛡";
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-secondary {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .feature {
    flex: 1;
    padding: 0 1rem;
    text-align: center;
  }
}

/* Mission Section */
.mission {
  background: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}

.mission .values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission .value h3 {
  color: var(--navy);
}

@media (min-width: 768px) {
  .mission .values {
    flex-direction: row;
    justify-content: center;
  }
  .mission .value {
    flex: 1;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1.5rem auto;
  padding: 1rem;
  border-left: none;
  border-radius: 8px;
  background: #eef2f8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: bold;
  color: var(--navy);
}

/* Signup Section */
.signup {
  background: #f9f9f9;
  text-align: center;
  padding: 3rem 2rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.signup-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
  max-width: 300px;
}

.signup-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.signup-form button:hover {
  background-color: #0b3c7f;
  transform: translateY(-2px);
}

.privacy-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

/* Thank You Page */
.thankyou-hero {
  background: linear-gradient(135deg, var(--navy), #0b3c7f);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.thankyou-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.thankyou-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.next-steps {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.next-steps h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--navy);
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--white);
}