/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #1f2937;
  color: #ffffff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: #f7faf8; /* Friendly green color */
}
nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: flex-end;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #ff6b00;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1f2937, #2c3e50);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  font-weight: 700;
}
.hero p {
  font-size: 18px;
  margin: 20px 0;
}
.btn {
  background: #ff6b00;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #e55d00;
}

/* Section Headings */
h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Products Section */
.products {
  background: #ffffff;
  padding: 80px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.product-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* About Section */
.about {
  background: #f3f4f6;
  padding: 80px 0;
  text-align: center;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* Contact Section */
.contact {
  background: #ffffff;
  padding: 80px 0;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
}
.contact button {
  background: #ff6b00;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact button:hover {
  background: #e55d00;
}

/* Address Section */
.address {
  background: #f9fafb;
  padding: 60px 0;
  text-align: center;
  font-size: 16px;
}
.address p {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #1f2937;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
