:root {
  --color-primary: #ff6600;
  --color-bg: #ffffff;
  --color-dark: #000000;
  --color-light: #f9f9f9;
  --color-text: #111;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: #ff5900;
  z-index: -1;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-dark);
  padding: 20px 40px;
  position: relative;
  min-height: 160px;
  margin-left: 20px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--color-dark);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 10;
}

.dropdown-content a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1em;
}

.dropdown-content a:hover {
  background-color: #222;
  color: #ffd9b3;
}

.dropdown:hover .dropdown-content {
  display: block;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
}

nav a:hover {
  color: #ffd9b3;
}

.logo {
  height: 100px;
  cursor: pointer;
}

.nav-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.logo-centered {
  max-height: 140px;
  max-width: 200px;
}

main {
  flex: 1;
  padding: 120px 20px 80px;
  max-width: 1000px;
  margin: auto;
}

h1, h2, .section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 30px;
  position: relative;
}

h1::after, .section-title::after {
  content: '';
  display: block;
  height: 3px;
  background-color: var(--color-primary);
  margin: 10px auto 0;
  width: 60%;
  max-width: 300px;
  border-radius: 2px;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

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

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

/* Centrage image spécifique */
.image-centree {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 300px;
}

/* Formulaire */
.form-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 30px;
}

.btn {
  background-color: var(--color-primary);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #e65c00;
}

/* Footer */
.footer-nouvo {
  background-color: #000000;
  color: #ffffff;
  width: calc(100% - 20px);
  margin-left: 20px;
  padding: 40px 20px 30px 20px;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  border-top: 3px solid #ff6600;
}

.footer-bottom {
  text-align: center;
  font-size: 0.95em;
  color: #dddddd;
}

.footer-bottom a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo {
    height: 60px;
  }

  nav a {
    font-size: 0.9em;
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* Bloc texte + image centré */
.bloc-centre {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.bloc-centre img {
  max-width: 300px;
  margin: 0 auto 20px auto;
  display: block;
}

.bloc-centre p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-page main {
  width: 100%;
  max-width: none;
}
.text-description {
  text-align: center;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}
.logos-marques {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.logo-marque {
  height: 80px;         /* + grand qu’avant */
  max-width: 150px;     /* augmente aussi la largeur max */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-marque:hover {
  transform: scale(1.1);
}
.plus-encore {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

