:root {
  /* Font sizes */
  --h1-size: 64px;
  --h2-size: 44px;
  --h3-size: 36px;
  --h4-size: 38px;
  --h5-size: 16px;

  --p-size: 15px;

  /* Font weight */
  --font-weight: 400;
  --line-height: 60px;

  
  /* Colors */
  --main-color: #000611;
  --secondary-color: #C2EBFF;
  --button-bg: #C3965F;
  --button-color: #FFFFFF;
  --button-padding-horizontal: 1.3rem;
  --button-padding-vertical: 0.6rem;
}

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  background-image: url(../assets/images/download.png);
  background-repeat: repeat;
  background-position-x: center;  color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;

}

html {
  scroll-behavior: smooth;
}


p,q {
  font-family: "Inter", sans-serif;
  font-size: var(--p-size);
  font-weight: 300;
  margin: 0;
  line-height: 1.75em;
}

h1, h2, h3, h4 {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--font-weight);
  font-family: "Playfair Display", serif;
}


h2 {
  font-size: var(--h2-size);
  font-weight: var(--font-weight);
  font-family: "Playfair Display", serif;

}


h3 {
  font-size: var(--h3-size);
  font-weight: var(--font-weight-bold);
}

h4 {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

h4 {
  margin: 0;
  font-size: var(--h4-size);
  font-weight: 300;
  font-family: "Playfair Display", serif;
  color: var(--button-bg);

}

h5 {
  margin: 0;
  font-size: var(--h5-size);
  font-weight: 300;
  letter-spacing: 2px;

}
 h6{
  font-size: 16px;
  font-weight: 300;
  margin: 0;

}



a {
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: inherit;
}

ul {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

li {
  font-family: "Open Sans", sans-serif;
  list-style-type: none;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: 2px solid var(--button-bg);
  display: flex;
  align-items: center;
  background: transparent;
  font-weight: 300;
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  color: white;
  gap: 0.5rem;
}

button.secondary {
  border: 2px solid var(--button-bg);
  cursor: pointer;
  color: white;
  background: var(--button-bg);
  font-weight: 300;
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}



button:hover {
  cursor: pointer;
  color: var(--button-color);
  background: var(--button-bg);
  border-bottom: 2px solid white;

  padding: var(--button-padding-vertical) var(--button-padding-horizontal);

}

button img{
  transition: all 0.3s ease-in-out;
}

button:hover img{
  transform: translateX(5px);

}


.container {
  max-width: 1400px;
  margin: 0 auto;
}


@media (max-width: 1400px) {
  .container{
    padding: 1rem !important;
  }
}




/* Tablet styles (768px – 1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px !important;
    line-height: 50px;
  }

  h2 {
    font-size: 36px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  p, q {
    font-size: 16px !important;
  }
}

/* Mobile styles (up to 767px) */
@media (max-width: 767px) {
  h1 {
    font-size: 32px !important;
    line-height: 42px;
  }

  h2 {
    font-size: 26px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  p, q {
    font-size: 14px !important;
  }

  
}



/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* //////////////////////////////////////////////////////////// Home Page ////////////////////////////////////////////////////////////*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Hero layout */
/* Hero layout */
#hero{
  position: relative;
  height: 100vh;
  overflow: clip; /* prevents scrollbars from parallax headroom */
  color: #fff;
}

/* Background wrapper (gets translated for parallax) */
#hero .bg{
  position: absolute;
  inset: 0;
  top: -20vh;     /* headroom so it can slide */
  height: 140vh;  /* taller than hero for movement */
  will-change: transform;
  z-index: 0;
}

/* Background video fills the wrapper */
#hero .bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* optional subtle pop */
  filter: contrast(1.05) saturate(0.95);
}

/* Dark overlay to boost text contrast */
#hero .bg .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65); /* adjust darkness here */
  pointer-events: none;
}

/* Foreground content */
#hero .container{
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem;
}

#hero .container h4{
  font-family: "Inter", sans-serif;
  letter-spacing: 6px;
  font-size: 26px;
}
/* REMOVE/UPDATE any old image background so it doesn't conflict */
/* .parallax-bg { background: none; }  (or just delete that rule) */


#about {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#about .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;
  width: 90%;
  margin: 0 auto;
  padding: 5rem 2rem;
}



#about .content{
  display:flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
  align-items: start;
}

#about .content p {
  width: 80%;
}

