/* Reset / base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fffffc;
  background-color: #d3d883;
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;

}
.title{
  color: #303030;
}
/* Header */
header {
 background: #489a4c;
  color: #fff;
  height: 90px;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-img {
  width: 50px;      /* adjust size */
  height: 50px;
  border-radius: 50%; /* makes it circular */
  object-fit: cover;
}

.logo-text {
  color: #ffff; /* green shade for farming feel */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c6e49; /* pick a color you like */
  
  
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
}

/* Hero Section */
.hero {
  background-image: url('bcd.png') ;
  background-size: cover;
  background-position: center;

  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: center;
    padding: 0 20px;
  background-color: #fff;
  height: fit-content;
  border-radius: 28px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color:#030303;
}
.home h1 {
  color: #000000;}

#papa{
  color: #e5e5e5;
}


.btn {
  background: #2c6e49;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* Sections general styling */
.section {
  padding: 60px 20px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c6e49;
}

.section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #000000;
}
.containerb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 28px;
}
/* Offerings / Cards */
.offerings .card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offerings .card {
  background: #f6f5f5;
  padding: 20px;
  border-radius: 28px;
  color: #212121;
}

.offerings .card h3 {
  margin-bottom: 15px;
  color: #2c6e49;
}

.offerings .card ul {
  list-style: disc;
  margin-left: 20px;
}

.offerings .card ul li {
  margin-bottom: 8px;
}

/* Contact Section */
.contact {
  background: #f9f9f9;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #2c6e49;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  height:fit-content

}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 5px;
}
nav ul li a.active {
  color: #fff;
  border-bottom: 2px solid #2c6e49;
}
/* Mobile view */
@media (max-width: 768px) {
  nav ul {
    display: none; 
    flex-direction: column;
    text-align: center;
    background: #489a4c;  /* optional: menu background */
    position: absolute;
    top: 70px; /* adjust according to nav height */
    right: 0;
    width: 100%; /* adjust as needed */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
  }
}
