/* FONTS */
@font-face{
    font-family: PleaseWriteMeaSong;
    src: url("../fonts/Please write me a song.ttf") format("truetype");
}
@font-face{
    font-family: BeyondInfinity;
    src: url("../fonts/Beyond Infinity - Demo.ttf") format("truetype");
}
@font-face{
    font-family: Montserrat;
    src: url("../fonts/Montserrat-Light.ttf") format("truetype");
}
@font-face{
    font-family: GeosansLight;
    src: url("../fonts/GeosansLight.ttf") format("truetype");
}

html, body{
    height: 100%;
    width: 100%;
    overflow: hidden; /* Hide scrollbars */
    margin: 0;
}

/* HEADER */
#div-header{
    display: flex;
    flex-direction: row;
    height:80px;
    background-color: white;
    border-bottom: solid;
    border-bottom-width: 1px;
}

#div-header a{
    text-decoration: none;
    color: black;
}

/* LOGO FROUX PHOTOGRAPHY */
h1{
    position:relative;
    width: 110px;
    height:87px;
    font-weight: normal;
    padding-left: 60px;
    margin-top:5px;
}

h2{
    font-family: Montserrat;
    letter-spacing: 3px;
    padding-top:50px;
}

hr{
    height: 1px;
    background-color: lightgrey;
    border: none;
}

#text-froux{
    font-size: 60px;
    font-family: BeyondInfinity;
    margin-left: -20px;
}
#text-red{
    position: absolute;
    font-size: 60px;
    font-family: BeyondInfinity;
    transition: color 1s;
}

#text-photography{
    position:absolute;
    font-size: 11px;
    font-family: Montserrat;
    margin-top: 50px;
    margin-left: -65px;
    letter-spacing: 2px;
}

h1:hover #text-red{
    color:red;
}

/* MENU */
#menu-nav{
    width: 100%;
    height: 100%;
}

#menu-ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:baseline;
    list-style: none;
    max-width: 650px;
    margin: auto;
    padding-top:45px;
}

.categorie{
    font-family: PleaseWriteMeaSong;
    font-weight: bold;
    font-size:15px;
    letter-spacing: 2px;
    opacity:0.5;
    transition: opacity 0.35s;
    color:inherit;
    text-decoration: none;
}

.categorie:hover, .categorie.active{
    opacity:1;
}

/* RESEAUX SOCIAUX */

#table-reseaux{
    position: fixed;
    width: 100%;
}

.table-reseaux-milieu{
    width: 400px;
    border-bottom: solid;
    border-bottom-width: 1px;
    border-bottom-color: lightgrey;
    text-align: center;
}

.table-reseaux-milieu a + a{ /* n'agit que sur les <a> précédés de <a> (donc pas la premiere) dans la baslise de classe table-reseaux-milieu */
    margin-left: 15px;
}

.reseaux-sociaux-logos{
    opacity:0.5;
    transition: opacity 0.35s;
}

.reseaux-sociaux-logos:hover{
    opacity:1;
}

#table-reseaux img{
    width:20px;
}

#div-accueil{
    display: flex;
    flex-direction: row;
    float: right;
}

#contact{
    margin-right: 45px;
    padding-top: 10px; /* 38px */
    opacity:0.5;
    transition: opacity 0.35s;
}

#span-logo{
    padding-left: 40px;
}

#home-logo{
    width:35px;
    height:35px;
    margin-right: 5px;
    opacity:0.5;
    transition: opacity 0.35s;
    vertical-align: middle;
}

#contact-a{
    font-family: PleaseWriteMeaSong;
    font-weight: bold;
    font-size:15px;
    letter-spacing: 2px;
    color:inherit;
    text-decoration: none;
    vertical-align: middle;
}

#contact:hover, #contact.active{
    opacity:1;
}

/* CORPS DE LA PAGE */
#div-corps{
    height: 100%;
    width: 100%;
    background-color: #f5f4f3;
    background-position: center;
    background-size: cover;
}

#voile-blanc{
    height: 100%;
    width: 100%;
    background-color: #f5f4f3;
    opacity: 0.75;
    transition: opacity 2.5s;
}

#div-galerie{
    position: fixed;
    width: 100%;
    margin:0 auto;
    text-align: center;
    top: 81px;
    bottom: 21px;   /*bottom: 25px;*/
    padding-bottom: 25px; /* padding-bottom: 25px;*/
    overflow-x: hidden; /*"overflow: auto;"*/
}

/* STYLE PHOTOS */

.photo-grid{
    display: inline-block;
    width: 300px;
    height: 300px;
    margin: 0px;
    overflow: hidden;
    /*margin-bottom: -4px;*/
    margin-right: 4px;
}

.image-link{
    height: inherit;
    width: inherit;
}


