
/* Polices */

@font-face {

  font-family: 'MartelSansBlack';
  src: url('fonts/MartelSans-Black.ttf');

  font-family: 'MartelSansBold';
  src: url('fonts/MartelSans-Bold.ttf');

  font-family: 'MartelSansExtraBold';
  src: url('fonts/MartelSans-ExtraBold.ttf');

  font-family: 'MartelSansExtraLight';
  src: url('fonts/MartelSans-ExtraLight.ttf');

  font-family: 'MartelSansLight';
  src: url('fonts/MartelSans-Light.ttf');

  font-family: 'MartelSansSemiBold';
  src: url('fonts/MartelSans-SemiBold.ttf');

  font-family: 'MartelSansRegular';
  src: url('fonts/MartelSans-Regular.ttf');
}

/* reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* body */


html {
    font-size: 100%;
}

body {
    font-family: 'MartelSansRegular', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;   
}


/* destok form */
  h1 {
    font-size: 5em;
    line-height: 1.5;
    font-family: 'MartelSansBlack', sans-serif;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    
  }

  h2 {
    font-size: 3em;
    line-height: 1.5;
    font-family: 'MartelSansBold', sans-serif;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  h3 {
    font-size: 2.5em;
    line-height: 1.5;
    font-family: 'MartelSansRegular', sans-serif;
  }
  
  h4 {
    font-size: 1.5em;
    font-family: 'MartelSansBold', sans-serif;
    line-height: 1.5;
  }

  p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

  h5 {
    font-size: 1.5em;
    font-family: 'MartelSansBold', sans-serif;
  }

/* Tablette */

@media (max-width: 1280px) {
  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2.5em;
  }

   h3 {
    font-size: 2em;
  }
  h4 {
    font-size: 1.5em;
  }
  h5 {
    font-size: 1.2em;
  }

  p {
    font-size: 1rem;
  }

}

/* Mobile */
@media (max-width: 968px) {
  h1 {
    font-size: 2em !important;
  }
  h2 {
    font-size: 1.8em
  }
   h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.5em;
  }
  h5 {
    font-size: 1.2em;
  }
  p {
    font-size: 0.9rem;
  }
}

/* style sombre et clair*/
.stylesombre {
    background-color: #000;
    color: #fff;
  }

  .styleclair {
    background-color: #fff;
    color: #000;
  }

/* menu */

header {
    background-color: #88ff9a;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
    flex-wrap: wrap;
    position: relative;
    font-size: 24px;
    font-weight: bold;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    text-transform: none;
    margin: 0;
  }

  .logo a {
    text-decoration: none;
    color:#000;
  }
  
  .social-links-top {
    position: absolute;
    left: 2rem;
    top: 5rem;
    display: flex;
    height: 20px; 
    gap: 1rem;
  }
  
  .social-links-top a {
    color: #000;
    font-size: 1.6rem;
    text-decoration: none;
  }

  .social-icons {
    display: flex;
    gap: 1em;
    margin-top: 10px;
    justify-content: flex-end;
}

  
  nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  nav a {
    text-decoration: none;
    color: #000;
    font-size: 1.4rem;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #000;
  }

  header .logo,
  header nav.site-nav,
  header .social-icons {
    flex: 1 1 auto;
}
  header {
    flex-wrap: nowrap;
    gap: 1em;
    min-width: 300px;
}

/* burger masqué */

.burger {
  display: none; 
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

.burger img {
  width: 30px;
  height: auto;
}

/* burger démasqué */

@media (max-width: 1280px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
  }

  .burger {
    display: block;
    position: absolute;
    left: 20px;
    top: 10px;
  }

  nav.site-nav {
    display: none; 
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    display: none; 
  }
}

/* Menu Burger Overlay*/

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #88ff9a;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  padding: 1em;
}

.mobile-nav a {
  padding: 10px 0;
  color: #000;
  text-decoration: none;
}

.mobile-nav.open {
  display: flex;
}



