@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Base Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f3f4f6;
  color: #1e293b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #facc15;
  color: #1e293b;
  padding: 1em;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header img {
  max-height: 80px;
  border-radius: 12px;
  margin: 0 auto 1em auto;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0.2em 0;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 0.75em 0;
  margin: 0;
  background-color: #1e1e2f;
}

nav ul li a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0.5em 0.75em;
}

nav ul li a:hover {
  color: #ffffff;
}

/* Main Content */
main {
  padding: 2em 1.25em;
  max-width: 960px;
  margin: 2em auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

main h2 {
  font-size: 1.6em;
  color: #0f172a;
  margin-top: 1.5em;
}

section {
  margin-bottom: 2em;
}

ol, ul {
  padding-left: 1.25em;
}

/* Buttons */
.button-link {
  display: inline-block;
  padding: 0.75em 1.25em;
  margin: 1em 0.5em 0 0;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.button-link:hover {
  background-color: #b91c1c;
}

/* Iframes */
iframe {
  border-radius: 8px;
  margin-top: 1em;
  border: 1px solid #cbd5e1;
  width: 100%;
}

/* Footer */
footer {
  background-color: #1e293b;
  color: white;
  text-align: center;
  padding: 2em 1em;
  margin-top: 3em;
  font-size: 0.9em;
  border-top: 3px solid #0f172a;
}

footer a {
  color: #facc15;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile-specific tweaks */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
  }

  nav ul {
    flex-direction: column;
    gap: 0.75em;
    padding: 1em 0;
  }

  .button-link {
    width: 100%;
    text-align: center;
    margin: 0.5em 0;
  }

  main {
    padding: 1.25em 1em;
  }

  iframe {
    height: 500px;
  }
}
.hero-section {
  position: relative;
  padding: 6em 2em;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../img/hero-family.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.25em;
  line-height: 1.6;
}

.cta-button-group {
  text-align: center;
  margin: 2em auto;
}

.section-white {
  background: #ffffff;
  padding: 2.5em;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  max-width: 960px;
  margin: auto;
}
