/* Design System Premium - Association Tivaouane */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #1e3a8a;
  --primary-light: #3b82f6;
  --accent-gold: #f59e0b;
  --neutral-white: #fefefe;
  --neutral-gray: #f8fafc;
  --text-dark: #1f2937;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  color: #1e3a8a;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(to right, #fcd34d, #fbbf24);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
}

.card-premium {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  padding: 2rem;
  border: 1px solid #f3f4f6;
}

.card-premium:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link.active {
  color: #2563eb;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e40af;
}