/* style sombre*/
.stylesombre {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
  }

.stylesombre h1 {
    font-size: 3.5em;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}


.stylesombre h2 {
    font-size: 3em;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.stylesombre h3 {
    font-size: 2.5em;
    line-height: 1.5;
    font-weight: normal;
    text-align: left;
  }
  
  .stylesombre h4 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.5;
  }

  .stylesombre p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
  }

  .stylesombre h5 {
    font-size: 1.5em;
    font-weight: bold;
  }

/* Style clair*/

.styleclair {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 4rem 2rem;
  }

/* HERO  */
.hero-title {
    text-align: center;
    padding: 4em 2em;
}

.banniere-img {
  margin-bottom: 100px;
}

/* bouton */

.btn {
    background-color: #88ff9a;
    color: #000;
    padding: 0.3rem 2rem;
    border: none;
    border-radius: 2em;
    font-size: 1.6em;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5em;
    margin-bottom: 2em;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #fff;
    text-decoration: none;
  }

/* atout vert */

.atout {
    background-color: #88ff9a;
    color: #000;
    padding: 1.5em 1em;
    text-align: left;
  }
  
  .atout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1em;
    flex-wrap: wrap;
  }
  
  .box-atout {
    display: flex;
    align-items: center;
    flex: 1 1 300px;
    min-width: 280px;
    min-height: 150px;
    background: #88ff9a;
    padding: 1em;
  }
  
  .box-atout img {
    width: 150px;
    height: auto;
    margin-right: 1em;
  }
  
  .atout-text h3 {
    margin: 0;
    font-size: 1.2em;
  }
  
  .atout-text p {
    margin: 0.5em 0 0;
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

/* projets header */

.projets-header {
  background-color: #000;
  color: #fff;
  padding: 4em 2em 2em;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.white-line {
  border: none;
  border-top: 2px solid #fff;
  margin-bottom: 3em;
}

.projets-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 3em;
}

.projets-header-content h2 {
  font-size: 2.4em;
  text-align: left;
  flex: 1 1 40%;
  margin: 0;
}

.projets-header-content p {
  flex: 1 1 25%;
  text-align: right;
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin: 0;
}

.projets-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 50px;
}

/* projet header tablette */
@media (max-width: 1280px) {
  .projets-header {
    padding: 3em 1.5em 1.5em;
  }

  .projets-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }

  .projets-header-content h2 {
    font-size: 2em;
    text-align: left;
    width: 100%;
  }

  .projets-header-content p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
    text-align: left;
    width: 100%;
  }
}

/* projet header mobile */

@media (max-width: 968px) {
  .projets-header {
    padding: 2em 1em;
  }

  .projets-header-content h2 {
    font-size: 1.6em;
  }

  .projets-header-content p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }
}


/* projets */
.projets {
  padding: 2em 0 4em;
  background: #000;
  color: #fff;
}

.projets-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 0;
}

.projets-img {
  width: 400px;
  padding: 2em;
  box-sizing: border-box;
}

