/* Compact dropdown: black background, two columns, tighter spacing */
.menu-item-1206 .sub-menu {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  background-color: #000000 !important;
  column-gap: 20px;
  padding: 15px 20px;
  width: fit-content !important;
  min-width: 400px;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  border: none;
  box-shadow: none;
  z-index: 9999;
}

/* Less vertical space between items */
.menu-item-1206 .sub-menu li {
  margin-bottom: 3px;
}

/* Smaller text, less padding, cleaner look */
.menu-item-1206 .sub-menu a.ct-menu-link {
  color: #ffffff !important;
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

/* Gold hover color */
.menu-item-1206 .sub-menu a.ct-menu-link:hover {
  color: #cdb584 !important;
}


/* ──────── 🎠 CAROUSEL STYLING ──────── */

/* Lock carousel height and align content */
.brz-carousel__item {
  height: 515px !important;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  position: relative;
}

/* Lock image sizing and add zoom effect */
.brz-carousel__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: none !important;
  transition: transform 0.3s ease;
}

.brz-carousel__item:hover img {
  transform: scale(1.05);
}

/* Remove any Brizy overlays */
.brz-carousel__item::before {
  content: none !important;
  background: none !important;
}

/* Text styling with background + shadow for readability */
.brz-carousel__item .brz-container-link {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  width: fit-content;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.7),
    0 0 2px rgba(0, 0, 0, 0.4);
}

/* Space between carousel slides */
.slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}
