
/* Custom CSS for IAS Glass Solutions */

/* Hero Section Styles */
.hero-gradient {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Accent Colors */
.accent-color {
  color: #B8860B;
}

.accent-bg {
  background-color: #B8860B;
}

/* Custom hover effects for accent color */
.hover\:text-accent-color:hover {
  color: #B8860B;
}

.bg-accent-color {
  background-color: #B8860B;
}

.text-accent-color {
  color: #B8860B;
}

/* Smooth transitions for interactive elements */
.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

/* Custom shadow effects */
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
  .hero-gradient h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-gradient p {
    font-size: 1rem;
  }
}

/* Focus states for accessibility */
button:focus,
a:focus {
  outline: 2px solid #B8860B;
  outline-offset: 2px;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Filter button styles */
.filter-btn {
  background-color: #f3f4f6;
  color: #6b7280;
  border: 2px solid transparent;
}

.filter-btn:hover {
  background-color: #e5e7eb;
  color: #374151;
}

.filter-btn.active {
  background-color: #B8860B;
  color: white;
  border-color: #B8860B;
}

/* Project item transitions */
.project-item {
  transition: opacity 0.3s ease-in-out;
}

/* Eigene Animation für das Einblenden der Testimonials */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
}