/* Fontes et couleurs globales */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0B1622;
  color: #fff;
}

.title {
  font-family: 'Poppins', sans-serif;
}

.subtitle {
  font-family: 'Montserrat', sans-serif;
}

/* Boutons principaux */
.btn-primary {
  background: linear-gradient(135deg, #00E5FF, #6B4DE6);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Boutons secondaires */
.btn-secondary {
  border: 2px solid #00E5FF;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(0, 229, 255, 0.1);
}

/* Correction classe héritée Ready */
.rounded-button {
  border-radius: 8px;
}

/* Effet de survol pour les cartes */
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.1);
}

/* Effet de survol pour les éléments de service */
.service-hover:hover {
  background-color: rgba(0, 229, 255, 0.1) !important;
  border-radius: 0.375rem;
}

/* Animation pour les messages de notification */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Nav et header */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00E5FF;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card {
  background: linear-gradient(135deg, rgba(17, 34, 64, 0.7), rgba(11, 22, 34, 0.9));
  border: 1px solid rgba(107, 77, 230, 0.2);
}

/* Style global pour tous les champs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"] {
    background-color: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(107, 77, 230, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="number"]:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
    background-color: rgba(17, 34, 64, 0.7);
}

/*input:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}*/

/* Style pour les placeholders */
input::placeholder {
    color: rgba(156, 163, 175, 0.7);
}

/* Style pour les labels */
label {
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

/* Style pour les boutons de formulaire */
button[type="submit"],
input[type="submit"] {
    background: linear-gradient(135deg, #00E5FF, #6B4DE6);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero gradient par défaut */
.hero-gradient {
    background: linear-gradient(135deg, #1a202c, #2d3748);
}
