body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:white;
color:black;
position:relative;
}

/* LOGO */

.logo img{
height:70px;
}

/* LANGUES */

.language-switcher{
display:flex;
gap:10px;
}

/* DRAPEAUX */

.flag{
width:32px;
cursor:pointer;
border-radius:4px;
transition:all 0.3s ease;
}

.flag:hover{
transform:scale(1.2) rotate(3deg);
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* LANGUES MOBILE */

.mobile-lang{
display:none;
gap:10px;
margin-top:15px;
}

/* MENU */

nav ul{
display:flex;
list-style:none;
padding:0;
margin:0;
}

nav ul li{
margin-left:20px;
}

nav ul li a{
color:black;
text-decoration:none;
font-weight:bold;
}

/* HAMBURGER */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle .bar{
height:3px;
width:25px;
background:black;
margin:4px 0;
}

/* GALERIE */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
gap:40px;
padding:40px;
max-width:1200px;
margin:auto;
}

.gallery-item{
text-align:center;
}

.gallery-item img{
width:100%;
max-width:300px;
border-radius:8px;
cursor:pointer;
transition:0.3s;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.gallery-item img:hover{
transform:scale(1.05);
}

/* IMAGE AGRANDIE */

.modal{
display:none;
position:fixed;
z-index:999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.modal-content{
max-width:80%;
max-height:80%;
border-radius:10px;
}

/* RESPONSIVE */

@media (max-width:768px){

.menu-toggle{
display:flex;
}

nav ul{
display:none;
flex-direction:column;
position:absolute;
top:80px;
right:0;
background:white;
width:200px;
padding:20px;
box-shadow:0 5px 10px rgba(0,0,0,0.2);
}

nav ul.show{
display:flex;
}

nav ul li{
margin:15px 0;
}

.language-switcher{
display:none;
}

.mobile-lang{
display:flex;
}

.bloc{
flex-direction:column;
text-align:center;
}

}

/* SUPPRIMER BARRE GOOGLE TRANSLATE */

.goog-te-banner-frame.skiptranslate{
display:none !important;
}

body{
top:0 !important;
}

.goog-logo-link{
display:none !important;
}

.goog-te-gadget span{
display:none !important;
}
/* SUPPRIMER COMPLETEMENT LA BARRE GOOGLE TRANSLATE */

.goog-te-banner-frame {
display:none !important;
}

.goog-te-banner-frame.skiptranslate{
display:none !important;
}

body{
top:0px !important;
}

/* cacher le logo google */

.goog-logo-link{
display:none !important;
}

/* cacher texte "Powered by Google" */

.goog-te-gadget{
font-size:0px !important;
}

/* cacher iframe google */

iframe.skiptranslate{
display:none !important;
}