/* styles.css */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f1f9f4;
  color: #2e3d2f;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #1e4620;
  padding: 1rem 2rem;
  color: white;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: #cce5cc;
}

/* Main Layout */
.main-container {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  gap: 2rem;
}

/* Sidebar */
.sidebar {
  width: 60px;
  background-color: #d9f2e6;
  border-radius: 12px;
  padding: 1rem 0.5rem;
  transition: width 0.3s ease;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: none;
  width: 100%;
}

.sidebar.show-list ul {
  display: block;
}

.sidebar ul li {
  margin-bottom: 0.5rem;
  width: 100%;
}

.sidebar ul li a {
  text-decoration: none;
  color: #1e4620;
  transition: 0.3s;
  display: block;
  padding: 0.5rem;
  border-radius: 6px;
  width: 100%;
  text-align: left;
}

.sidebar ul li a:hover {
  background-color: #bde4c5;
}

/* Sidebar Toggle Button */
#sidebarToggleBtn {
  position: absolute;
  top: 110px;
  right: 3px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 6px;
  background-color: #d9f2e6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

#sidebarToggleBtn:hover {
  background-color: #bde4c5;
}

#sidebarToggleBtn img {
  width: 20px;
  height: 20px;
  filter: grayscale(80%);
}

.sidebar.expanded {
  width: 250px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #a6dfb3, #e6f9e4);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-text h1 {
  color: #1e4620;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: #317846;
  font-size: 1.2rem;
}

/* Content Sections */
.honey-content, .about, .contact {
  background-color: #ffffff;
  border-left: 4px solid #2f6e2f;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
}

/* Contact Form */
.contact form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #1e4620;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  margin-top: 1rem;
  background-color: #1e4620;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: #145c28;
}

/* Footer */
footer {
  background-color: #1e4620;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

  .sidebar ul {
    display: none !important;
  }

  .sidebar.show-list ul {
    display: block !important;
  }
}
