/* Menu + Banner Section Styles - Minimal CSS, let Tailwind handle everything */

/* Mobile Menu Button */
.mobile-menu-btn {
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Banner Container Heights - Based on actual image ratios */
.banner-main-slider {
  aspect-ratio: 1.86 / 1;
  max-height: 500px;
  min-height: 300px;
}

.banner-mini {
  aspect-ratio: 1.85 / 1;
  max-height: 250px;
  min-height: 150px;
}

/* Banner Images */
.banner-hero img,
.banner-right-top img,
.banner-right-bottom img,
.banner-bottom-item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.banner-slide.active {
  opacity: 1;
}

/* Banner Navigation Arrows */
.banner-arrow {
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.banner-hero:hover .banner-arrow {
  opacity: 1;
}

.banner-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.banner-dot {
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner-dot:hover {
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.mobile-menu-panel {
  animation: slideInLeft 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
