/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

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

/* Hover effects */
a, button {
  transition: all 0.3s ease;
}

/* Custom gradient text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section transitions */
section {
  scroll-margin-top: 80px;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  nav {
    padding: 0.5rem;
  }
}

/* Osano Cookie Consent Customization */
.osano-cm-dialog {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.osano-cm-dialog__content {
  max-width: 600px !important;
}

.osano-cm-button--type_accept {
  background: #2563eb !important;
  border-color: #2563eb !important;
}

.osano-cm-button--type_accept:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

.osano-cm-button--type_denyAll {
  background: #6b7280 !important;
  border-color: #6b7280 !important;
}

.osano-cm-button--type_denyAll:hover {
  background: #4b5563 !important;
  border-color: #4b5563 !important;
}

.osano-cm-link {
  color: #2563eb !important;
}

.osano-cm-link:hover {
  color: #1d4ed8 !important;
  text-decoration: underline !important;
}

/* Osano widget positioning */
.osano-cm-widget {
  bottom: 20px !important;
  left: 20px !important;
}

@media (max-width: 768px) {
  .osano-cm-dialog {
    margin: 10px !important;
  }
  
  .osano-cm-widget {
    bottom: 10px !important;
    left: 10px !important;
  }
}