#about .title{
  display:flex;
  flex-direction: column;
  gap: 1rem;
}


#about .contact {
  display:flex;
  align-items:center;
  gap:1rem;
}
  


  

#about .text {
  display:flex;
  flex-direction: column;
  align-items:start;

}

#about .text h4{
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Open Sans", sans-serif;

}
  
#about .text a{
  font-size: 22px;
  font-family: "Playfair Display", serif;

}

#about .text a:hover {
  text-decoration: underline;
}


#about .image{
  display:flex;
  align-items:center;
  gap:1.5rem;
  width: 50%;
}

#about h6{
  font-size: 16px;
  font-weight: 300;
}

#about .image{
  display:flex;
  align-items:center;
  gap:1.5rem;
  width:50%;
}

/* the parallax window for each image */
#about .image .thumb{
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
}

/* second image offset (keeps your original look) */
#about .image .thumb.margin{
  margin-top: 6rem;
}

/* moving image */
#about .image .thumb .parallax-img{
  width: 100%;
  height: 120%;               /* extra height so it can move without gaps */
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}


@media (max-width: 1000px) {
  #about .container{
    flex-direction: column;
    gap: 2rem;
  }

  #about .content{
    width: 100%;
  }

  #about .image{
    width: 100%;
  }
}


@media (max-width: 768px) {
  #about .content p{
    width: auto;
  }
}

#chef {
  padding: 2rem;
  background-image: url(../assets/images/nn.png);
  background-repeat: repeat;
  background-position: center;
  width: 100%;
}

#chef .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 2rem;
}

#chef .images {
  width: 50%;
  position: relative;
  max-height: 700px;
}

#chef .line {

  height: 1.5px;
  opacity: 0.5;
  background: white;
}

#chef .video-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

#chef .video-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

#chef .sound-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#chef .sound-toggle:hover {
  background: rgba(0,0,0,0.8);
}

#chef .sound-toggle:hover img{
  transform: translateX(0px);
}

#chef .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  width: 50%;
  color: white;
  padding: 3rem 1rem;
  background: #000611;
}

#chef .content h6 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#chef .content p {
  width: 90%;
  opacity: 0.9;
}

@media (max-width: 1000px) {
  #chef .container {
    flex-direction: column;
    gap: 2rem;
  }
  #chef .content,
  #chef .images {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #chef .content p {
    width: auto;
  }
  #chef .video-wrapper {
    max-height: 400px;
  }
  #chef {
    padding: 3rem 0rem;
  }
}

#menu{
 width: 90%;
 margin: 0 auto;
 padding: 5rem 2rem;
 display: flex;
 flex-direction: column;
 gap: 1rem;
 align-items: center;
 position: relative;
}

#menu .left {
  position: absolute;
  top: -20%;
  left: 0;
  z-index: -999;
  filter: blur(4px); /* adjust the value (e.g., 4px, 6px, 10px) for stronger/weaker blur */
}

#menu .right {
  position: absolute;
  top: -20%;
  right: 0;   /* pushes half of it outside the container */
  z-index: -999;
  filter: blur(4px);
}

#menu .title{
  display:flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in-out;
}

.menu-card:hover .menu-card__title{
  opacity: 1;
  text-decoration: underline;

}

/* Window that clips the moving image */
.menu-card__media {
  position: relative;
  overflow: hidden;
  height: 420px;      
}

/* Moving image */
.menu-card__image {
  width: 100%;
  height: 120%;               /* extra height so movement doesn't show edges */
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}




:where(figure){
  margin: 0 !important;
}

.title img{
  width: 32px;
}


.icon{
  display:flex;
  align-items: center;
  gap: 1rem;
}
.cap{
  width: 40px;
  height: 1px;
  background: rgb(145, 145, 145);
}

.menu-card__body {
  position: absolute;
  bottom: 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;

}

.line {
  width: 50%;
  height: 1px;
  background: #C3965F;
  transition: width 0.5s ease-in-out;
}




.menu-card__btn {
  max-height: 0;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
  transition: transform 10s ease-in-out;
}


.menu-card:hover .menu-card__btn {
  max-height: 400px; /* enough to fit button height */
  opacity: 1;
  transform: translateY(0);
}




.menu-card__title {
  font-size: 24px; 
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}



/* ===== Overlay ===== */

