/* Styles personnalisés RAM MEDIA - Blue & Orange IT Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --rm-blue-dark: #0f172a;
  --rm-blue-primary: #1e2b7b;
  --rm-blue-hover: #16205c;
  --rm-orange-primary: #f95721;
  --rm-orange-hover: #e04512;
  --rm-orange-light: #fff3ef;
  --rm-gray-bg: #f8fafc;
  --rm-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--rm-font);
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Nuances personnalisées RAM MEDIA */
.bg-rm-blue {
  background-color: var(--rm-blue-primary);
}

.text-rm-blue {
  color: var(--rm-blue-primary);
}

.bg-rm-orange {
  background-color: var(--rm-orange-primary);
}

.text-rm-orange {
  color: var(--rm-orange-primary);
}

.border-rm-orange {
  border-color: var(--rm-orange-primary);
}

.bg-rm-orange-light {
  background-color: var(--rm-orange-light);
}

.hover\:bg-rm-orange-dark:hover {
  background-color: var(--rm-orange-hover);
}

.hover\:bg-rm-blue-dark:hover {
  background-color: var(--rm-blue-hover);
}

/* Animations et transitions fluides */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(30, 43, 123, 0.1);
}

/* Badges & Accents */
.badge-orange {
  background-color: #fff3ef;
  color: #f95721;
  border: 1px solid #ffd8cb;
}

.badge-blue {
  background-color: #eef2ff;
  color: #1e2b7b;
  border: 1px solid #c7d2fe;
}

/* Ombre portée douce */
.shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

/* Boutons stylisés */
.btn-primary {
  background-color: var(--rm-orange-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(249, 87, 33, 0.25);
}

.btn-primary:hover {
  background-color: var(--rm-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 87, 33, 0.35);
}

.btn-secondary {
  background-color: var(--rm-blue-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: var(--rm-blue-hover);
  transform: translateY(-1px);
}

.btn-outline-blue {
  border: 2px solid var(--rm-blue-primary);
  color: var(--rm-blue-primary);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline-blue:hover {
  background-color: var(--rm-blue-primary);
  color: #ffffff;
}

/* Effets de fond technique */
.bg-tech-pattern {
  background-color: #0b1329;
  background-image: radial-gradient(rgba(249, 87, 33, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
}