.projets-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.projets-text {
  width: 800px;
  padding: 2em 2em 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.projets-header {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-end;
  margin-bottom: 0.5em;
}

.projets-header h3 {
  font-size: 2.5em;
  line-height: 1.4;
  text-align: left;
  margin: 0;  
}

.projets-point h4,
.projets-point p {
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  text-align: left;
  margin: 0;
}

.projets-btn-container {
  align-self: flex-end;
}

.projets-btn {
  background-color: #88ff9a;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4em 3em;
  border: none;
  border-radius: 2em;
  font-size: 1.6em;
  cursor: pointer;
}

.projets-point {
  display: flex;
  gap: 1em;
  align-items: left;
}

.projets-point h3 {
  font-size: 2em;
  margin: 0;
  padding-top: 0.3em;
  min-width: 2em;
}

.projets-point h4 {
  margin: 0;
  font-size: 1.5em;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
}

.projets-point p {
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin-bottom: 10px;
}

.projets-line {
  border: none;
  border-top: 1px solid #fff;
  width: 100%;
  max-width: 800px;
  margin: 0;
}

/* projet tablette */

@media (max-width: 1280px) {
  .projets-container {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  .projets-img, .projets-text {
    width: 100%;
    padding: 1em 0;
  }

  .projets-header {
    align-items: flex-start;
  }

  .projets-header h3 {
    font-size: 2em;
    text-align: left;
  }

  .projets-point h3 {
    font-size: 1.5em;
  }

  .projets-point h4 {
    font-size: 1.2em;
  }

  .projets-point p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

  .projets-btn {
    font-size: 1.2em;
    padding: 0.3em 2em;
  }
}

/* projet mobile*/

@media (max-width: 968px) {
  .projets-header h3 {
    font-size: 1.6em;
  }

  .projets-point h3 {
    font-size: 1.2em;
  }

  .projets-point h4 {
    font-size: 1em;
  }

  .projets-point p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

  .projets-btn {
    font-size: 1em;
    padding: 0.4em 1.5em;
  }
}


/* projets CLAIR */
.projetsC {
  padding: 2em 0 4em;
  background: #fff;
  color: #000;
}

.projetsC-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 0;
}

.projetsC-img {
  width: 600px;
  padding: 2em;
  box-sizing: border-box;
}

.projetsC-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.projetsC-text {
  width: 600px;
  padding: 2em 2em 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.projetsC-header {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: right;
  margin-bottom: 0.5em;
}

.projetsC-header h3 {
  font-size: 2.5em;
  line-height: 1.4;
  text-align: left;
  margin: 0; 
  margin-bottom: 2em;
  margin-top:2em;
}

.projetsC-point h4,
.projetsC-point p {
  font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  text-align: left;
  margin: 0;
}

.projetsC-btn-container {
  align-self: flex-end;
}

.projetsC-btn {
  background-color: #88ff9a;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4em 3em;
  border: none;
  border-radius: 2em;
  font-size: 1.6em;
  cursor: pointer;
  margin-top: 2em;
}

.projetsC-point {
  display: flex;
  gap: 1em;
  align-items: left;
}

.projetsC-point h3 {
  font-size: 2em;
  margin: 0;
  padding-top: 0.3em;
  min-width: 2em;
}

.projetsC-point h4 {
  margin: 0;
  font-size: 1.5em;
  font-weight: bold;
  text-align: left;
  margin-top: 1rem;
}

.projetsC-point p {
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin-bottom:0.5rem;
}

.projetsC-line {
  border: none;
  border-top: 1px solid #000;
  width: 100%;
  max-width: 600px;
  margin: 0;
}


.centres-interet-box {
  border: 4px solid black;
  border-radius: 15px;
  padding: 1em;
  margin-bottom: 2em;
  background: radial-gradient(circle, #fff 70%, #eee);
  font-family: 'Martel Sans';
  width: 600px;
  padding: 2em;
  box-sizing: border-box;
  max-width: 600px;
}

.centres-interet-box h4,
.experience-box h4 {
  margin-top: 0;
  font-size: 1.4em;
}

.centres-interet-box ul,
.experience-box ul {
  padding-left: 1.2em;
  list-style-type: none;
  margin: 0;
}

.experience-box {
  background-color: #88ff9a;
  border-radius: 10px;
  padding: 1em;
  font-family: 'Martel Sans';
  max-width: 600px ;
}

.experience-box,
.centres-interet-box {
  align-self: flex-start;
}

.experience {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job {
  border-left: 3px solid #000;
  padding-left: 1rem;
  position: relative;
  text-align: left;
  margin-top: 2rem;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  margin-top: 2em;
}

.job-date {
  font-size: 0.9rem;
  color: #000;
  display: block;
  margin-top: 2rem;
}

.job-desc {
  font-size: 1rem;
  margin: 0.3rem 0 0;
  color: #000;
}

.experience .job {
  text-align: left;
}



/* projet CLAIR tablette */

@media (max-width: 1280px) {
  .projetsC-container {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  .projetsC-img, .projetsC-text {
    width: 100%;
    padding: 1em 0;
  }

  .projetsC-header {
    align-items: flex-start;
  }

  .projetsC-header h3 {
    font-size: 2em;
    text-align: left;
  }

  .projetsC-point h3 {
    font-size: 1.5em;
  }

  .projetsC-point h4 {
    font-size: 1.2em;
  }

  .projetsC-point p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

  .projetsC-btn {
    font-size: 1.2em;
    padding: 0.3em 2em;
  }
}

/* projet CLAIR mobile*/

@media (max-width: 968px) {
  .projetsC-header h3 {
    font-size: 1.6em;
  }

  .projetsC-point h3 {
    font-size: 1.2em;
  }

  .projetsC-point h4 {
    font-size: 1em;
  }

  .projetsC-point p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }

  .projetsC-btn {
    font-size: 1em;
    padding: 0.4em 1.5em;
  }
}

/* grille portfolio */

.portfolio {
  margin: 100px auto;
  padding: 2em 1em;
  max-width: 1200px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}


.creation {
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 2em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.creation:hover {
  transform: translateY(-5px);
}


.creation img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
}


.creation h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1em;
}


.btn-crea {
  background-color: #88ff9a;
  color: #000;
  padding: 0.5em 2em;
  border: none;
  border-radius: 2em;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-crea:hover {
  background-color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
  .creation img {
    height: 250px;
  }

  .btn-crea {
    width: 100%;
    font-size: 1em;
    padding: 0.8em;
  }
}

/* page contact */

body.forme-claire {
  background-color: #fff;
  color:#000;
}

.video-contact {
  width: 100%;     
  max-width: 500px;  
  height: auto;     
  display: block;
  margin: 0 auto;   
  border-radius: 10px; 
}

/* formulaire de contact */
.contact-formulaire {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4em 1em;
  background-color: #fff;
  align-items: center;
  margin-bottom: 7rem;
}

.form-container {
  max-width: 800px;
  width: 100%;
  border: 2px solid #000;
  border-radius: 2em;
  padding: 2em;
  background: white;
}

.form-container h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}

.form-container p {
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  text-align: center;
  margin-bottom: 2em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: 2px solid #000;
  border-radius: 1em;
  font-family: inherit;
  font-size: 1em;
}

.btn-contact {
  background-color: #88ff9a;
  color: #000;
  padding: 0.8em;
  border: none;
  border-radius: 2em;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-crea:hover {
  background-color: #fff;
  border: 2px solid #000;
}

/* Responsive */
@media (max-width: 968px) {
  .form-row {
    flex-direction: column;
  }
}

.contact-header {
  background-color: #fff;
  color: #000;
}


.contact-header {
  background-color: #fff;
  color: #000;
  padding: 4em 2em 2em;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.black-line {
  border: none;
  border-top: 2px solid #000;
  margin-bottom: 3em;
}

.contact-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 3em;
}

.contact-header-content2 p {
  
  text-align: left;
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin: 0;
}

.contact-header-content h2 {
  font-size: 2.4em;
  text-align: left;
  flex: 1 1 40%;
  margin: 0;
}

.contact-header-content p {
  flex: 1 1 25%;
  text-align: right;
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin: 0;
}

/* projet header tablette */
@media (max-width: 1280px) {
  .contact-header {
    padding: 3em 1.5em 1.5em;
  }

  .contact-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }

  .contact-header-content h2 {
    font-size: 2em;
    text-align: left;
    width: 100%;
  }

  .contact-header-content p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
    text-align: left;
    width: 100%;
  }
}

/* projet header mobile */

@media (max-width: 968px) {
  .contact-header {
    padding: 2em 1em;
  }

  .contact-header-content h2 {
    font-size: 1.6em;
  }

  .contact-header-content p {
    font-size:1em;
    line-height: 1.25;
    font-family: 'MartelSansLight', sans-serif;
  }
}

/* FAQ */

.faq-section {
  background: white;
  color: black;
  max-width: 800px;
  margin: 0 auto;
  padding: 3em 1em;
  font-family: 'Martel Sans', sans-serif;
  border: 2px solid black;
  border-radius: 20px;
  margin-bottom: 7em;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 1em;
}

.faq-item {
  margin-bottom: 1em;
  border-top: 1px solid black;
  padding-top: 1em;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0.5em 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
  padding-left: 1em;
}

.faq-item.open .faq-answer {
  max-height: 500px; 
}

/* Avis client */

.avis-clients {
  padding: 4em 2em;
  background-color: #fff;
  text-align: center;
  font-family: 'Martel Sans', sans-serif;
}

.avis-clients h2 {
  font-size: 2.5em;
  margin-bottom: 2em;
}

.avis-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.avis-box {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 1em;
  padding: 2em;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.avis-stars {
  color: #FFD700; 
  margin-bottom: 1em;
}

.avis-texte {
  font-style: italic;
  margin-bottom: 1em;
  color: #333;
}

.avis-nom {
  font-weight: bold;
  color: #000;
}

/* Responsive */
@media (max-width: 968px) {
  .avis-box {
    width: 100%;
  }
}

@media (max-width: 968px) {
  .form-container {
    padding: 1.5em;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    width: 100%;
  }
}

@media (max-width: 968px) {
  .form-container h2 {
    font-size: 1.5em;
  }

  .btn-contact {
    padding: 0.6em;
    font-size: 0.9em;
  }
}



/* contact bas de page */

.contact-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 3em 1em;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container h3 {
  font-size: 3em;
  margin-bottom: 1em;
  text-align: center;
}

.contact-container p {
  font-size:1em;
  line-height: 1.25;
  font-family: 'MartelSansLight', sans-serif;
  margin-bottom: 2em;
  text-align: center;
}

.contact-container img {
  width: 600px;
  max-width: 90%;
  margin: 0 auto 2em;
  display: block;
}

.contact-link {
  display: inline-block;
  font-size:1.5em;
  color:#000;
  text-decoration: underline;
  margin-bottom: 1.5em;
}


.contact-container a {
  text-align: center;
  font-size: 1.5em;
  color: #000;
  text-decoration:underline;
  margin-bottom: 1em;
  text-decoration: none;
} 

/* footer */
.footer {
  background-color: #88ff9a;
  color: #000;
  padding: 0;
  padding-bottom: 10px;
  font-size: 0.9rem;
  box-sizing: border-box;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0em;
}

.footer-section {
  flex: 1 1 100px;
  text-align: center;
}

.footer-brand h2 {
  font-size: 1.5em;
  margin-bottom: 0.1em;
}

.footer-links a {
  display: block;
  color: #000;
  text-decoration: none;
  margin: 0.25em 0;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a img {
  width: 30px;
  margin: 0 0.5em;
}

.footer-bottom {
  text-align: center;
  margin-top: 2em;
  font-size: 0.8rem;
  border-top: 1px solid #000;
  padding-top: 1em;
}

@media (max-width: 968px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }

  .footer-section {
    text-align: center;
    flex: 1 1 10px;
  }

  .footer-social a img {
    margin: 0 0.3em;
  }
}


/* responsive */

/* TABLETTE - max-width: 1024px */
@media screen and (max-width: 1280px) {
  body {
    font-size: 16px;
    padding: 0 20px;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* MOBILE - max-width: 600px */
@media screen and (max-width: 968px) {
  body {
    font-size: 14px;
    padding: 0 10px;
  }

  header {
    padding: 10px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }


  .section {
    padding: 30px 10px;
  }

  .banniere-img {
  margin-bottom: 50px;
  width: 100%;
}

  h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  h2 {
    font-size: 1.25rem;
    text-align: center;
  }

  .experience, .formation, .skills {
    flex-direction: column;
    gap: 20px;
  }

  .competence-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}


