.presentation{
	text-align: center;
	color:#FFF;
	padding:2% 5%;
	background:#141e20;
	width:90%;
}
.presentation h1{
	text-transform: uppercase;
	font-weight:normal;
}
.mea h2{
	text-transform:uppercase;
	font-weight:normal;
	padding:15px 20px;
	color:#FFF;
}
.grid.mea{
	padding-bottom:30px;
}
.complement{
	padding-bottom:30px;
}
/*overlay*/
#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-wrapper {
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16/9;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.video-wrapper.visible {
  opacity: 1;
}
.video-wrapper.hidden {
  display: none;
}
#video-loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00aaff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.btn-recettes {
  display: inline-block;
  padding: 10px 20px;
  background-color: #D78C7C; 
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
	margin-top:10px;
}

.btn-recettes:hover {
  background-color: #a85547;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.overlay-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
@media (max-width: 768px) {
  .overlay-content {
    width: 95vw;
    height: 53vw;
  }
}