/*
****************************************
 BTS TABLEAU
****************************************
*/
.bts-tableau {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 60vh;
}

.bts-tableau-desc {
  color: var(--text-color-alt);
}

.bts-tableau-iframe {
  width: 100%;
  height: 75vh;
  border: none;
  border-radius: var(--radius);
}

/*
****************************************
 LOGOS HEADER
****************************************
*/
.logo-montroland {
  height: 6rem;
  width: auto;
}

.header-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.logo-pages {
  height: 4rem;
  width: auto;
}

/*
****************************************
 PROJETS
****************************************
*/
.projets-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.projets-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}

.projet-card {
  background-color: var(--bg-color-alt);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 22rem;
  flex: 1;
  min-width: 16rem;
  border: 1px solid transparent;
  transition: border var(--transition) ease;
}

.projet-card:hover {
  border: 1px solid var(--accent-color);
}

.projet-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.projet-logo {
  height: 5rem;
  width: auto;
}

.projet-titre {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  text-align: center;
}

.projet-desc {
  font-size: 0.9rem;
  color: var(--text-color-alt);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.projet-competences {
  border-top: 1px solid rgba(147, 197, 253, 0.2);
  padding-top: 0.75rem;
}

.projet-competences-titre {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.projet-competences ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.projet-competences ul li {
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text-color);
}

.projet-competences ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/*
****************************************
 VEILLE
****************************************
*/
.veille-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.veille-header {
  text-align: center;
}

.veille-sous-titre {
  color: var(--text-color-alt);
  margin-top: 0.5rem;
}

.veille-intro {
  max-width: 800px;
  border-left: 2px solid var(--accent-color);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.veille-synthese {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.veille-mois {
  font-family: "Archivo Black", sans-serif;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.veille-tableau-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--radius);
}

.veille-tableau {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.veille-tableau thead tr {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.veille-tableau th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: bold;
}

.veille-tableau td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(147, 197, 253, 0.15);
  color: var(--text-color);
  vertical-align: top;
}

.veille-tableau tbody tr:nth-child(odd) {
  background-color: var(--bg-color-alt);
}

.veille-tableau tbody tr:nth-child(even) {
  background-color: var(--bg-color);
}

.veille-actions {
  display: flex;
  justify-content: center;
}

/*
****************************************
 DOCUMENTS
****************************************
*/
.documents-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.documents-groupe {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.documents-sous-titre {
  font-family: "Archivo Black", sans-serif;
  color: var(--accent-color);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(147, 197, 253, 0.2);
  padding-bottom: 0.5rem;
}

.documents-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.documents-lien-rapide {
  font-size: 0.9rem;
  color: var(--text-color-alt);
}

.documents-lien-rapide a {
  color: var(--accent-color);
  text-decoration: underline;
}

/*
****************************************
 RESPONSIVE
****************************************
*/
@media screen and (max-width: 1055px) {
  .projets-container {
    flex-direction: column;
    align-items: center;
  }

  .projet-card {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .header-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-montroland {
    height: 4rem;
  }

  .logo-pages {
    height: 2.5rem;
  }
}