/* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4e3;
}

/* Navbar Styling */
.navbar {
  background-color: #f4f4e3;
  border-bottom: 2px solid #224224;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  color: #224224;
}

.navbar-icon {
  height: 100px;
  width: auto;
  margin-right: 10px;
}

.navbar-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  line-height: 1.2;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: #224224;
  padding: 8px 12px;
}

.menu a:hover {
  background-color: #d7c6aa;
  border-radius: 4px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropbtn {
  text-decoration: none;
  color: #224224;
  padding: 8px 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #d7c6aa;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content a {
  text-decoration: none;
  display: block;
  color: #224224;
  padding: 10px;
  border-bottom: 1px solid #f4f4e3;
}

.dropdown-content a:hover {
  background-color: #f4e3ec;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Main Content Wrapper */
.content-wrapper {
  display: flex;
  height: calc(100vh - 100px); /* Adjust based on navbar height */
}

/* Left Section */
.left-section {
  flex: 1;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.sustainability-photo {
  width: 50%; /* Display at half size */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.slideshow-container {
  position: relative;
  max-width: 100%;
}

.slideshow img {
  width: 50%; /* Display at half size */
  border-radius: 8px;
  display: none;
}

.slideshow img:first-child {
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #224224; /* Dark color for visibility */
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.8); /* Light background for contrast */
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 1); /* Fully opaque on hover */
}

/* Right Section */
.right-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Content Styling */
.why-eco-friendly {
  background-color: #d7c6aa;
  padding: 50px 20px;
  text-align: center;
}

.why-eco-friendly h2 {
  font-size: 2rem;
  color: #224224; /* Dark green */
  font-family: 'Cinzel Decorative', serif; /* Use the same font as the navbar text */
}

.eco-impact-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px auto;
}

.eco-impact-container div {
  background: #f4f4e3;
  padding: 20px;
  border-radius: 8px;
  width: 48%;
  text-align: left;
}

.impact-statement p {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: #224224; /* Dark green */
}

/* Dropdown Content - Hidden by default */
.dropdown-content {
  display: block; /* Keep it in the flow for animation */
  max-height: 0; /* Initially collapsed */
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}