.section1 {
  position: relative;
  width: 100%;
  height: 50vh; /* Adjust to full viewport height or as needed */
  overflow: hidden;
}

#section1-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section1-content {
  position: relative;
  z-index: 3; /* Ensures content is on top */
  color: white; /* Text color, adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensures content centers vertically */
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent background */
}
#section1-content > div {
  padding: 100px 0px 0px 0px;
}

#section-1-content-headline {
  font-size: 3rem; /* Adjust font size as needed */
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold; /* Corrected to bold font weight */
}

#section-1-content-subline {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
}

#section-1-content-subline > a {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
}

#navside {
  background-color: #f7e4d1;
}
#navigation-sidebar {
  padding-top: 50px;
}
.nav-link-item {
  width: 100%;
  padding: 10px 0px 10px 0px;
}
.row > * {
  padding: 0 0 0 0 !important;
}
.nav-link-item > .nav-text {
  padding: 0px 0px 0px 100px;
}
.nav-link-item:hover {
  background-color: #6c4e31;
  color: white !important;
}
.nav-text {
  color: #6c4e31;
}
.nav-link-item:hover .nav-text {
  color: white !important;
}

/*  */
/* product fruit component */

.main {
  padding-top: 20px;
  border: 1px solid #6c4e31;
}

.fruit-block {
  position: relative;
  border: 1px solid #6c4e31;
  border-radius: 10px;
}
.fruit-name {
  position: absolute;
  font-size: 25px;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 0px 10px;
  color: #ac4b00dd;
  font-weight: bolder;
  top: -15px;
  left: 50px;
  background-color: white;
  font-style: italic;
}
.fruit-img {
  width: 200px;
  height: 200px;
  margin: 25px 0px;
}
.fruit-description {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Adjust padding for tablets */
@media (max-width: 768px) {
  #section1-content > div {
    padding: 0 0 0 0; /* Adjusted padding for tablet devices */
  }
}

/* Adjust padding for mobile devices */
@media (max-width: 576px) {
  #section1-content > div {
    padding: 0 0 0 0; /* Further adjusted padding for mobile devices */
  }
}
