/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  margin-top: auto;
}

/* ===== HEADER ===== */
header {
  background: #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #00BFA5;
  border-radius: 2px;
}

/* ===== MENU NAV ===== */
#nav-menu {
  display: none;
  background: #111;
  padding: 10px 0;
}

#nav-menu ul {
  list-style: none;
}

#nav-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid #222;
}

#nav-menu ul li a:hover {
  color: #00BFA5;
}

#nav-menu.open {
  display: block;
}

/* ===== HERO ===== */
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  padding: 50px 24px;
  text-align: center;
}

.hero-sub {
  color: #00BFA5;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-desc {
  color: #ddd;
  font-size: 20px;
  margin-bottom: 24px;
}

.btn-hero {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 8px;
  border: 2px solid #fff;
  text-decoration: none;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.btn-hero:hover {
  background: #fff;
  color: #1A1A1A;
}

.btn-hero-action {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  border: 2px solid #fff;
  text-decoration: none;
}

.btn-hero-action:hover {
  background: #fff;
  color: #1A1A1A;
}
.hero-horaires {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 12px 20px;
}

.hero-horaires span {
  color: #ddd;
  font-size: 12px;
}
.hero-horaires {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 10px 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BANDEAU ===== */
.bandeau {
  background: linear-gradient(135deg, #00BFA5, #00897B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 191, 165, 0.4);
  text-align: center;
}

.bandeau::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.bandeau-titre-fixe {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

#bandeau-texte {
  color: #e0f7f4;
  font-size: 25px;
  font-weight: 500;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.bandeau-scooter {
  display: inline-block;
  font-size: 50px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-10deg); }
}
/* ===== FOOTER ===== */
footer {
  background: #1A1A1A;
  padding: 24px 20px;
  margin-top: 0;
}

.footer-inner p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.9;
}

.footer-inner .copyright {
  color: #555;
  font-size: 11px;
  margin-top: 10px;
}

/* ===== SECTION ARRIVEES ===== */
.section-arrivees {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.section-arrivees h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card-nom {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

.card-etat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.card-etat.neuf {
  background: #e6f9f6;
  color: #007a68;
}

.card-etat.recond {
  background: #fff8e6;
  color: #a07000;
}

/* ===== SECTION SERVICES (accueil) ===== */
.section-services {
  padding: 40px 20px;
  text-align: center;
  background: #f4f4f4;
}

.section-services h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.section-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  border: 2px solid #00BFA5;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
}

.service-titre {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: #666;
}

/* ===== SECTION CTA ===== */
.section-cta {
  background: #1A1A1A;
  text-align: center;
  padding: 20px;
}

.section-cta h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.btn-cta {
  display: inline-block;
  background: #00BFA5;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-cta:hover {
  background: #009e88;
}

/* ===== CATALOGUE ===== */
.catalogue-main {
  padding: 32px 20px;
  background: #f4f4f4;
  min-height: 60vh;
}

.catalogue-titre {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 24px;
}

.filtres {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.filtre {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}

.filtre:hover {
  border-color: #00BFA5;
  color: #00BFA5;
}

.filtre.actif {
  background: #00BFA5;
  border-color: #00BFA5;
  color: #fff;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ===== SERVICES (page services.php) ===== */
.services-main {
  padding: 32px 20px;
  background: #f4f4f4;
}

.services-titre {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 8px;
}

.services-sous-titre {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 32px;
}

.services-main .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.service-detail-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.service-detail-card.featured {
  border: 2px solid #00BFA5;
  background: #f0fdf9;
}

.service-icone {
  width: 40px;
  height: 40px;
}

.service-icone svg {
  width: 100%;
  height: 100%;
}

.service-detail-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
}

.service-detail-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  margin-top: 8px;
  background: #00BFA5;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
}

/* ===== CONTACT ===== */
.contact-main {
  padding: 32px 20px;
  background: #f4f4f4;
}

.contact-titre {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 28px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #1A1A1A;
  background: #fafafa;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00BFA5;
  background: #fff;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.btn-envoyer {
  width: 100%;
  background: #00BFA5;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-envoyer:hover {
  background: #009e88;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-coordonnees,
.contact-horaires {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
}

.contact-coordonnees h3,
.contact-horaires h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 14px;
}

.contact-coordonnees p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

.horaire-ligne {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  padding: 8px 0;
  border-bottom: 0.5px solid #f0f0f0;
}

.horaire-ligne:last-child {
  border-bottom: none;
}

.horaire-ligne span:first-child {
  font-weight: 600;
  color: #1A1A1A;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
}

.instagram-link i {
  font-size: 15px;
  color: #555;
}

.instagram-link:hover {
  color: #00BFA5;
}

.instagram-link:hover {
  text-decoration: underline;
}

/* ===== ALERTES ===== */
.alert-succes {
  background: #e6f9f6;
  color: #007a68;
  border: 1px solid #00BFA5;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.alert-erreur {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #e74c3c;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TARIFS ===== */
.tarifs-main {
  padding: 32px 20px;
  background: #f4f4f4;
}

.tarifs-titre {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 8px;
}

.tarifs-sous-titre {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 32px;
}

.tarifs-section {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tarifs-section-titre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.tarifs-section-titre svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}

.tarifs-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}

.tarifs-table tbody tr {
  border-bottom: 0.5px solid #f0f0f0;
}

.tarifs-table tbody tr:last-child {
  border-bottom: none;
}

.tarifs-table tbody td {
  padding: 12px 0;
  font-size: 14px;
  color: #1A1A1A;
}

.tarifs-table tbody td:last-child {
  font-weight: 700;
  color: #00BFA5;
  text-align: right;
}

.tarifs-note {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  line-height: 1.5;
}

.tarifs-info {
  font-size: 12px;
  color: #888;
  background: #f9f9f9;
  border-left: 3px solid #00BFA5;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
  line-height: 1.6;
}

.catalogue-main, .services-main, .tarifs-main, .contact-main {
  min-height: calc(100vh - 200px);
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {

  .logo span {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .produits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-services .services-grid,
  .services-main .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .filtres {
    gap: 8px;
  }

  .filtre {
    font-size: 12px;
    padding: 6px 12px;
  }

  .footer-inner p {
    font-size: 12px;
  }
}
