@charset "UTF-8";
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #000004;
  line-height: 1.6;
}

.bg-linear {
  background: linear-gradient(135deg, #1b065e, #EFC323);
  color: #ffffff;
}

/* Animations et transitions */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar personnalisée */
.navbar-custom {
  background: linear-gradient(135deg, #1b065e, #EFC323);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.navbar-custom .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-custom .nav-link:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.navbar-custom .nav-link.active {
  color: #EFC323 !important;
}
.navbar-custom .nav-link.active::before {
  width: 100%;
}

/* Boutons personnalisés */
.btn-primary-custom {
  background: linear-gradient(135deg, #EFC323, #1b065e);
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(204, 51, 44, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 51, 44, 0.4);
  background: linear-gradient(135deg, #1b065e, #EFC323);
  color: #ffffff;
}

.btn-success-custom {
  background: linear-gradient(135deg, #1b065e, #00a025);
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 41, 0.3);
}

.btn-success-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 188, 41, 0.4);
}

/* Cards futuristes */
.card-futuristic {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card-futuristic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EFC323, #1b065e, #0363A7);
}

.card-futuristic:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-futuristic .card-body {
  padding: 2rem;
}

/* Section Hero */
.hero-section {
  background: linear-gradient(135deg, #1b065e, #EFC323);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Statistiques */
.stats-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #1b065e;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1b065e;
  margin-bottom: 0.5rem;
}

.stats-label {
  color: #1b065e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Progress bars personnalisées */
.progress-custom {
  height: 12px;
  border-radius: 10px;
  background-color: #e9ecef;
  overflow: hidden;
}

.progress-bar-custom {
  background: linear-gradient(90deg, #1b065e, #0363A7);
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* Tables futuristes */
.table-futuristic {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.table-futuristic tbody tr {
  transition: all 0.3s ease;
}

.table-futuristic tbody tr:hover {
  background-color: rgba(3, 99, 167, 0.05);
  transform: scale(1.01);
}

.table-futuristic tbody td {
  padding: 1rem 1.2rem;
  border: none;
  border-bottom: 1px solid #e9ecef;
}

/* Forms futuristes */
.form-control-custom {
  border: 1px solid #e9ecef;
  border-radius: 100px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-control-custom:focus {
  border-color: #0363A7;
  box-shadow: 0 0 0 0.2rem rgba(3, 99, 167, 0.25);
  transform: translateY(-2px);
}

/* Badges personnalisés */
.badge-success-custom {
  background: linear-gradient(135deg, #1b065e, #00a025);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.badge-danger-custom {
  background: linear-gradient(135deg, #EFC323, #b02a24);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.badge-primary-custom {
  background: linear-gradient(135deg, #0363A7, #025a94);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

/* Sections avec espacement */
.section-padding {
  padding: 80px 0;
}

.invitation {
  position: relative;
  width: 1080px !important;
  height: auto;
}

.invitation-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fullName, #fullNameClone {
  font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .stats-number {
    font-size: 2.5rem;
  }
  .card-futuristic .card-body {
    padding: 1.5rem;
  }
}
/* Animations au scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

/* Sidebar pour les dashboards */
.sidebar {
  background: linear-gradient(180deg, #1b065e, #EFC323);
  color: #ffffff;
  min-height: 100vh;
  padding: 2rem 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 25px;
  margin: 5px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(5px);
}

.dashboard-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #0363A7;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.dashboard-card .card-icon.bg-primary {
  background: linear-gradient(135deg, #1b065e, #EFC323);
}

.dashboard-card .card-icon.bg-success {
  background: linear-gradient(135deg, #1b065e, #00a025);
}

.dashboard-card .card-icon.bg-danger {
  background: linear-gradient(135deg, #EFC323, #b02a24);
}

.btn-outline-success.btn-secondary, .btn-outline-danger.btn-secondary {
  background-color: transparent !important;
}

#datatable_wrapper .btn-outline-success {
  color: #00BC29 !important;
}
#datatable_wrapper .btn-outline-success:hover {
  color: #EFC323 !important;
}

#datatable_wrapper .btn-outline-danger {
  color: #CC332C !important;
}
#datatable_wrapper .btn-outline-danger:hover {
  color: #EFC323 !important;
}

.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 40, 68, 0.8);
  border-radius: 1rem;
}