/* DoughMixer.com.au Custom Styles */

/* Ensure images don't break layout when missing */
img {
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
}

img::after {
  content: "🥖 Image Loading...";
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #8B4513;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A0522D;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* Button hover effects */
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.hover\:shadow-md:hover {
  transform: translateY(-2px);
}

/* Video styles for hero section */
video {
  object-fit: cover;
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
}

/* Ensure video is responsive */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Video loading state */
video[poster] {
  background-size: cover;
  background-position: center;
}