/* general styles */
* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

a {
  color: #2e7d32;
  text-decoration: none;
  margin: 0 10px;
}

a:hover {
  text-decoration: underline;
}

nav {
  background: #fff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

nav a {
  padding: 0.5rem 1rem;
  display: inline-block;
  font-weight: 500;
}

/* hero header */
header.hero {
  background: #2e7d32;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

header.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header.hero p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

header.hero button {
  padding: 0.75rem 1.5rem;
  background: white;
  color: #2e7d32;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

header.hero button:hover {
  background: #f1f1f1;
}

/* sections */
section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 2rem;
}

section h3 {
  margin-top: 1.5rem;
  color: #444;
}

/* list styles */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5rem 0;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #eee;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* payments */
.payments-info ul {
  margin-top: 1rem;
}

.payments-info li {
  margin: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

.payments-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2e7d32;
}

/* contact form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 0.5rem 0 0.25rem 0;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-family: inherit;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  background: #2e7d32;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background: #256427;
}

.direct-contact {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.direct-contact p {
  margin: 0.5rem 0;
}

.direct-contact a {
  margin: 0.5rem 0;
}

/* promo */
.promo-banner {
  background: #4caf50;
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
}

/* responsive tweaks */
@media (max-width: 768px) {
  header.hero h1 {
    font-size: 2.2rem;
  }

  header.hero p {
    font-size: 1.1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.25rem;
  }

  nav a {
    margin: 0.25rem 0;
    display: block;
    width: 100%;
  }

  section {
    margin: 1rem;
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  header.hero {
    padding: 3rem 1rem;
  }

  header.hero h1 {
    font-size: 1.8rem;
  }

  header.hero p {
    font-size: 1rem;
  }

  header.hero button {
    font-size: 0.95rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  footer {
    font-size: 0.8rem;
  }
}
