/* GENERAL */

*
{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Fashion Fetish';
    src: url('fonts/Fashion Fetish.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
body
{
    font-family: Arial,sans-serif;
    font-size: 15px;
}
h1, h2,h3,h4
{
  color: #000;
}
h1
{
    font-family: 'Fashion Fetish', serif;
    font-size: 45px;
}
h2
{
    font-size: 55px;
    color: #8CBE22;
}
h2 span
{
  font-family: 'Fashion Fetish';
}
h3
{
    font-size: 30px;
}
h4
{
    font-size: 24px;
}
p
{
    line-height: 20px;
    color: #777;
}
ul
{
    list-style: none;
}
a
{
    text-decoration: none;
    color: #000;
}
.bloc
{
    width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.wrapper
{
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}
.clear
{
    clear: both;
}
small
{
    font-size: 13px;
    font-style:italic;
}

/* HEADER */

header
{
    height: 145px;
}
header h1
{
    float: left;
    margin-top: 32px;
}
header nav
{
    float: right;
    margin-top: 60px;
}
header nav ul li
{
    float:left;
    display: inline-block;
}
header nav ul li a
{
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
    color: #56422D;
}

/* MAIN IMAGE */

#main-image
{
    height: 700px;
    background: url('images/fond.jpg') center;
}
#main-image h2
{
    font-weight: normal;
    text-align: center;
    padding: 150px 0 40px 0;
    margin-bottom: 20px;
}
.button-1
{
    display: block;
    width: 120px;
    height: 50px;
    background: #8CBE22;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius:  3px;
}
.button-1:hover
{
     background: #0AA8C0;
}

/* STEPS */

#steps ul
{
    margin: 80px 0;
}
#steps ul li
{
    width: 300px;
    float:left;
    padding-top: 140px;
    text-align: center;
    margin-right: 10px;

}
#steps h4
{
    text-transform: uppercase;
    margin-bottom: 20px;
}
#steps p
{
    margin-bottom: 20px;
}
#step-1
{
    background: url('images/steps-icon-1.png') no-repeat top center;
}
#step-2
{
    background: url('images/steps-icon-2.png') no-repeat top center;

}
#step-3
{
    background: url('images/steps-icon-3.png') no-repeat top center;
}


/* POSSIBILITIES */


#possibilities
{
    background-color: #efefef;
    padding:  60px 0;
}
#possibilities article
{
    width: 460px;
    height: 270px;
    float: left;
    border-radius: 10px;
}
#possibilities article:first-child
{
    margin-right: 20px;
}
.overlay
{
    background: rgba(255,255,255, 0.80);
    height: 270px;
    width: 190px;
    padding: 20px;
    float: left;
    border-radius: 10px 0 0 10px;
    text-align: center;
    box-sizing: border-box;
}
article h4
{
    border-bottom:  1px solid #ddd;
    padding-bottom: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
#possibilities p
{
    text-align: center;
    margin-bottom: 20px;
}
.button-2
{
    color: #fff;
    background-color: #8CBE22;
    padding: 6px 20px;
    border-radius: 3px;
}
.button-2:hover
{
    color: #fff;
    background-color: #0AA8C0;
}



/* CONTACT */

#contact
{
    padding: 60px 0;
    text-align: center;
}
#contact h3
{
    width: 400px;
    text-transform: uppercase;
    margin: 0 auto 20px auto;
    border-bottom:  1px solid #02b8dd;
    padding-bottom: 20px;
}

/* FORMULAIRE */

/*form
{
    margin: 60px 0 20px 0;
}*/
/*label
{
  display: inline-block;
  width: 90px;
  text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    color: #777;
}*/


.button-3
{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 11px;
    background-color: #8CBE22;
    border-style: none;
    border-radius: 3px;
}
.button-3:hover
{
    color: #fff;
    background-color: #0AA8C0;
}


form {
  /* Pour le centrer dans la page */
  margin: 0 auto;
  width: 400px;

  /* Pour voir les limites du formulaire */
  padding: 1em;
  border: 1px solid #CCC;
  border-radius: 1em;
}

#formulaire div {
  margin-top: 1em;
  margin-left: 3em;
}

label {
  /* Afin de s'assurer que toutes les étiquettes aient la même dimension et soient alignées correctement */
  display: inline-block;
  width: 90px;
  text-align: left;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    color: #777;

}

input, textarea {
  /* Afin de s'assurer que tous les champs textuels utilisent la même police
     Par défaut, textarea utilise une police à espacement constant */
  font: 1em sans-serif;

  /* Pour donner la même dimension à tous les champs textuels */
  width: 300px;

  -moz-box-sizing: border-box;
       box-sizing: border-box;

  /* Pour harmoniser l'apparence des bordures des champs textuels */
  border: 1px solid #999;

  padding:10px;
  font-size: 20px;
  margin-right: 20px;
  border: 2px solid #ddd;
  border-radius: 3px;
}

input:focus, textarea:focus {
  /* Afin de réhausser les éléments actifs */
  border-color: #02b8dd;
}

textarea {
  /* Pour aligner correctement les champs multilignes et leurs étiquettes */
  vertical-align: top;

  /* Pour donner assez d'espace pour entrer du texte */
  height: 5em;

  /* Pour permettre aux utilisateurs de redimensionner un champ textuel horizontalement
     Cela ne marche pas avec tous les navigateurs  */
  resize: vertical;


}

.button {
  /* Pour positionner les boutons de la même manière que les champs textuels */
  padding-left: 90px; /* même dimension que les étiquettes */
}

  /* Cette marge représente approximativement le même espace
     que celui entre les étiquettes et les champs textuels */
  margin-left: 5em;
}
/* FOOTER */

footer
{
    height: 260px;
    background-color: #white;
}
footer h1
{
    color:#8CBE22;
    text-align: center;
    padding-top: 10px;
}
.adresse
{
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    color: #777;
}

.copyright
{
    text-align: center;
    font-weight: bold;
    padding-top: 30px;
    color: #777;
}
