/* Début styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f5f7fa;
}

/* Layout helpers */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #ffffff;
}

/* Hero */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  position: relative;
  min-height: 70vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background-color: #22c55e;
  color: #0b1120;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}

/* Typography */
h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #111827;
}

p {
  margin-bottom: 1rem;
}

/* Informations pratiques */
.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #111827;
}

/* FAQ / Accordéons */
.accordion {
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: #f9fafb;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}

.accordion-header:hover {
  background-color: #eef2ff;
}

.accordion-icon {
  font-weight: 700;
  font-size: 1.1rem;
  color: #4b5563;
  transition: transform 0.2s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background-color: #ffffff;
}

.accordion-panel p {
  padding: 0.75rem 1rem 1rem;
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* Footer */
.footer {
  padding: 1.5rem 0;
  background-color: #0f172a;
  color: #e5e7eb;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 3rem 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Fin styles.css */
