@font-face {
font-family: "Cormorant";
src: url("CormorantGaramond-Regular.ttf") format("truetype");
}

@font-face {
font-family: "Cinzel";
src: url("CinzelDecorative-Regular.ttf") format("truetype");
}
    
@font-face {
font-family: "Playfair";
src: url("PlayfairDisplay-Regular.ttf") format("truetype");
}
    
@font-face {
font-family: "Lora";
src: url("Lora-Regular.ttf") format("truetype");
}
    
@font-face {
font-family: "Montserrat";
src: url("Montserrar-Regular.ttf") format("truetype");
}
    
html,body{
  height:100%;
  padding:0;
  margin:0;
  --warm-brown: #8B5A2B;
  --light-beige: #E8DCC0;
  --moss-green: #6B7A50;
  --anthra-black: #2C2C2C;
  --broken-white: #FAF8F3;
  color: var(--anthra-black);
  background-color: var(--broken-white);
}

.page{
  position:relative;
  display:table;
  table-layout:fixed;
  width:100%;
  height:100%;
  line-height:normal;
  text-align:center;
  font-family: "Lora";
  font-size:1.1em;
  background-size:cover;
  background-position:50% 50%;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

h1,h2,h3,h4,h5{
  line-height:1.3;
  font-family: "Cinzel";
  font-weight:normal;
}
    
h1{
  color: var(--warm-brown);
  font-family: "Playfair";
}
.tagline{
  margin-top: 0.5em;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}
h2,h3,h4,h5{
	color:var(--moss-green);      
}

.page:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  filter:alpha(opacity=40);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  opacity:0.4
}

a,a:link{
  color:inherit;
  text-decoration: none;
}

a:hover,a:focus,a:active{
	color: var(--light-beige);
}

.container{
  position:relative;
  display:table-cell;
  width:100%;
  vertical-align:middle;
  padding:1em 2em;
  z-index:1;
}

.content{
  max-width:900px;
  margin:0 auto;
}

.gallery{
  margin: 2.5em 0;
  text-align: center;
}

.gallery h2{
  margin-bottom: 1em;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1.5em;
  align-items: start;
}

.gallery-grid img{
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover{
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
    
img{
  max-width: 100%;
  height: auto;
}
    
.market-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.2em 1.4em;
  margin-bottom: 1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.market-card h3{
  margin-top: 0;
  margin-bottom: 0.4em;
  font-size: 1.25rem;
}

.market-place,
.market-date,
.market-time{
  margin: 0.25em 0;
}
    
footer{
  margin-top: 3em;
  padding: 2em 1.5em;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.info{
  max-width: 900px;
  margin: 0 auto;
}

.social{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2em;
  margin-bottom: 1em;
}

.social-links{
  text-decoration: none;
  color: inherit;
  font-size: 1.4rem;
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.social-links:hover,
.social-links:focus{
  color: var(--light-beige);
  opacity: 1;
}
    
.a_propos, .commandes{
  text-align: justify;
}

.hosting-info{
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
    
.lightbox{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2em;
}

.lightbox.active{
  display: flex;
}

.lightbox img{
  max-width: 90%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}
#lightbox-caption{
  color: white;
}

.lightbox-close{
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px){
  .gallery-grid{
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .gallery-grid img{
    max-width: 280px;
    aspect-ratio: 4 / 5;
  }
}