/* --------------------------
   GLOBAL STYLES
--------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffdf7;
  color: #333;
}

/* --------------------------
   HEADER & NAVIGATION
--------------------------- */
header {
  background: #ffcc00;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d2d2d;
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: flex-end; /* Align menu to right */
  flex: 1;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  padding: 6px 0;
}

nav a:hover,
nav a.active {
  color: #006400;
}

/* --------------------------
   HERO SECTION
--------------------------- */
.hero {
  height: 90vh;
  background: url('../images/farm-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 10px;
}

/* --------------------------
   PAGE CONTENT
--------------------------- */
.content {
  padding: 60px 10%;
  line-height: 1.8;
}

.content h2 {
  color: #006400;
  margin-bottom: 15px;
}

.content h3 {
  margin-top: 25px;
  color: #444;
}

.content ul {
  margin-left: 20px;
}

/* --------------------------
   GALLERY SECTION
--------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* --------------------------
   CONTACT FORM
--------------------------- */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  background: #006400;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #228b22;
}

/* --------------------------
   FOOTER
--------------------------- */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* --------------------------
   HOME PAGE SECTIONS
--------------------------- */
.home-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 60px 10%;
  background: #fffbe6;
}

.home-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.home-card h3 {
  color: #006400;
  margin-bottom: 10px;
}

.home-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: #006400;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #228b22;
}

.usp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #f9f9f9;
  border-left: 6px solid #006400;
  padding: 40px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.usp-text {
  flex: 1;
}

.usp-text h3 {
  color: #006400;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.usp-text ul {
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.8;
  color: #333;
}

.usp-text li {
  margin-bottom: 5px;
}

.usp-image {
  flex: 1;
  text-align: right;
}

.usp-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fruit-list {
  background: #f9fff3;
  padding: 15px 20px;
  border-left: 5px solid #006400;
  border-radius: 8px;
  margin: 10px 0 25px 0;
  line-height: 1.8;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* --------------------------
   RESPONSIVE DESIGN
--------------------------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .hero {
    height: 70vh;
  }

  .hero-text {
    padding: 20px;
  }

 .usp-container {
    flex-direction: column;
    padding: 20px;
  }

  .usp-image {
    text-align: center;
  }

  .usp-image img {
    max-width: 100%;
  }
}