.overlay__dialog {
  position: relative;
  margin-inline: auto;
  margin-top: 4vh;
  margin-bottom: 4vh;
  max-width: min(1100px, 92vw);
  background: #0b0b0b;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  max-height: 92vh;         /* limit height to viewport */
  overflow: hidden;         /* keep header/footer pinned */
  z-index: 1;
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}

/* Header & Footer pinned */
.overlay__header,
.overlay__footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.overlay__footer {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 0;
}

.overlay__title { margin: 0; font-size: 1.25rem; }

.overlay__close,
.overlay__close-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: .45rem .75rem;
  border-radius: .5rem;
  cursor: pointer;
}

/* Scrollable content area */
.overlay__carousel-wrap {
  position: relative;
  flex: 1;
  overflow-y: auto;
  padding: 1rem 2rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Slide content */
.overlay__carousel .slide {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
}
.overlay__carousel img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: .75rem;
}
.slide__meta { padding: .25rem; }
.slide__title { margin: .25rem 0; font-size: 1.125rem; }
.slide__caption { color: rgba(255,255,255,.8); line-height: 1.55; }
.slide__price { font-weight: 700; margin-top: .25rem; }

/* ===== Slick tweaks ===== */
.slick-dots { bottom: -30px; }
.slick-dots li button:before { font-size: 10px; }

/* Custom nav buttons (desktop) */
.overlay__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease;
}
.overlay__nav:hover { background: rgba(255,255,255,.25); }
.overlay__prev { left: 1rem; }
.overlay__next { right: 1rem; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .menu-card,
  .overlay__nav {
    transition: none;
  }
  .overlay__carousel-wrap {
    scroll-behavior: auto;
  }
}

@media (max-width: 1000px) {


  .menu-grid {
    padding: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  #menu {
    width: auto;
    padding: 2rem 0;
  }

  .menu-grid {
    padding: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .menu-card__media{
    height: 380px;
  }
}

/* -------- LOOP (unchanged structure) -------- */
#loop {
  padding: 2rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
#loop .loop-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#loop .loop-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 60s linear infinite;
}
#loop .loop-item {
  flex: 0 0 auto;
  padding: 0 1rem;
  position: relative;
  overflow: hidden; /* clip parallax movement */
}
#loop .loop-item .parallax-img {
  height: 380px;
  width: auto;
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


#casa {
  background-image: url(../assets/images/nn.png);
  background-repeat: repeat;
  background-position-x: center;
  background-position-y: center;
  width: 100%;   padding: 5rem 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#casa .header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom:4rem;
  color: white;
  gap: 0.6rem;
  text-align: center;
}

#casa .header p{
  width: 50%;
  opacity: 0.9;
}

#casa .header img{
  width: 100px;
  height: 130px;
}



#casa .casa{
  font-family: 'Corinthia', cursive;
  font-weight: bold;
  color: var(--button-bg);
  font-size: 3rem;
}


#casa .content{
  width: 90%;
  margin: 0 auto;  
 
}

#casa .controls{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-self: center;
  margin-top: 2rem;
}

#casa .controls button{
  min-width: 130px !important;
  justify-content: center;

}


#casa  .js-prev:hover img{

transform: translateX(-5px);
}

#casa .slick-track{
  display: flex;
  align-items: stretch;
  height: auto;
}

#casa .testimonial-item {
  position: relative;
  padding: 2rem;
  text-align: start;
  background-image: url(../assets/images/download.png);
  background-repeat: repeat;
  background-position-x: center;  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  height: auto;
}

#casa .quote{
  position: absolute;
  padding: 1rem;
  top: 0;
  right: 0;
  width: 64px;
}



#casa .image{
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

#casa .image a{
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

#casa .image img {
  width: 32px;
}

#casa .image h4{
  font-size: 24px !important;
}

#casa .line{
  width: 70%;
  height: 0.5px;
  background: #433321;
}

#casa .text{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#casa .text q {
  font-size: 13px !important;
}


#casa .stars {
  display: flex;

}

#casa .stars img {
  width: 20px !important;
  height: 20px !important;
}





@media (max-width: 768px) {
  #casa .header p{
    width: auto;
  }

  #casa .content{
    width: auto;
  }

  #casa {
    padding: 1rem 0;
  }
}



#philosophy{
  margin: 2rem 0px;
}

#philosophy .container{
  display: flex;
      justify-content: space-between;
      gap: 2rem;
      width: 80%;
      margin: 0 auto;
      padding: 2rem;
      align-items: stretch;
}

