/* ===== BASE ===== */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f8f9fa; /* fond clair uniforme pour toutes les pages */
  color: #333;
}

/* Header */
.lien-icone img {
  max-height: 180px;
  display: block;
}

/* ===== NAVIGATION ===== */
.nav-boutons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.bouton_nav {
  min-width: 90px;
  padding: 10px;
  margin-right: 20px;
  font-weight: 500;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #3a7bd5, #b0c4de);
  color: white;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bouton_nav:hover {
  background: linear-gradient(135deg, #1e3c72, #a0b8c9);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION PRINCIPALE ===== */
.section {
  padding: 20px;
  background-color: #ffffff; /* contenu principal blanc */
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 5px 0px 10px 0px;
}

/* ===== INTRO TEXT ===== */
.intro-text {
  text-align: center;
  margin-bottom: 30px;
}

.intro-text h1 {
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1em;
  line-height: 1.5;
  color: #333;
}

.blockquote-style {
  margin: 20px auto;
  font-size: 1.2em;
  font-style: italic;
  padding: 15px 20px;
}

/* ===== FOOTER ===== */
.footer-container {
  background-color: #0C111E;
  padding-bottom: 60px;
  padding-top: 60px;
  text-align: center;
  color: #ffffff;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00bcd4;
}

.footer-text {
  text-align: center;
  color: #ffffff;
  background-color: #0C111E;
  padding: 20px;
  font-size: 14px;
}

/* ===== FORMULAIRE CONTACT ===== */
.contact-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  background-color: #f9f9f9;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 8px rgba(58, 123, 213, 0.3);
  outline: none;
}

.contact-form button {
  width: auto;
  display: inline-block;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  background: linear-gradient(135deg, #3a7bd5, #b0c4de);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #1e3c72, #a0b8c9);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contact-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.contact-form p.form-note {
  text-align: center;
  font-size: 0.9em;
  color: #555;
  margin-top: 15px;
}
.form-control {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Uniformiser les select, input et textarea */
input.form-control,
select.form-control,
textarea.form-control {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ===== rgpd.css ===== */
.cc-btn {
  background: linear-gradient(135deg, #3a7bd5, #b0c4de) !important;
  color: #fff !important;
  border: none !important;
}

/* ===== rgpd.css ===== */
.cc-btn {
  background: linear-gradient(135deg, #3a7bd5, #b0c4de) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}/* ===== PAGE JEUX ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.game-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.game-card h2 {
  margin-top: 0;
}

.game-card p {
  color: #555;
}

.game-card button {
  margin-top: 10px;
  padding: 8px 18px;
  border: none;
  background: linear-gradient(135deg, #3a7bd5, #b0c4de);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.game-card button:hover {
  background: linear-gradient(135deg, #1e3c72, #a0b8c9);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.game-card button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ===== PAGE ABOUT ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.container h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #222;
}

.container h2 {
  margin-top: 20px;
  color: #444;
}

.container a {
  color: #007bff;
  text-decoration: none;
}

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

/* ===== RESPONSIVITÉ ===== */
@media (max-width: 768px) {
  .nav-boutons {
    justify-content: center;
  }

  .bouton_nav {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 600px) {
  .footer-links {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }
}
