html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0px 0px 0px 0px;
  background: #FFFFFF;  /* white */
  font-family: Arial;
  font-size: 12px;
  border: 0px solid #F10B0B; /* red */       
}

* {
  box-sizing: border-box; /*  to include the padding and border in an element's total width and height*/
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #bd4ad5; /* pink */
}


/* HEADER  */

.header {
  position: fixed; /* make the header sticky when scrolling down */
  top: 0;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;	
  align-items: center;	/* align items vertical center */
  font-size: 16px;	
  background-color: #fbfafa; 
  z-index: 1;
  border: 0px solid blue;  /* dark blue */  
}

/* NAVBAR --------------------------------- */

.header_menu {
  display: flex;
  /* augmenter la largeur  du container pour faire que l'alignement fasse effet à droite */
  margin: 0 50px 0 0px;  
  border: 0px solid #39b54a; /* green  */
}

.header_navbar {
  display: flex;
  border: 0px solid #FE7800; /* orange  */
}

.header_order {
  display: flex;
  margin: 0 150px 0 50px; 
  border: 0px solid #39b54a; /* green  */
}

/* Links inside the navbar---------------------------- */
.header_navbar a {
  padding: 15px 25px;
}

/* background on mouse-over */
.header_navbar a:hover {
  color: #bd4ad5; /* pink */
}

.header_order a {
  color: white;	      /* font color: white */	
  background-color: #bd4ad5; /* background color: pink */	
  padding: 15px 25px; /* top and bottom are 10px, right and left are 15px */		
  border-radius: 10px;	
  transition: 0.3s;
}

.header_order a:hover {
  color: #bd4ad5;          /* font color: pink */
  background-color: #f6eaec;    /* background color: light pink */	
}

/* Hide the class  on big screens */
.small_on {
  display: none;
} 

.logo_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /*  background: rgba(255,255,255,0.9);  to avoid child to have opacity  */   
  padding: 20px;
  border: 0px solid #792994;  /* violet */ 
}

.circle {
  height: 400px;
  width: 400px;
  background: rgba(255,255,255,0.95);  /* to avoid child to have opacity  */	
  /* background-color: white;	
  opacity: 0.5;  */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0px 0px 50px 10px #cae2c8;   /* try: 1C8E0B  */		
}

.main {
    border: 0px solid #FFE932; /* yellow */
}


.container_grey {
  background-color: #fbfafa;	
  border: 1px solid #e2e2e2;  /* violet */ 
}

.container_white {
  background-color: white;	
  opacity: 0.3;
  border: 0px solid red;  /* red */ 
}

.container_green {
  background-image: url('../img/back_ambiance.jpg');	
  border: 6px solid orange;  /* orange */ 
}


/* COLUMNS----------------------------------- */

.row_salad {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;  
	display: grid;
	/* grid-template-columns: repeat(5, 1fr) */
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  
	border: 0px solid darkgreen;  /* dark green */
}

.row_bar {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;	
	padding: 0px;  
	display: flex;
	flex-flow: row wrap;
	border: 0px solid lightgreen;  /* light green */		
}

.row_contact {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	display: flex;	
	flex-flow: row wrap;	
	justify-content: space-evenly;
	border: 0px solid lightgreen;  /* light green */
}

.row_footer {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;  	
	display: flex;
	flex-flow: row wrap;	
	align-items: center;
	align-content: flex-end;
	border: 0px solid turquoise;  /* turquoise */
}

[class^="column_bar"] {    /* all classes starting with "column_bar" */
  width: 50%;
  padding: 0px 10px 20px;	
  border: 0px solid #7360BC  /* violet  */
}

.column_salade {
  padding: 10px 10px;
  text-align: center;
  border: 0px solid #000000;	
}

.column_contact {
  width: 33.3333%;
  padding: 0px 10px;
  border: 0px solid orange;	/* orange */
}

.column_footer {
  width: 100%;
  align-content: space-around;
  padding: 0px 10px;
  border: 0px solid violet;	/* pink */
}


/* Clear floats after the columns */
.row::after {
  content: "";
  clear: both;
  display: table;
}


/* TEXTE------------------------------------*/

.titre_container {
  color: #bd4ad5; /* Pink */
  font-size: 30px;
  font-weight: none; /* bold */
  text-align: center;
  padding: 40px 0px;
}

.titre {
  font-size: 20px;
  padding-top: 0px;
  line-height: 1.75;
  border: 0px solid #7360BC  /* violet  */
}

.sous_titre {
  font-size: 14px;
  padding-bottom: 5px;	
  opacity: 0.3;
}

