/* Makanworld.com Custom Additions Stylesheet */

/* Custom smooth transitions */
.view-section {
  animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom scrollbars for clean layouts */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Active buttons styling for List/Map toggles */
.active-toggle {
  background-color: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
}

/* Active indicator step highlights for Wizard */
.active-step {
  border-bottom: 2px solid #0284c7;
  color: #0284c7 !important;
  padding-bottom: 4px;
}

/* Wizard progress indicators */
.wizard-indicator {
  transition: all 0.3s ease;
  position: relative;
}

/* Post wizard custom select boxes overrides */
.select-box, .select-box-sm {
  transition: all 0.2s ease-in-out;
  position: relative;
  user-select: none;
}

.select-box:hover, .select-box-sm:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.select-box.active-card, .select-box-sm.active-card {
  border-color: #0284c7 !important;
  background-color: #f0f9ff !important;
  box-shadow: 0 0 0 2px #0284c7, 0 6px 12px -2px rgba(2, 132, 199, 0.2) !important;
}

.select-box.active-card .select-check-badge, .select-box-sm.active-card .select-check-badge {
  display: flex !important;
}

/* Form focus glow effects */
input:focus, select:focus, textarea:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15) !important;
}

/* Sticky top header adjustments for standard layouts */
header {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Carousel/Gallery slide animation rules */
.gallery-slide {
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

/* Blinking text animation for MAKANWORLD.COM */
@keyframes brand-blink {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 2px rgba(249, 115, 22, 0.35));
  }
  50% {
    opacity: 0.35;
    filter: drop-shadow(0 0 0px transparent);
  }
}

.animate-brand-blink {
  display: inline-flex;
  animation: brand-blink 1.8s ease-in-out infinite;
}


