body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  background: #fffbe6; /* vàng nhạt */
  color: #2e2e2e;
}

header {
  background: linear-gradient(
    90deg,
    #6a994e,
    #a7c957
  ); /* xanh lá nhạt -> đậm */
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 97%;
  height: 100px;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-self: center;
}
.logo-img {
  height: 150px;
  margin-left: 10px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-top: 45px;
  margin-left: 0px;
  transform: translateX(-15px);
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #fdf6bd;
}

#center .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.about-section {
  position: relative;
  padding-top: 120px; /* đẩy nội dung xuống dưới header */
  max-width: 1000px;
  margin: 60px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 50px;
  margin-left: 10px;
  color: #6a994e;
  font-weight: bold;
  letter-spacing: 2px;
}

.about-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-image {
  width: 300px;
  height: 200px;
  object-fit: cover; /* sửa lỗi cắt hình */
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 24px;
  color: #558000;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-info {
  text-align: left;
  margin-left: 2rem;
  line-height: 1.6;
}
footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, #6a994e, #a7c957);
  color: white;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.market {
  width: 900px;
  height: 500px;
  margin-top: 40px;
  margin-left: 40px;
}

/* Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Nút Products */
.dropbtn {
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;

  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Menu ẩn ban đầu */
.dropdown-content {
  display: none; /* Ẩn */
  position: absolute;
  background-color: #a7c957;
  border-radius: 7px;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Mục trong menu */
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #6a994e;
}
/* Áp dụng hiệu ứng phát sáng động */
.halo-effect {
  animation: haloPulse 2.5s infinite ease-in-out;
  transition: filter 0.3s ease;
}

@keyframes haloPulse {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) /* trắng */
      drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)) /* vàng */
      drop-shadow(0 0 14px rgba(255, 0, 0, 0.4)); /* đỏ */
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) /* trắng */
      drop-shadow(0 0 35px rgba(255, 215, 0, 0.85)) /* vàng */
      drop-shadow(0 0 50px rgba(255, 0, 0, 0.75)); /* đỏ */
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6))
      drop-shadow(0 0 10px rgba(255, 215, 0, 0.5))
      drop-shadow(0 0 14px rgba(255, 0, 0, 0.4));
  }
}
.video-container {
  margin-top: 100px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 300px;
  max-width: 90vw;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.sound-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px 8px;
  transition: background 0.3s ease;
}

.sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}
