/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #2a5a8a;
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.logo p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.contact-info i {
  margin-right: 0.5rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.cta-button {
  background-color: #ff6b35;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #e55a2b;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem;
}

.hero-image {
  width: 50%;
  max-width: 600px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-map {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Horaires */
.horaires {
  padding: 3rem 0;
  background-color: white;
}

.horaires h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2a5a8a;
  font-size: 1.8rem;
}

.horaires-table {
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
}

.horaire-row:last-child {
  border-bottom: none;
}

.jour {
  font-weight: 600;
  color: #333;
}

.heure {
  color: #555;
}

.horaire-note {
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  color: #666;
}

/* Footer */
footer {
  background-color: #2a5a8a;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info i {
  margin-right: 0.5rem;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    width: 80%;
  }
}