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 {
  padding: 60px 20px;
  text-align: center;
  background-color: #fefefe;
}
#center video {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

#center h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  margin-top: 100px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.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;
}
/* 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));
  }
}
#center {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff9f3;
  position: relative;
}

#center h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 40px;
}

.video-box {
  max-width: 600px;
  margin: 0 auto 50px;
}

.video-box video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Ellipse images layout */
.ellipse-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.ellipse-item {
  text-align: center;
  max-width: 240px;
}

.ellipse-frame {
  width: 200px;
  height: 260px;
  border-radius: 50% / 60%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ellipse-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ellipse-item p {
  font-size: 1.1rem;
  color: #555;
}

/* Final image */
.final-image {
  margin-top: 40px;
}

.final-image img {
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Background overlay nhẹ */
.background-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../Images/Products/cayme.jpg"); /* hình nền bạn thêm */
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
