/* 🌙 STYLE GLOBAL */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background-color: #000;
  color: #f4f4f4;
  text-align: center;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: linear-gradient(to bottom, #0a0a0a, #111);
  padding: 25px 20px;
  border-bottom: 2px solid #e36a0a;
}

.bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ✅ Logo corrigé responsive */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 180px;
  height: auto;              /* <-- garde les proportions */
  max-width: 60vw;           /* <-- s’adapte sur mobile */
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e36a0a;
}

/* TITRE ENTREPRISE */
.company {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin: 10px 0 5px 0;
}

.company span {
  color: #e36a0a;
}

.tag {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 10px;
}

/* NAVIGATION */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav a {
  color: white;
  text-decoration: none;
  border: 1px solid #555;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav a:hover {
  background-color: #e36a0a;
  border-color: #e36a0a;
  color: white;
}

/* SECTIONS */
main section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

h2 {
  color: #e36a0a;
  font-size: 1.8rem;
}

.underline {
  width: 60px;
  height: 3px;
  background: #e36a0a;
  display: block;
  margin: 10px auto 30px;
  border-radius: 10px;
}

/* CARTES SERVICES */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #111;
  border: 1px solid #e36a0a;
  border-radius: 12px;
  width: 360px;
  padding: 20px;
  transition: all 0.3s ease;
}

.card:hover {
  background-color: #1a1a1a;
  transform: translateY(-5px);
}

.summary {
  font-weight: bold;
  margin-bottom: 10px;
}

.orange .summary {
  color: #e36a0a;
}

.red .summary {
  color: #ff4a4a;
}

/* AVIS */
.testimonials blockquote {
  background-color: #111;
  border-left: 4px solid #e36a0a;
  margin: 20px auto;
  padding: 20px;
  font-style: italic;
  max-width: 700px;
  border-radius: 8px;
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

/* CONTACT */
.cta .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.red {
  background-color: #ff4a4a;
}

.btn.orange {
  background-color: #e36a0a;
}

.btn.ghost {
  border: 1px solid #e36a0a;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hotline {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #fff;
}

/* FOOTER */
.footer {
  background-color: #0a0a0a;
  padding: 30px 10px;
  border-top: 2px solid #e36a0a;
}

.footer-info p {
  margin: 5px 0;
  color: #ccc;
}

.copy {
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
}

/* 🎯 RESPONSIVE */
@media (max-width: 768px) {
  .bar {
    flex-direction: column;
  }

  .company {
    font-size: 1.5rem;
  }

  .card {
    width: 90%;
  }

  .logo {
    width: 140px;
    height: auto;          /* <-- empêche l’allongement */
    max-width: 70vw;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
    height: auto;
  }

  .company {
    font-size: 1.3rem;
  }

  .tag {
    font-size: 0.9rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}