#philosophy .left{
  width: 50%;
  display: flex
;
  flex-direction: column;
  gap: 2rem;
}

#philosophy .right{
  width: 50%;
    position: relative;
    overflow: hidden;
    max-height: 600px;
}


#philosophy .right video{
  width: 100%;
  object-fit: cover;
}





#reservation {
 
  margin-top: 6rem;
  margin-bottom: 4rem;
}

#reservation .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  align-items: stretch;
  height: 100%;
}

#reservation .left {
  width: 50%;
  position: relative;
  overflow: hidden; /* important: clips the parallax image */
}

/* moving image */
#reservation .left .parallax-img {
  width: 100%;
  height: 120%;          /* taller than container for smooth scroll */
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

#reservation .right {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style){
  background: var(--button-bg) !important;
  color: white !important;
  border-radius: 0 !important;
  padding: var(--button-padding-vertical) var(--button-padding-horizontal) !important;
  font-weight: 300 !important;
  font-size:12px !important;
}

form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover{
 border: 1px solid var(--button-bg) !important;
 color: black !important;
 background: transparent !important;
}

.ff-default .ff-el-form-control{
  border: none !important;
  border-radius: 0 !important;
  padding: 1rem 2rem !important;
}
  

@media (max-width: 900px) {
  #reservation .container{
    flex-direction: column;
    gap: 2rem;  
  }

  #reservation .left{
    width: 100%;
  }

  #reservation .right{
    width: 100%;
  }

  #reservation {
 
    margin-bottom: 2rem;
  }
}


/* section container */
#video{
  margin: 180px 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* positioned media wrapper so header can overlay */
#video .media{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
}

/* image keeps your hard start at 100vw and covers */
#Videos{
  display: block;
  width: 100vw;                 /* start at 100% viewport width */
  max-height: 700px;
  object-fit: cover;
  margin: 0 auto;
  will-change: width;
}

/* overlayed header starts near top (15%) and moves to center */
#video .overlay-header{
  position: absolute;
  left: 50%;
  top: -5%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  pointer-events: none;

  /* === color-invert effect === */
  color: #fff;
  mix-blend-mode: difference;   /* inverts vs background pixels */
  text-shadow: 0 1px 2px rgba(0,0,0,.25); /* subtle fallback aid */
}

#video .overlay-header h5,
#video .overlay-header h2{
  margin: 0;
}

#video .overlay-header h2{
  font-size: 54px !important;
}


@media (max-width: 768px) {
  #Videos {
    height: 60vh;
  }

  #video .overlay-header h2{
    font-size: 32px !important;
  }

  #video .overlay-header{
    width: 100%;
  }
}



#abouthero {
  position: relative;
  height: 600px;
  color: #fff;
  overflow: hidden;              
}

#abouthero .bg {
  position: absolute;
  inset: -12% 0 -12% 0;             /* extra bleed so edges aren't exposed when moved */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0,0,0);
}


  

    #abouthero .container{
      position: relative;
      z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    height: 100%;
    }


    #abouthero .container h4{
    font-size: 26px;
    letter-spacing: 2px;

    }

    #abouthero .container h2{
    font-size: 62px;
    }



    #abouthero .container h6{
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
      }





      #bloghero {
        position: relative;
        height: 600px;
        color: #fff;
        overflow: hidden;              
      }
      
      #bloghero .bg {
        position: absolute;
        inset: -12% 0 -12% 0;             /* extra bleed so edges aren't exposed when moved */
        background-size: cover;
        background-position: center;
        will-change: transform;
        transform: translate3d(0,0,0);
      }
      
      
    
        #bloghero .container{
          position: relative;
          z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 1rem;
        }
    
    
    
    
    
        #bloghero .container p{

          width: 40%;
          text-align: center;
          }



          @media (max-width: 768px) {
            #bloghero .container p{
              width: auto;
            }
          }
      
    
      

/* ======= HISTORY ======= */
#history {
  margin: 6rem 0 2rem;
}
#history .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  align-items: stretch;
}
#history .left {
  width: 50%;
  position: relative;
  overflow: hidden; /* clip parallax image */
  max-height: 600px;
}
#history .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ======= STAFF ======= */
#staff {
  margin: 2rem 0 2rem;
}
#staff .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  align-items: stretch;
}
#staff .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#staff .right {
  width: 50%;
  position: relative;
  overflow: hidden; /* clip parallax image inside slider wrapper */
}
#staff .staff-slider img {
  width: 100%;
  object-fit: cover;
  max-height: 600px;
}
#staff .controls button {
  min-width: 150px !important;
}
#staff .controls button:hover {
  background: var(--button-bg);
  color: white;
}


