/* 
========================================================================
   STYLE PERSONNALISÉ - PORTAIL MINI MBA TUNISIE (SAGES INSTITUT)
   Auteur: MARKY / Easy-Peasy.AI
   Description: Ce fichier contient les styles personnalisés, variables,
                animations et surcharges CSS pour agrémenter l'interface.
========================================================================
*/

/* --- Variables de Design --- */
:root {
  --primary-color: #0f243e;    /* Bleu Marine Profond */
  --secondary-color: #c59d5f;  /* Or Élégant */
  --emerald-color: #10b981;    /* Émeraude (Succès) */
  --card-bg: #fcfbf9;          /* Fond de carte crème */
  --body-bg: #ffffff;          /* Fond général */
}

/* --- Importations de polices élégantes --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* --- Comportement de défilement --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Surcharge polices serif pour les titres académiques */
.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* --- Animations Personnalisées --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0 0 rgba(197, 157, 95, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(197, 157, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 157, 95, 0); }
}

/* Classes d'animation d'apparition */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

.animate-pulse-border {
  animation: pulseBorder 2s infinite;
}

/* --- Classes d'Effets Visuels --- */
.gradient-overlay {
  background: linear-gradient(to top, rgba(15, 36, 62, 0.95) 0%, rgba(15, 36, 62, 0.3) 50%, transparent 100%);
}

.glass-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Personnalisation de la barre de défilement (Scrollbar) */
::-webkit-scrollbar {
  width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Stylisation interactive des cartes de formation */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(15, 36, 62, 0.1), 0 10px 10px -5px rgba(15, 36, 62, 0.04);
}

/* Style de sélection des packages dans le formulaire */
.package-radio-card input:checked + div {
  border-color: var(--secondary-color);
  background-color: rgba(197, 157, 95, 0.05);
  box-shadow: 0 4px 6px -1px rgba(197, 157, 95, 0.1), 0 2px 4px -1px rgba(197, 157, 95, 0.06);
}

/* Style de sélection du cycle de formation */
.cycle-tab-active {
  border-bottom: 2px solid var(--secondary-color);
  color: var(--primary-color);
}
