@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Raleway:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&family=Raleway:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Raleway:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');


body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body p, li, a{
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

main h2, h3, .form-group label{
  font-family: 'Amatic SC', 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 3em;
}

.hero-banner {
  height: 100vh;
  background-image: url('../img/fond2.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); 
}


body.accueil header {
  background-image: none;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: none;
  position: absolute;   
  top: 0;
  left: 0;
  width: 94%;
  z-index: 1000;        
  background: transparent; 
  border-bottom: none;
}

body.accueil header::before{
  background-color: rgba(0, 0, 0, 0);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 10em;
  margin: 0;
  font-family: 'Amatic SC', 'Cormorant Garamond', serif;
  font-weight: 600;
}

.hero-content h2 {
  font-size: 3em;
  margin: 0;
  font-family: 'Great Vibes', serif;
  font-style: italic;
  font-weight: 100;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url('../img/fond.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px 40px;
  border-bottom: 1px solid #333;
  color: white;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}

#g_header, #d_header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#g_header img {
  height: 100px;
  width: auto;
}

#g_header h1, h2 {
  margin: 0;
}

#g_header h1{
  font-family: 'Amatic SC', 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.5em;
}

#g_header h2 {
  font-family: 'Great Vibes', serif;
  font-style: italic;
  font-weight: 100;
}

#d_header ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#d_header ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Amatic SC', 'Cormorant Garamond', serif;
  font-size: 2em;
  transition: border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

#d_header ul li a:hover {
  border-bottom: 2px solid #fff;
}



@media (max-width: 992px) {

  header{
    display: none;
  }

  .hero-content h1 {
    font-size: 8em;
  }
  
  .hero-content h2 {
    font-size: 2em;
  }
}

/*--------------------------------------------------------------
# NavBar Telephone
--------------------------------------------------------------*/
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  z-index: 500000;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #BDBAB8;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.cursor{
  position: absolute;
  right: 20px;
  z-index: 100;
  transition: 0.5s;
}

.cursor:hover{
  transform: scale(1.2);
}

 @media screen and (min-width: 992px) {
  
    .cursor{
        display:none;
    }
}




footer {
  background-color: #000;
  color: white;
  padding: 40px 20px;
}



.mini-title, footer a{
  font-family: 'Amatic SC', serif;
  font-size: 1.5em;
}

footer h2{
  font-family: 'Amatic SC', serif;
  font-size: 2.5em;
}

footer p{
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.75em;
}

footer em{
  font-family: 'Great Vibes', serif;
  font-style: italic;
  font-weight: 100;
  font-size: 1.5em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

.footer-col.center {
  text-align: center;
}

.footer-col.center img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  text-align: right;
}

.footer-nav li {
  margin: 8px 0;
}

.footer-nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.mentionsLegales{
  text-decoration: none;
  color: white;
  font-size: large;
}

.footer-nav a:hover {
  color: #d4b07a;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}


@media (max-width: 992px) {

  .footer-nav{
    display: none;
  }

  .footer-container{
    flex-direction: column-reverse;
  }

  .footer-col{
    text-align: center;
  }
}




.OverDesc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  gap: 2em;
  text-align: justify;
}

.OverDesc.reverse {
  flex-direction: row-reverse;
}

.OverDesc div {
  max-width: 50em;
}

.OverDesc div a {
  display: inline-block;
  margin-top: 10px;
  background-color: #BDBAB8;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
}


.img-container {
  width: 30em;     
  height: 15em;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  object-fit: cover; 
  object-position: center;
}

.linkLink{
  display: flex;
  justify-content: end;
}

.pageTitle{
  display: flex!important;
  justify-content: start!important;
  margin-inline: 5.5em;
  font-family: 'Amatic SC', 'Cormorant Garamond', serif;
  font-weight: bolder;
  font-size: 2.5em;
}


.pageTitle h1{
  margin: 0;
  padding-top: 0.5em;
}

.OverDesc.ok{
  background-color: #BDBAB8;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;            
}

.descriptionOverviewHome{
  width: 35em;
}

.descriptionOverviewHome p {
    text-indent: 0;
    margin-top: 0;
    text-align: justify!important;
}


@media (max-width: 992px) {

  .pageTitle{
    margin: 0!important;
    padding: 0!important;
  }

  .pageTitle h1{
    padding-top: 0.3em;
    padding-left: 0.25em;
    font-size: 1.5em;

  }

  .cursor{
    padding-top: 0.75em;
  }

  .OverDesc{
    flex-direction: column;
    padding: 0!important;
    gap: 0!important;
  }

  .OverDesc.reverse{
    flex-direction: column;
    padding: 0!important;
  }

  .descriptionOverviewHome{
    width: 90%;
    padding: 0!important;
    padding-bottom: 2em;
  }

  .img-container{
    width: 90%;
    padding-top: 2em;
  }

}
