/* ------------------------------
   RESET MODERNE
------------------------------ */
/* Remove default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Smooth font display */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Images responsive */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Buttons inherit font */
button,
input,
select,
textarea {
  font: inherit;
}

/* ------------------------------
   VARIABLES GLOBALES
------------------------------ */
:root {
  --font-base: "Montserrat", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --color-text: #222;
  --color-muted: #666;
  --color-bg: #fff;
  --color-primary: #afca0b;
  --color-secondary: #91989c;
  --container-width: 1600px;
  --spacing: 1rem;
}

/* ------------------------------
   TYPOGRAPHIE GLOBALE
------------------------------ */
body {
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4em;
}

p {
  margin-bottom: 1em;
  color: var(--color-text);
}

/* ------------------------------
   CONTENEURS & STRUCTURE
------------------------------ */
/* Max width wrapper */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.row {
  display: flex;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

/* Sections */
/* Centrer verticalement + horizontalement */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------
   BOUTONS
------------------------------ */
.button,
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease;
}

.button:hover,
.btn:hover {
  background: #005fcc;
}

/* ------------------------------
   UTILITAIRES
------------------------------ */
/* Marges */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

/* Padding */
.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 2rem;
}

/* Text helpers */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-muted);
}

/* Display */
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

/* Hide */
.hidden {
  display: none;
}

.vert {
  color: var(--color-primary);
}

.gris {
  color: var(--color-secondary);
}

/* ------------------------------
   DEBUG
------------------------------ */
.debug * {
  outline: 1px dashed rgba(255, 0, 0, 0.4);
}

/* ------------------------------
   Fonts
------------------------------ */
h1 {
  font-size: clamp(2rem, 5vw + 1rem, 5rem);
  text-transform: uppercase;
  color: white;
}

h2 {
  font-size: clamp(1.5rem, 3vw + 1rem, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw + 0.8rem, 2rem);
  color: var(--color-primary);
}

main h2 {
  margin-bottom: 60px;
}

h4 {
  text-transform: uppercase;
}

/* ------------------------------
   Barre Nav
------------------------------ */
.nav {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
}
.nav .row {
  align-items: center;
  justify-content: space-between;
}
.nav .row .col img.logo-principal {
  width: 200px;
  background: var(--color-text);
  padding: 20px;
}
.nav .row .col:last-of-type {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 576px) {
  .nav .row .col:last-of-type {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
}
.nav .row .col:last-of-type a {
  color: white;
  background-color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 40px;
  padding: 0 10px;
}
.nav .row .col:last-of-type a.lien-lang {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-left: 12px;
}
@media (max-width: 576px) {
  .nav .row .col:last-of-type a.lien-lang {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ------------------------------
   Header
------------------------------ */
header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  padding: 100px 0;
}
header video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(/images/placeholder-header.avif);
}
@media (max-width: 1024px) {
  header .container .row {
    flex-direction: column;
  }
}
header .container .row .col:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  header .container .row .col:first-of-type {
    width: 100%;
  }
}
header .container .row .col:first-of-type h2 {
  padding-top: 32px;
  border-top: 2px solid white;
}

/* ------------------------------
   Services
------------------------------ */
.services-mecaniques {
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .services-mecaniques {
    margin-top: 88px;
    margin-bottom: 88px;
  }
}
@media (max-width: 1024px) {
  .services-mecaniques .container .row:nth-of-type(2) {
    flex-direction: column;
  }
}
.services-mecaniques .container .row:nth-of-type(2) .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding-left: 100px;
}
@media (max-width: 1272px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    padding-top: 44px;
  }
}
@media (max-width: 767px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-mecaniques .container .row:nth-of-type(2) .grid .cel {
  background-color: rgb(248, 248, 248);
  border-radius: 22px;
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-text);
  box-shadow: 7px 7px 0px black;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid .cel {
    min-height: 150px;
  }
}
@media (max-width: 576px) {
  .services-mecaniques .container .row:nth-of-type(2) .grid .cel {
    min-height: auto;
  }
}
.services-mecaniques .container .row:nth-of-type(2) .grid .cel:hover {
  box-shadow: 7px 7px 0px var(--color-primary);
}

.services {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .services {
    padding: 88px 0;
  }
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type {
    flex-direction: column;
  }
}
.services .container .row:last-of-type .col:first-of-type {
  padding-right: 44px;
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type .col:first-of-type {
    padding-right: 0px;
  }
}
.services .container .row:last-of-type .col:last-of-type {
  padding-left: 44px;
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type .col:last-of-type {
    padding-left: 0px;
  }
}
.services .container .row:last-of-type .col.col-titre {
  width: 40%;
  position: relative;
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type .col.col-titre {
    width: 100%;
  }
}
.services .container .row:last-of-type .col.col-titre h3 {
  display: inline;
  background-color: white;
  padding: 6px 20px;
  position: absolute;
  top: -25px;
  left: 20px;
  max-width: 80%;
}
.services .container .row:last-of-type .col.col-titre img {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type .col.col-titre img {
    height: 250px;
    width: 100%;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.services .container .row:last-of-type .col:not(.col-titre) {
  width: 60%;
}
@media (max-width: 1024px) {
  .services .container .row:last-of-type .col:not(.col-titre) {
    width: 100%;
    margin-top: 44px;
  }
}
.services .container .row:last-of-type .col:not(.col-titre) ul li {
  font-size: clamp(1.2rem, 2vw + 0.8rem, 2rem);
  font-weight: 700;
  padding: 24px 0;
  border-bottom: 1px solid white;
}
@media (max-width: 576px) {
  .services .container .row:last-of-type .col:not(.col-titre) ul li {
    padding: 16px 0;
  }
}

.services-vente {
  background-color: var(--color-text);
  color: white;
}
.services-vente-2 {
  background-color: var(--color-primary);
  color: white;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .services-vente-2 {
    margin-bottom: 88px;
  }
}
@media (max-width: 1024px) {
  .services-vente-2 .container .row:last-of-type {
    flex-direction: column-reverse;
  }
}
.services-vente-2 .container .row:last-of-type .col.col-titre h3 {
  top: -44px;
  left: 64px;
  background-color: white;
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .services-vente-2 .container .row:last-of-type .col.col-titre h3 {
    left: 20px;
  }
}
.services-vente-2 .container .row:last-of-type .col ul li {
  border-bottom: 1px solid white !important;
}

.partenaires {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .partenaires {
    margin-bottom: 88px;
  }
}
.partenaires .container .row:last-of-type .col {
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .partenaires .container .row:last-of-type .col {
    flex-direction: column;
  }
}
.partenaires .container .row:last-of-type .col .partenaire {
  max-height: 100px;
  height: 100%;
  padding: 8px;
  flex: 1;
}
.partenaires .container .row:last-of-type .col .partenaire img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ------------------------------
   Footer
------------------------------ */
footer {
  margin-bottom: 20px;
}
footer .container .row {
  background-color: var(--color-text);
  border-radius: 22px;
  padding: 88px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .container .row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .container .row .col img {
  width: 200px;
  margin-bottom: 32px;
}
footer .container .row .col p {
  color: white;
  text-align: center;
}/*# sourceMappingURL=styles.css.map */