#staff .controls{
  display: flex;
  align-items: center;
  gap: 1rem;
}

#staff .controls button{
 justify-content: center; 
}

#staff  .js-prev:hover img{

  transform: translateX(-5px);
  }
  
/* ======= VALUES ======= */
#values {
  margin: 2rem 0 2rem;
}
#values .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  align-items: stretch;
}
#values .left {
  width: 50%;
  position: relative;
  overflow: hidden; /* clip parallax image */
  max-height: 600px;
}
#values .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ======= PARALLAX BASE (shared) ======= */
.parallax-parent {
  position: relative;
  overflow: hidden;
}
.parallax-img {
  width: 100%;
  height: 130%;       /* room to move without showing edges */
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

/* ======= Responsive (optional) ======= */
@media (max-width: 992px) {
  #history .container,
  #staff .container,
  #philosophy .container,
  #values .container {
    flex-direction: column;
    width: auto;
  }
  #history .left, #history .right,
  #philosophy .left, #philosophy .right,
  #staff .left, #staff .right,
  #values .left, #values .right {
    width: 100%;
  }
}


.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}



#blog {
  padding: 4rem 0;
}

#blog .container {
  width: 80%;
  margin: 0 auto;
}

#blog h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

#blog .blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#blog .blog-card {
  background: #fff;
  overflow: hidden;
  padding: 1.5rem;
  border-bottom: 2px solid white;

  transition: border-bottom 0.3s ease;
}

#blog .blog-card:hover {
  border-bottom: 2px solid var(--button-bg);

}

#blog .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}



#blog .blog-card .thumb {
  height: 250px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

#blog .blog-card .thumb .parallax-img {
  width: 100%;
  height: 130%;        /* taller than window so it can move without gaps */
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

#blog .blog-card .thumb > a {
  display: block;
  height: 100%;
}





#blog .blog-card h4 {
  margin-bottom: 0.5rem;
  line-height: 32px;

}

#blog .blog-card h4 a {
  text-decoration: none;
  font-size: 18px;
  line-height: 5px;
  font-family: "Playfair Display", serif;
}

#blog .blog-card .excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#blog .blog-card .read-more {
  font-weight: bold;
  text-decoration: none;
}

#blog .blog-card .read-more:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  #blog .container{
    width: auto;
  }
}


#single-blog {
  padding: 150px 0;
}

#single-blog .container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}

#single-blog .post-title {
  font-size: 54px;
  margin-bottom: 1rem;
  color: #222;
}

#single-blog .post-meta {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

#single-blog .post-thumbnail img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 400px;
}

#single-blog .post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

#single-blog .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}


#latest-blogs {
  padding: 4rem 0;
}

#latest-blogs .container {
  width: 80%;
  margin: 0 auto;
}

#latest-blogs h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

#latest-blogs .blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#latest-blogs .blog-card {
  background: #fff;
  overflow: hidden;
  padding: 1.5rem;
  border-bottom: 2px solid white;
  transition: border-bottom 0.3s ease;
}

#latest-blogs .blog-card:hover {
  border-bottom: 2px solid var(--button-bg);
}

#latest-blogs .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

#latest-blogs .blog-card .thumb {
  height: 250px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

#latest-blogs .blog-card .thumb .parallax-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

#latest-blogs .blog-card .thumb > a {
  display: block;
  height: 100%;
}

#latest-blogs .blog-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

#latest-blogs .blog-card h4 {
  margin-bottom: 0.5rem;
  line-height: 32px;
}

#latest-blogs .blog-card h4 a {
  text-decoration: none;
  font-size: 18px;
  line-height: 5px;
  font-family: "Playfair Display", serif;
}

#latest-blogs .blog-card .excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#latest-blogs .blog-card .read-more {
  font-weight: bold;
  text-decoration: none;
}

#latest-blogs .blog-card .read-more:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  #latest-blogs .container{
    width: auto;
  }

  #latest-blogs {
    padding: 0;
  }
}


#map-frame {
  width: 100%;
  overflow: hidden;
  margin-bottom: 5rem;
  margin-top: 5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;


}

