

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #39b94e;
  color: white;
}

.logo {
  height: 50px;
}

.cta-button {
  background: #f90;
  color: #fff;
  padding: 0.3rem 0.8rem; /* smaller padding */
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem; /* slightly smaller font */
  margin-left: 1rem; /* add space between logo and button */
}


.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: url('images/hero-image.jpg') center/cover no-repeat;
  color: white;
}
.hero {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  color: white;
  background: url('images/hero-image.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* transparent dark overlay */
  z-index: -1;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.button {
  background: #f90;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

main section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #f90;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background: #f90;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: white;
}



