/* Style général */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #2e5592;
  color: #2f3640;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 1rem;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

header h1 {
  margin-bottom: 0.5rem;
}

header h1 img{
  max-width: 300px;
  width: 100%;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.accordion-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: #e1e8f0;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d0d7e3;
}

.accordion-content {
  display: none;
  padding: 1rem 1.5rem;
  animation: fadeIn 0.4s ease-in-out;
}

.accordion-content h2 {
  margin-top: 0.5rem;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Bouton */
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #00a8ff;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0097e6;
}

/* Tableau horaire */
.schedule {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 1rem;
  text-align: left;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.schedule thead {
  background: linear-gradient(135deg, #00a8ff, #9c88ff);
  color: white;
}

.schedule th, .schedule td {
  padding: 0.8rem 1rem;
  vertical-align: top;
}

.schedule td span{
  color: #666666;
  display: block;
  font-size: .9rem
}

.schedule tbody tr:nth-child(even) {
  background: #f1f2f6;
}

.schedule tbody tr:hover {
  background: #dcdde1;
  transition: background 0.3s;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
