
/* ========= site header ========== */
.siteHeader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #ab5f02;
  background-image: url("Img/All of the evee evolutions!.jpeg");
  background-size: cover;
  z-index: 1000;
}

/* ========= header container ============ */
.headerContainer {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== Logo ========== */
.logo{
  font-size: 1.8rem;
  color: #e5e7eb;
}

/* ========== Navigation ========= */
.Menu ul{
  list-style: none;
  display: flex;
  gap: 25px;
}

.Menu a{
  text-decoration: none;
  font-size: 1rem;
  color: #e5e7eb;
  transition: color 0.3s ease, transform 0.3s ease;
}

.Menu a:hover{
  color: #38bdf8;
  transform: translateY(-2px);
}

/* ================= SECTIONS ================= */

.section {
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* ================= ACCUEIL ================= */

.accueil {
  background: linear-gradient(
    135deg,
    #1e293b,
    #0f172a
  );
  color: #e5e7eb;
}

.accueil-contenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Text styling */
.tp {
  letter-spacing: 3px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.titre-site {
  font-size: 2.8rem;
  margin: 10px 0;
}

.nom {
  font-weight: bold;
  font-size: 1.1rem;
}

.github a {
  color: #38bdf8;
  text-decoration: none;
}

.github a:hover {
  text-decoration: underline;
}

.session {
  margin-top: 20px;
  font-style: italic;
}

/* ================= INSCRIPTION ================= */

.inscription {
  background-color: #5ebe46;
  color: #000000;
  padding: 30px;
}

/* Formulaire */
.formulaire {
  width: 100%;
  max-width: 500px;
  max-height: auto;
  padding: 30px;
  background-color: #47b534;
  border-radius: 10px;
  

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formulaire h2 {
  text-align: center;
  margin-bottom: 5px;
}

.formulaire p {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Champs */
.formulaire input,
.formulaire select {
  padding: 8px;
  border-radius: 5px;
  border: none;
}

/* Fieldset */
fieldset {
  border: 1px solid #334155;
  padding: 10px;
}

legend {
  padding: 0 5px;
}

/* Checkbox */
.checkbox {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
}

/* Boutons */
.boutons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.boutons input {
  padding: 10px 20px;
  background-color: #38bdf8;
  color: #020617;
  border: none;
  cursor: pointer;

  /* Transition */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.boutons input:hover {
  background-color: #0ea5e9;
  transform: scale(1.05);
}

/* ================= TABLEAU ================= */

.tableau {
  background-color: #ff6600;
  color: #000000;
}

.stats-table {
  width: 80%;
  max-width: 800px;
  border-collapse: collapse;
  background-color: #ff892e;
}

/* Caption */
.stats-table caption {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* En-tête */
.stats-table thead {
  background-color: #3f5578;
}

.stats-table th,
.stats-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #334155;
}

/* Pied de tableau */
.stats-table tfoot td {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ================= ARTICLES ================= */

.articles {
  background-color: #b375ca;
  color: #000000;
}

.articles-contenu {
  width: 90%;
  max-width: 1100px;
}

/* En-tête */
.articles-header {
  text-align: center;
  margin-bottom: 40px;
}

.articles-header h2 {
  font-size: 2.2rem;
}

.articles-header h3 {
  font-size: 1.2rem;
  font-weight: normal;
  opacity: 0.8;
}

/* Flexbox pour les articles */
.articles-flex {
  display: flex;
  gap: 30px;
}

/* Article individuel */
.article {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article img {
  width: 60%;
  height: 200px;
  border-radius: 8px;
}

.article img {
  transition: transform 0.3s ease;
}

.article img:hover {
  transform: scale(1.03);
}


.galerie {
  background-color: #0483d8;
  color: #000000;
}

.galerie-contenu {
  width: 90%;
  max-width: 1100px;
  text-align: center;
}

.galerie-contenu h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Flexbox galerie */
.galerie-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Images */
.galerie-flex img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background-color: #0f172a;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;

  /* Transitions */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Transformations au survol */
.galerie-flex img:hover {
  transform: scale(1.2) rotate(2deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}
.galerie-flex img:hover {
  z-index: 2;
}



.footer {
  background-color: #ff80f2;
  color: #000000;
}

.footer-contenu {
  width: 90%;
  max-width: 1100px;

  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Colonnes */
.footer-col {
  flex: 1;
}

.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #020202;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0ea5e9;
}

/* Réseaux sociaux */
.reseaux {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
}

/* Bas du footer */
.footer-bas {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}


/* global styles */
html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