.bold {
  font-weight: bold; /* none */
}
.pink {
  color: #bd4ad5; /* Pink */
}

.green {
  color: #065100; /* Green */
}

.blink_text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-size: 26px;
  font-weight: bold;
  color: #bd4ad5;
  text-align: center;
  text-shadow: 0 0 10px white, 0 0 20px white;

  z-index: 999;
  animation: blinkingText 1.5s infinite;
}

.logo_ribbon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #bd4ad5;
  color: white;
  font-weight: bold;
  font-size: 20px;

  padding: 12px 80px;
  text-align: center;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
    border-radius: 26px;

  animation: ribbonBlink 3.8s infinite;
}
.insta_section{
  max-width:1200px;
  margin:80px auto;
  text-align:center;
}

.insta_card{
  position:relative;
  display:inline-block;
  max-width:500px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.insta_img{
  width:100%;
  display:block;
}

.insta_overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
  transition:0.3s;
}

.insta_card:hover .insta_overlay{
  background:rgba(0,0,0,0.55);
}

.insta_play{
  font-size:60px;
  margin-bottom:10px;
}

.insta_text{
  font-size:18px;
  font-weight:bold;
}

.texte, .texte_small {
  color: #2b2d36; /* black */
  font-size: 14px;
  margin-top: 2px;
  line-height: 18px;
  opacity: 0.3;
}

.titre_big {
  text-align: left;
  color: #000000; /* black */
  font-size: 36px;
  font-weight: none; /* bold */
  padding-top: 8px;
  padding-bottom:5px;
}

.texte_big {
  text-align: left;
  color: #355155; /* black */
  font-size: 14px;
  margin-top: 2px;
  line-height: 22px;
}

.titre_footer {
  color: #365357; /* green 0F530B */
  font-size: 22px;
  font-weight: bold; /* bold */
}
.texte_footer {
  color: #2b2d36; /* black */
  font-size: 13px;
  margin-top: 2px;
  line-height: 18px;
}

/* FORMS------------------------------------*/

input[type=text] {
  width: 55%;
  padding: 12px;
  border: 0px solid #ccc;
  border-radius: 10px;
}

input[type=submit] {
  background-color: #bd4ad5;
  color: #f6eaec;    /* font color: pink */
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #f6eaec;
  color: #bd4ad5;    /* font color: pink */
}



/* IMAGES------------------------------------*/

/* images with parallax Effect */
.backimg_01, .backimg_02, .backimg_03, .container_green {
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* First image */
.backimg_01 {
  margin-top: 60px;
  background-image: url('../img/back_header_top.jpg');
  min-height: 900px;
  border: 0px solid #DC2225;  /*red */	
}

/* Second image to delete  */
.backimg_02 {
  background-image: url('../img/back_header_top.jpg');
  min-height: 400px; 
}

/* Third image to delete  */
.backimg_03 {
  background-image: url('../img/back_header_top.jpg');
  min-height: 400px;
}

.img_logo_top { 
  display: block;
  margin: auto;
  height: 98%;
  border: 0px solid #1C8E0B;  /*green */	
  animation: rotateLogo 20s linear infinite;
}

.img_salad_small {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
    opacity: 0.3;
  -webkit-filter: drop-shadow(-5px 5px 10  px #666666);
        filter: drop-shadow(-5px 5px 10px #666666);
  border: 0px solid #1C8E0B  /*green */	
}

.img_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
	border-radius: 10px;
}

.img_100 { 
  width: 100%;
  border: 0px solid #000000;
}

.img_50 { 
  width: 50%;
  border: 0px solid #000000;
  /* min-width: 220px;*/
  /*max-width: 270px;*/
}


.img_25 { 
  width: 25%;
  border: 0px solid #000000;
}

.img_10 { 
  width: 10%;	
  border: 0px solid #000000;
}


.img_logo_header { 
  height: 90px;  /* do not put % value */
  border: 0px solid #000000;
  /* min-width: 220px;*/
  /*max-width: 270px;*/
}

.img_logo_vertical { 
  width: 30%;
  max-width: 537px;
  min-width: 250px;
  border: 0px solid #000000;
  /* min-width: 220px;*/
}

.triangle {
   display: block;
   margin: 20px auto 0px;	
   width: 0px;
   height: 0px;
   border-style: solid;
   border-width: 30px 15px 0 15px;
   border-color: #bd4ad5 transparent transparent transparent;
   transform: rotate(0deg);
}

.map:hover {
   content: url('../img/contact_map_on.jpg');
}

@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 
@keyframes ribbonBlink{
  0%,100% {opacity:1;}
  50% {opacity:0;}
}

