/*-------------------------------------------------------------------*/
/*---------------  code CSS du site manolis.fr  page "index.html"    */
/*-------------------------------------------------------------------*/
/* Auteur : Manuel MILLET  */
/* Date  05 juillet 2023 19h00  */
/*-------------------------------------------------------------------*/
/*---------------  GLOBAL  summary  ---------------------------------*/
/*
/* Part I Custom CSS
/* Layout */
/* Text  */
/* Appearance  */
/* Animation  */
/* CSS Variables  */
/* Grid */
/* Flex*/
/* Table */
/* Generated content */
/* Other  */
/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------*/
/*-- GLOBAL Custom CSS ---*/
/*-------------------------------------------------------------------*/
/* body and typo   */
body {
	background-color: black;
    background-image : url("../images/space-walker.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 45px;
    font-weight: bold;
    margin: 12px 0 0 25px;
}
h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0 0 25px;
}
h3 {
    font-size: 28px;
    font-weight: bold;
    margin-left: 25px;
}
h4 {
	  font-size: 20px;	
    margin: 10px 0 0 25px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
    font-size: 100%;
    margin: 12px 0 0 25px;
}
span {
    font-size: 70%;
    line-height: 1.5em !important;
    margin: 5px 0 10px 0;        
}
a {
    text-decoration: none;
    color: black;
}
a:hover {
    color:#0065fc;
}
img {
    width: 100%;
    height: auto;
}
ol, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/* GLOBAL class for all page */
/*-------------------------------------------------------------*/
/*---------------  LAYOUT  ------------------------------------*/
/*-------------------------------------------------------------*/
/*   header         */
/*-------------------------------------------------------------*/
#hero-title {
    background-color: transparent;
    color:white;
    text-align: center;
}
#hero-title h1 {
    font-size: 64px;
    margin: 380px 0 100px 0;
}
#hero-title p {
    font-size: 30px;
}
/*-------------------------------------------------------------*/
/*   nav                                                       */
/*-------------------------------------------------------------*/
.bg-trs {
    background-color: transparent !important;
}
#navbarTogglerDemo02 ul li a:hover {
    background-color: white;
    color: black !important;
}
.navbar-nav .nav-link.active {
    background-color: #888;
}
/*-------------------------------------------------------------*/
/*   sections                                                  */
/*-------------------------------------------------------------*/
/*  section logo                                               */
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/*   aside          */
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/*   article        */
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/*   footer         */
/*-------------------------------------------------------------*/
/********  Footer  ********/
footer div nav ul li a span:hover {
    color: blue;
}

#go-to-topBtn {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 5px 5px 25px 0px rgba(228,228,228,0.60);
  z-index: 1000;
}
#go-to-topBtn span i{
  font-size: 36px;
}
#go-to-topBtn:hover {
  color: #888;
}
/******   Fin du Pied de Page    ********/
/*-------------------------------------------------------------*/
/*******   Média queries   **************/
/*-------------------------------------------------------------*/
/* image de fond pour les écrans moyens de tablette > 768 pixels et < à 992 pixels */
@media screen and (max-width:992px) { 
    body {
        background-color: blue;
        background-image : url("../images/space-walker-1024x864.jpg");
    }
    .cadre-card {
        margin : 20px ;
    }
    #slogan-logo {
        font-size : 15px;
        margin : 0 ;
    }
    .txt-nav {
        font-size: 11px;
    }
}
/* image de fond pour les petits écrans > 320 pixels et < à 768 pixels */
@media screen and (max-width:768px) { 
    body {
        background-color: green;
        background-image : url("../images/space-walker-800x864.jpg");
    }
    .cadre-card {
        margin : 18px ;
    }
    #slogan-logo {
        display: none;
        font-size : 15px;
        margin : 0 ;
    }
}
/* image de fond pour les très petits écrans < à 320 pixels */
@media screen and (max-width:320px) { 
    body {
        background-color: tan;
        background-image : url("../images/space-walker-450x630.jpg");
    }
    .cadre-card {
        margin : 10px ;
    }
} 
/*-----------   fin Custom Global CSS
/*----- control validator https://jigsaw.w3.org/css-validator/ ok le 03 juillet 2023 15h00  -------*/