*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
    height: auto;
    margin: 0;
    display: flex;
    justify-content:center;
    font-family: 'Montserrat', sans-serif;
}

.structureglobale{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70vw;
 }

 header {
  font-weight: 300;
  font-size: 20px;
  margin: 0;
  color: #2c3e50; /* une couleur élégante, bleu foncé/gris */
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

header p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    background-color: black;
    color: white;
    width: 80vw;
    margin-bottom: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: space-between; 
    padding-left : 10%;
    padding-right : 10%;

}

.menupresentation,
.menucompetences,
.menuceclairagesjuridiques,
.menucpresse,
.menuhonoraires,
.menucontact,
.menurdv {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 500;                      /* semi-gras */
    letter-spacing: 1px;                   /* espacement entre les lettres */
    transition: color 0.3s ease;           /* effet fluide au survol */
    cursor: pointer;                       /* curseur main */
    display: flex;
}

.menupresentation{
    margin-left: 120px;
}
.menurdv {
  margin-right: 0px;
  color: #C28840;      /* doré classique */
  background-color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menurdv:hover {
  color: #D4A556; /* doré plus doux */
  text-shadow: 0 0 5px #D4A556;
}

.menu li:not(.menurdv):hover {
    color: #C28840;
}

main {
  border-top: 1.5px solid #C28840; /* ligne fine, noire et discrète */
  width: 70vw;
  display: flex;
  border-bottom: 1.5px solid #C28840;
  padding-bottom: 10px;
}

.maphoto {
    width: 550px; /* ou un pourcentage ou max-width */
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-left: 0px;
}

.logo{
     width: 275px; /* ou un pourcentage ou max-width */
    height: auto;
}

.texte{
    margin-top: 20px;
    margin-left: 100px;
    column-gap: 40px; /* espace entre les colonnes */
    text-align: justify;
    width: auto;
    letter-spacing: 0.2px;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
}

.monnom{
      font-weight: 700;      /* un peu plus gras */
      margin-bottom: 0px;
    margin-top: 30px;
    margin-left: 100px;
    line-height: 1.6;
}

.avocat{
   font-weight: 600;      /* un peu moins que monnom */
   margin-top: 0px;
   margin-left: 100px;
    margin-bottom: 20px;  
    line-height: 1.6; /* espace sous le titre */
    }

.bloctexte{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.blocphoto{
    margin-left: 0px;
}

.Titrepresentation{
margin-left: 0px;
margin-bottom: 15px;
font-size: 20px;                       /* texte plus grand */                      /* semi-gras */
font-weight: 500;
    letter-spacing: 1.2px;
    color: #C28840;
}

footer{
    font-size: 11px;
    display: block;
    justify-content: center;
    
}

footer p{
    margin-top: 10px;
    justify-content: center;
}

footer span{
    transition: color 0.3s ease;           /* effet fluide au survol */
    cursor: pointer;
    justify-content: center;
} 

footer span:hover{
    color:#C28840;
}

@media (max-width: 1200px) {
  main {
    flex-direction: column;
    align-items: center;
  }
}