/* style.css */

  /* Body text */
body {
  font-family: 'Lato', sans-serif;
  font-size: 1.1em;
  line-height: 1.6em;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #000000; /* Black body text */
}

/* Headings */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #000000; /* Black headings */
}

nav {
  background-color: #008000;
  padding: 1em;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
}

nav a:hover {
  color: #ffd700;
}

p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin: 1em;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.logo {
  display: block;
  text-align: center;
  padding: 1em 0;
  background-color: #fff;
}

.logo img {
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

h1, p {
  text-align: center;
}

form {
  max-width: 500px;
  margin: 2em auto;
  padding: 1em;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
  color: #008000;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #008000;
  color: white;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #006400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  padding: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.product {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1em;
  text-align: center;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.product h3 {
  margin: 0.5em 0 0.2em;
  color: #0066cc;
}

.product h3 a {
  color: #000000; /* Black */
  text-decoration: none; /* Removes underline */
}

.product h3 a:hover {
  color: #006400; /* Dark green on hover (optional) */
}

.product p {
  margin: 0.2em 0;
  font-size: 0.95em;
}

.image-overlay-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 2em;
}

.image-overlay {
  position: relative;
  width: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.image-overlay img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  background: none;
  color: white; /* Or any color that works with your image */
  width: 100%;
  text-align: center;
  padding: 0.5em;
  font-family: inherit
  font-size: 1.1em;
  font-weight: bold;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.form-heading {
  text-align: center;
  margin-top: 1em;
}

.tagline {
  text-align: center;
  font-size: 1.2em;
  color: #333;
  margin-bottom: 2em;
}

.services-intro {
  max-width: 800px;
  margin: 1em auto;
  text-align: center;
  font-size: 1.1em;
}

.service {
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
}

.service img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cta {
  background-color: #f0f0f0;
  padding: 1em;
  text-align: center;
  margin: 2em auto;
  border-radius: 6px;
  max-width: 800px;
  font-size: 1.1em;
  color: #000; /* Ensure text is visible */
}

main {
  padding-bottom: 100px; /* space for footer */
}

.products-note {
  max-width: 800px;
  margin: 1em auto;
  text-align: center;
  font-size: 1.1em;
  background-color: #f0f0f0;
  padding: 1em;
  border-radius: 6px;
}

.products-note a {
  color: #006400; /* Dark green for link */
  font-weight: bold;
  text-decoration: none;
}

.products-note a:hover {
  text-decoration: underline;
}






