/* global.css – Eigene Anpassungen für Bestetrendsheute.de */

body {
  font-family: 'Inter', Arial, sans-serif !important;
  background-color: #f8f9fa !important;
}

/* Custom gradient for hero section - higher specificity */
.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
}

/* Hover effects for cards - higher specificity */
.card.hover-lift {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out !important;
}

.card.hover-lift:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Header styling - higher specificity */
header.navbar.navbar-expand-lg.navbar-light.bg-white.sticky-top.shadow-sm.border-bottom {
  border-bottom: 1px solid #e5e5e5 !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Sidebar styling */
.sticky-top {
  z-index: 1020 !important;
}

/* Footer styling */
footer.bg-light.text-dark.py-4.mt-auto.border-top {
  letter-spacing: 0.01em !important;
}

/* Link hover effects - higher specificity */
a.text-dark:hover {
  text-decoration: underline !important;
  color: #0d6efd !important;
}

/* Custom button hover effects - higher specificity */
.btn.btn-outline-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.25) !important;
}

.btn.btn-outline-success:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.5rem rgba(25, 135, 84, 0.25) !important;
}

.btn.btn-outline-warning:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.5rem rgba(255, 193, 7, 0.25) !important;
}

/* Badge styling - higher specificity */
.badge.bg-light.text-dark {
  font-weight: 500 !important;
}

.badge.bg-warning.text-dark {
  font-weight: 500 !important;
}

.badge.bg-secondary {
  font-weight: 500 !important;
}

/* Icon styling */
.bi {
  line-height: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: #c1c1c1 !important;
  border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8 !important;
}

/* Ad container styles */
.ad-container {
  position: relative !important;
}

.ad-container::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.ad-placeholder {
  position: relative !important;
  z-index: 2 !important;
  transition: all 0.3s ease !important;
}

.ad-placeholder:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.affiliate-container {
  position: relative !important;
}

.affiliate-placeholder {
  position: relative !important;
  z-index: 2 !important;
  transition: all 0.3s ease !important;
}

.affiliate-placeholder:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* Cookie banner animations */
#cookie-banner {
  animation: slideUp 0.5s ease-out !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

#cookie-banner.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateY(100%) !important;
}

@keyframes slideUp {
  from {
    transform: translateY(100%) !important;
    opacity: 0 !important;
  }
  to {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
} 