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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  color: #006b44; /* изумрудный */
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  background-color: #2e8b57;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.products {
  padding: 50px 20px;
  text-align: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-item {
  width: 180px;
}

.product-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.about, .contact {
  padding: 40px 20px;
  text-align: center;
}

footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.gallery img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}