.photo-grid img{
    height: inherit;
    width: inherit;
    object-fit: cover;
    display: none;
    transition: transform 0.4s;
}

.photo-grid:hover img{
    transform: scale(1.15);
    transition: transform 0.4s;
}

/* CAPTION MINIATURE */

.caption-miniature {
    position: absolute;
    z-index: 10;
    width: inherit;
    background-color: rgba(0,0,0,0.5);
    font-family: GeosansLight;
    color: white;
    opacity: 0;
    margin-top: 164px;
    transition: opacity 0.5s, margin-top 0.5s;
}

.photo-grid:hover .caption-miniature {
    opacity: 1;
    margin-top: 214px;
    transition-duration: 0.35s;
}

/* CONTACT - ACCUEIL */

.texts-accueil{
    font-family: GeosansLight;
}

/* CAROUSEL */

#div-block-slideshow{
    background-color: #f5f4f3;
    width:100%;
}

/* PRESENTATION */
#div-block-presentation{
    background-color: #f5f4f3;
    padding-bottom: 50px;
    padding-top: 50px;
}

#div-text-presentation{
    padding-right: 50px;
    text-align: justify;
}

#div-presentation{
    position:relative;
    display: flex;
    flex-direction: row;
    max-width: 1100px; /* Largeur du block presentation */
    margin: 0 auto;
    margin-top: 50px;
}

#photo-froux{
    position: relative;
    display: inline-block;
    border-style: solid;
    border-width: 1px;
    max-width: 400px;
    max-height: 504px;
}

/* PRESTATIONS */
#div-block-prestations{
    background-color: #ebe9e8;
    padding-bottom: 50px;
}

#table-prestations{
    width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
    margin-bottom: 40px;
}


#infosignature{
    width: 15px;
    height: 15px;
    margin-left: 5px;
    margin-bottom: -3px;
    opacity: 0.25;
    transition: opacity 0.4s;
    cursor: none;
}

#infosignature:hover{
    opacity: 0.6;
    transition-duration: 0.35s;
    cursor: pointer;
}

#exemple-reference{
    z-index: 19;
}

#exemplesignature{
    position: absolute;
    z-index: 20;
    margin-top:-180px;
    margin-left: 225px;
    opacity: 0;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    pointer-events: none;
    transition: opacity 0.5s, margin-left 0.5s;
}

#span-infosignature:hover #exemplesignature{
    opacity: 1;
    margin-left: 100px;
    transition-duration: 0.5s;
}

#table-prestations-description td{
    background: #e5e0dd;
    vertical-align: top;
    padding-top: 50px;
    border-radius: 15px;
    cursor: pointer;
    height: auto;
    padding-bottom: 35px;
    transition: all 0.5s linear;
}

#table-prestations-description td:hover{
    background: #d8d3d0;
}

#table-prestations-text{
    width: 100%;
}

#table-prestations h3{
    margin-top: -10px;
    color: black;
    opacity: 0.75;
}

#table-prestations h4{
    margin-top: -20px;
    color: black;
    opacity: 0.75;
}

#table-prestations div{
    width: 250px;
    text-align: justify;
    margin: auto;
    padding-top: 10px;
}

#liste-impression li{
    list-style: none;
    padding-left: 25px;
}

.presta-text-taille1 {
    height: 151px;
}

.presta-text-taille2 {
    height: 130px;
}

.icone-presta-info {
    width: 150px;
    height: 30px;
    border: 1px solid #908d8b;
    border-radius: 10px;
    color: black;
    font-size: 18px;
}

.icone-presta-info span {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

.text-centered {
  text-align: center;
}

.text-justified {
  text-align: justify;
}

/* MATERIEL */
#div-block-materiel{
    background-color: #f5f4f3;
    padding-bottom: 50px;
}

#table-materiel{
    width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    margin-bottom: 75px;
}

tr.table-materiel-row{
    vertical-align: top;
}

td.table-materiel-row{
    width: 350px;
}

.table-materiel-row li{
    list-style: circle;
}

#div-block-howto{
    background-color: #ebe9e8;
    padding-bottom: 50px;
}

/* HOW TO */
#table-howto{
    width: 1688px;
    margin: 0 auto;
    padding-top: 40px;
    margin-bottom: 75px;
}

.howto-img{
    opacity: 50%;
    transition: all 0.5s linear;
}

.howto-img:hover{
    opacity: 100%;
}

/* INSTAGRAM */
#div-block-instagram{
    background-color: #f5f4f3;
    padding-bottom: 10px;
}

/* FOOTER */
#div-footer{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:20px;
    background-color: white;
    border-top: solid;
    border-top-width: 1px;
}

#copyright{
    padding-top: 3px;
    width:100%;
    font-size: 12px;
    font-family: Montserrat;
    display:inline-block;
    text-align: center;
}