/* ex-inline subjects/licence.html — externalisé pour la mise en cache */
/* ============================================================================
   VARIABLES
   ============================================================================ */
:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #5ba3e0;
  --text-dark: #1c1d1f;
  --text-medium: #6a6f73;
  --text-light: #9fa5ad;
  --border-color: #d1d7dc;
  --bg-gray: #f7f9fa;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.subjects-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.feature-check i {
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ============================================================================
   COMING SOON SECTION
   ============================================================================ */
.coming-soon-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 4rem;
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.coming-soon-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================================
   FEATURE BOXES
   ============================================================================ */
.feature-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.75rem;
}

.feature-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================================
   NOTIFY CARD
   ============================================================================ */
.notify-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
}

.notify-card h4 {
  color: var(--text-dark);
  font-weight: 700;
}

.notify-form .input-group {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 50px;
  overflow: hidden;
}

.notify-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
}

.notify-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 1rem 2rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================================
   RESOURCE CARDS
   ============================================================================ */
.resource-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.resource-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.resource-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 991px) {
  .coming-soon-card {
    padding: 3rem 2rem;
  }
  
  .coming-soon-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .coming-soon-card {
    padding: 2rem 1.5rem;
  }
  
  .coming-soon-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .coming-soon-title {
    font-size: 1.75rem;
  }
  
  .coming-soon-text {
    font-size: 1rem;
  }
  
  .notify-form .input-group {
    flex-direction: column;
    border-radius: 12px;
  }
  
  .notify-form .form-control,
  .notify-form .btn {
    border-radius: 12px;
  }
  
  .notify-form .btn {
    margin-top: 0.75rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