#map-frame iframe {
  border: none;
  padding-bottom: 0;
  margin: auto;
}


#map-frame .header {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

#map-frame .container {
  width: 90%;
  margin: 0 auto;
}




/* ========== Gallery Section ========== */

/* Custom cursor badge for gallery items */
@media (hover: hover) {
  #gallery .gallery-item,
  #gallery .gallery-item * { cursor: none; }
}

#galleryCursor {
  position: fixed;
  left: 0; top: 0;
  width: 86px; height: 86px;
  background: #C3965F;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: 10px;
  line-height: 18px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0); /* keep center offset */
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  will-change: transform, opacity, left, top;
  z-index: 9999;
  text-align: center;
  user-select: none;
}



#gallery {
  padding: 6rem 0;
}

#gallery #galleryGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#gallery .container{
  width: 80%;
  margin: 0 auto;
}


#gallery .content
{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
#gallery .header{
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#gallery .header h2{
  font-size: 64px;
}

#gallery .header p{
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 900px) {
  #gallery #galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  #gallery #galleryGrid {
    grid-template-columns: 1fr;
  }
}


/* Grid items */
#gallery #galleryGrid .gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

/* Parallax image */
#gallery #galleryGrid .gallery-item img {
  width: 100%;
  height: 120%;              /* extra height so it can move without gaps */
  display: block;
  object-fit: cover;
  transform: translateY(0);  /* JS updates this only */
  will-change: transform;
  transition: none;
  
}



/* Load more button */


/* ========== Lightbox Overlay (Slick inside) ========== */
#galleryLightbox[aria-hidden="true"] {
  display: none;
}
#galleryLightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .92);
}

/* prevent page scroll while open (global) */
body.lb-open {
  overflow: hidden;
}

/* Close button */
#galleryLightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 24px;

  font-size: 16px;
  cursor: pointer;

}
#galleryLightbox .lb-close:hover {
  background: rgba(255, 255, 255, .2);
}

/* Counter */
#galleryLightbox .lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  opacity: .85;
  background: rgba(0, 0, 0, .35);
}

/* Slick track container */
#galleryLightbox #lightboxTrack {
  width: 92vw;
  max-width: 1400px;
}

/* Slides */
#galleryLightbox .lightbox-slide {
  display: grid;
  place-items: center;
}
#galleryLightbox .lightbox-slide img {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

/* Caption */
#galleryLightbox .lb-cap {
  margin-top: 10px;
  text-align: center;
  color: #fff;
  opacity: .85;
}

#galleryLightbox .lb-prev:hover img {
  transform: translateX(-5px);

}


/* Arrows (external to Slick) */
#galleryLightbox .lb-prev,
#galleryLightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  cursor: pointer;
  display: grid;
  place-items: center;

  transition: background .2s ease;
}
#galleryLightbox .lb-prev { left: 24px; }
#galleryLightbox .lb-next { right: 24px; }


@media (max-width: 768px) {
  #gallery .header p{
    width: 90%;
  }  

  #gallery .container{
    width: auto;
  }

  #galleryLightbox .lb-prev,
#galleryLightbox .lb-next {
  bottom: 10%;
  top: auto;
}
}



#galleryhero {
  position: relative;
  height: 600px;
  color: #fff;
  overflow: hidden;              
}

