
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #2b3e50;
  margin-top: 0;
}


header {
  position: relative;
  background: url('../images/image03.jpg') no-repeat center center/cover;
   min-height: 40vh; /* or use 40vh for responsive height */
}
.intro-text {
  text-align: center;
 /*  margin-top: -180px; pulls it into the image if you want overlap */
  color: #2b3e50;
}
/*
header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
  z-index: 1;
}
*/
header h1,
header p {
  position: relative;
  z-index: 2;
}






/*
header {
  background: url('images/image03.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
*/
header p {
  font-size: 1rem;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

ul {
  padding-left: 1.2rem;
}

.button {
  display: inline-block;
  background: #336699;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 1rem;
}

.button:hover {
  background: #224466;
}

footer {
  background: #e9ecef;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.social-icons {
  margin-bottom: 0.5rem;
}

.social-icons a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  text-decoration: none;
  color: #336699;
}

.social-icons a:hover {
  color: #224466;
}

@media (min-width: 600px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1.2rem;
  }

  .button {
    font-size: 1.1rem;
  }
}

@media (max-width: 500px) {
  header {
    padding: 2rem 1rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  header p {
    font-size: 0.95rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 0 1rem;
  }
}
