/* Redesigned style.css for Zaika Foods - improved layout and visuals */

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f6f2;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #fff8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: auto;
  width: 30%; /* Make the logo take 30% width of screen */
}

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

nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #c38b4a;
}

section {
  padding: 50px 40px;
}

h1, h2 {
  color: #2e2e2e;
  margin-bottom: 20px;
}

.about-section, .expertise-section, .cta-section {
  max-width: 1000px;
  margin: auto;
}

.about-section p, .expertise-section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cta-section {
  background-color: #fff0e0;
  text-align: center;
  padding: 40px;
  margin-top: 60px;
  border-radius: 12px;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 40px;
  background-color: #fff;
}

.product-category {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fffdf8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.product-category img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-description {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.6;
}

footer {
  background-color: #fff8f0;
  text-align: center;
  padding: 25px;
  font-size: 0.95rem;
  color: #666;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info {
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-info i {
  color: #c38b4a;
  margin-right: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-form button {
  background-color: #c38b4a;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #b07d3d;
}

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

  .products {
    padding: 30px 20px;
  }

  .product-category {
    flex-direction: column;
    text-align: center;
  }

  .contact-container {
    padding: 20px;
  }
}
