* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #efebe0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
}

header {
  background: #efebe0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border: #ab9e88 5px solid;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.5rem;
  height: 50px;
  width: auto;


}

#herologo {
  font-size: 1.5rem;
  height: 250px;
  width: auto;
  background-color: #efebe0a0;
  padding: 5px;
  border-radius: 10px;
  border: #ab9e88 5px solid;

}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #c7a26a;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('images/herobackgroundimagegrainy.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #efebe0;
  color: #222;
  padding: 14px 28px;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #a88450;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

  display: flex;
  justify-content: center;
  /* horizontal */
  align-items: center;
  /* vertical */
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #222;
}

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

.gallery-item {
  background: #ddd;
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #444;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.netlify-form {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-submit {
  text-align: center;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

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

  .netlify-form {
    padding: 25px;
  }

  .logo {
    font-size: 1.5rem;
    height: 40px;
    width: auto;
  }

  #herologo {
    font-size: 1.5rem;
    height: 150px;
    width: auto;
  }
}

@media (max-width: 410px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

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

  .netlify-form {
    padding: 25px;
  }

  .logo {
    font-size: 1.5rem;
    height: 35px;
    width: auto;
  }

  #herologo {
    font-size: 1.5rem;
    height: 125px;
    width: auto;
  }
}