#galleryhero .bg {
  position: absolute;
  inset: -12% 0 -12% 0;             /* extra bleed so edges aren't exposed when moved */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0,0,0);
}





  #galleryhero .container{
    position: relative;
    z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1rem2;
  }





  #galleryhero .container p{

    width: 40%;
    text-align: center;
    }



    #menuhero {
      padding-top: 100px;
      position: relative;
      text-align: center;
    }
    
    #menuhero .container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 1rem;
      z-index: 1;
    }
    
    #menuhero .container img {
      width: 100%;
      max-width: 480px;
      object-fit: cover;
      height: auto;
      display: block;
    }
    
    #menuhero .absolute {
      position: absolute;
      top: 50%;
      width: 100%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: black;
      font-size: 64px;
      text-align: center;
      color: #C3965F;
      mix-blend-mode: difference;
    }
    


    #carte {
      
      padding: 60px 0;
    }
    
    #carte .carte-category {
      width: 80%;
      margin: 0 auto;
      padding: 2rem;
    }
    
    #carte .carte-category-title {
      text-align: center;
      margin-bottom: 1rem;

    }
    
    #carte .carte-category-subtitle {
      margin-bottom: 1.5em;
      text-align: center;
    }
    
    #carte .carte-header-row {
      display: grid;
      grid-template-columns: 1fr repeat(auto-fit, minmax(100px, 1fr));
      font-weight: 600;
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }
    

    #carte .carte-price-col {
      display: flex;
      flex-direction: column;
      align-items: end;
      justify-content: center;
      gap: 1rem;
    }
    
    #carte .carte-header-title {
      font-size: 18px;
    }
    
    #carte .carte-price-value{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      font-size: 16px;
    }

    #carte .carte-price-value h4{
      font-size: 16px;
      color: black;
    }
    



    #carte .carte-header-price {
      font-size: 16px;
      text-align: right;
    }
    
    #carte .carte-item {
      display: grid;
      justify-content: space-between;
      border-bottom: 0.5px solid #c3965f;
      padding: 0.5rem 0;
    }
    
    #carte .carte-item-info {
      display: flex;
      flex-direction: column;
      justify-content: end;
      padding-right: 20px;
    }
    
    #carte .carte-item-title {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 5px;
    }
    
    #carte .carte-item-desc {
      font-size: 14px;
      color: #666;
      margin: 0;
    }
    
    #carte .carte-item-prices {
      display: contents; /* keeps the grid alignment */
    }
    
    #carte .carte-price {
      text-align: right;
      font-size: 16px;
      color: #222;
    }
    


    @media (max-width: 900px) {
      #carte .carte-category{
        width: auto;
        padding: 0;
        margin-top: 2rem;
      }

      #carte .carte-item-title{
        font-size: 14px;
      }

      #carte .carte-price-value{
        font-size: 14px;

      }

      #carte .carte-price-value h4{
        font-size: 14px;
      }
    }

    #location {
      padding: 1rem 0 3rem 0;
    }
    
    #location .container {
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
      width: 90%;
      margin: 0 auto;
      gap: 2rem;
    }

    #location .left {
        width: 50%;
        max-height: 600px;
    }
    
    #location .right {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        align-items: start;
    }

    #location .right p {
      width: 70%;
    }


    @media (max-width: 768px) {
      #location .container {
        flex-direction: column;
        gap: 2rem;
      }

      #location .left {
        width: 100%;
      }

      #location .right {
        width: 100%;
      }

      #location .right p{
        width: 90%;
      }

      #location .left{
        max-height: 400px;
      }
    }
    

    #private {
      background-image: url(../assets/images/privatee.webp);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 90%;
      height: 500px;
      margin: 3rem auto;

    }

    #private .container{
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      align-items: center;
      color: white;
      padding: 2rem;
      text-align: center;
    }

    #private .container p{
     width: 50%;
     opacity: 0.9;
    }


    @media (max-width: 700px) {
      #private .container p{
        width: 90%;
      }

      #private {

        margin: auto;
      }
    }

    


    #wine {
      padding: 2rem;
    }



    #wine .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        width: 90%;
        margin: 0 auto;
        padding: 2rem 2rem;
    }

    #wine .reverse{
        flex-direction: row-reverse;
    }


    #wine .left{
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
    }

    #wine .flex {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    #wine .flex img{
      width: 54px;
    }

    #wine .stars{
      display: flex;
    }

 



    #wine .left p{
      width: 90%;
    }

    #wine .right{
      width: 50%;
    }

    #wine .video-wrapper {
      position: relative;
      width: 100%;
      max-height: 700px;
      overflow: hidden;
    }
    
    #wine .video-wrapper video {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }
    
    #wine .sound-toggle {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }
    
    #wine .sound-toggle:hover {
      background: rgba(0,0,0,0.8);
    }
    
    #wine .sound-toggle:hover img {
      transform: translateX(0px);
    }

    @media (max-width: 1000px) {

      #wine {
        padding: 0;
      }

      #wine .container{
        flex-direction: column;
        gap: 2rem;
      }

      #wine .left{
        width: 100%;
      }

      #wine .right{
        width: 100%;
      }

      #wine .left p{
        width: auto;
      }
    }
      

	.flatpickr-calendar {
		display:none;
	}


    form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover{
      border-bottom: 2px solid white !important;
      color: white !important;
      background-color: #C3965F !important;
      opacity: 1 !important;
    }
    