h1 { font-family: Arial, Helvetica, sans-serif; }

/* Category Filter Buttons - RED/NAVY Theme */
.category-filter {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  border: none;
  cursor: pointer;
}

.category-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.category-filter.active {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
}

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

/* Ensure no broken images */
img {
  object-fit: cover;
}

img[onerror] {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Mobile menu smooth animation */
#mobileMenu {
  transition: max-height 0.3s ease-in-out;
}

/* Hero slider fade effect */
.hero-slide {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

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

/* Video overlay smooth fade */
#videoOverlay {
  transition: opacity 0.3s ease-in-out;
}

/* Little Larry Carousel */
.larry-carousel-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.larry-carousel {
  position: relative;
  overflow: hidden;
  display: block !important;
}

.larry-carousel-slide {
  display: none;
  animation: larryFadeIn 0.5s ease-in-out;
}

.larry-carousel-slide.active {
  display: block !important;
}

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

.larry-carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.larry-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.larry-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.larry-carousel-dot:hover {
  background: rgba(255,255,255,0.8);
}

.larry-carousel-dot.active {
  background: #fbbf24;
  width: 30px;
  border-radius: 6px;
}

/* Hide Interactive Map Section per request */
#map { display: none !important; }
