/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7faf7;
  color: #222;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4caf50;
  padding: 1rem 2rem;
  color: #fff;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  gap: 0.5rem;
}
.logo-icon {
  font-size: 2rem;
  line-height: 1;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #e8f5e9;
}

.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero p {
  font-size: 1.3rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}

.products-section {
  padding: 3rem 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.products-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #388e3c;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(60,60,60,0.07);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(60,60,60,0.13);
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
}
.product-card h3 {
  color: #4caf50;
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 1rem;
  color: #444;
}

.contact-section {
  background: #e8f5e9;
  padding: 2.5rem 1rem;
  margin-top: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #388e3c;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #b2dfdb;
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: none;
}
.contact-form button {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #388e3c;
}

footer {
  text-align: center;
  padding: 1.2rem 0;
  background: #388e3c;
  color: #fff;
  margin-top: 2rem;
  border-radius: 1rem 1rem 0 0;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem;
  }
  .hero {
    padding: 3rem 0.5rem 2rem 0.5rem;
  }
  .products-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .contact-section {
    padding: 1.5rem 0.5rem;
  }
} 