
* {
    color:#333;
    font-family: 'Raleway', 'Arial', sans-serif;
}

body {
    position: relative; /* Pr scrollspy */
}

a {
    color:cornflowerblue;
}


section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Titres en bleu */
h1 {
    padding-top: 30px;
    text-align: center;
    margin-bottom: 25px;
    color: cornflowerblue;
    font-family: 'Lobster', 'Arial', sans-serif;
}

h2 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

h3 {
    font-size: 1.1rem;
    margin-top:15px;
    font-weight: 600;
}
/************************************
            Landing page
************************************/


#accueil {
    height:90vh;
    background: url('../images/Galerie_photo/IMG_8671.jpg');
    background-repeat: no-repeat;
  background-position:center 60%;
    background-size: cover;
}
#accueil h1 {
    color:#333;
    color: white;
    font-size: 80px;
    padding-top: 10vh;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}


#callToAction {
    position:absolute;
    z-index: 999;
    margin-top:80vh;
    margin-left:50vw;
    color:white;
}

#callToAction a {
    display: inline-block;
    color:white;
    animation-name: scroll-bump;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count:infinite;
    transition: cubic-bezier(.01,1,0,.94);
}
#callToAction a:hover{
    animation-play-state:paused;
    opacity: 1 !important;
    transition: .3s ease;
}
.fa-angle-down {
    color: white;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);

}

.fa-angle-down:hover {
    transform: scale(1.1);
}
@keyframes scroll-bump {
    0%{margin-top: 0px; opacity: 0}
    25%{margin-top: -10px; opacity: 1}
    75%{margin-top: -10px; opacity: 1}
    100%{margin-top: 0px; opacity: 0}
}

/*********************************
        Galerie et photos
*********************************/
/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */
.grid-sizer,
.grid-item {
  width: 20%;
}

.grid-item {
  float: left;
  padding:5px;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}
.image:hover {
    transform: scale(1.05);
}


img { 
    border-radius: 5px;
 }

/*#neige {
    max-height: 260px;
}*/

/*********************************
              Navbar
*********************************/
.navbar {
    border-bottom: 1px solid lightgray;

}
.navbar-expand-md .navbar-nav .nav-link {
    color:rgba(51,51,51,0.9);
    font-weight: 600;
}

.nav-item.active a, .nav-item:focus a, .nav-item:hover a, .nav-link.active{
    color:cornflowerblue!important;
    font-weight: bold;
}

/**********************************
                Autre 
*********************************/

footer {
    background-color: white;
    border-top:1px solid lightgray;
}


.hideme{
  opacity:0;
}

.fade-in {
    -webkit-animation: fade-in 1.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in 1.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@media all and (max-width: 678px) {
    .grid-sizer, .grid-item {
        width: 100%;
    }
    #accueil h1 {
        font-size: 50px;
    }
    #accueil {
        background-position: bottom;
    }
}
@media all and (max-width: 576px) {
    .image:hover {
        transform: none;
    }
}