@keyframes navShrinkOnLoad {
  0% {
    transform: scale(1) translateY(-4rem);
  }
  100% {
    transform: scale(0.70) translateY(-5.8rem);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset + base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100vh;
  background-color: transparent; /* ensure no fallback color shows */
}


body {
    font-family : system-ui, sans-serif;
background-color: #4d643a;
    line-height:1.6;
    margin: 0;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  object-fit: cover;   /* fill entire screen, crop if necessary */
  z-index: -1;         /* stays behind everything */
  pointer-events: none;/* clicks pass through */
}



/* Hero Section */
#hero {
    text-align: center;
    margin: 0.5rem 0;
}

.location-text {
  text-align: center;
  font-family: system-ui, serif;
  font-size: 1rem;
  color: #ffffff;
  margin-top: -6.9rem;
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}


.location-underline {
  width: 70%;
  height: 3px;
  background-color: #ffffff; /* sleek gray */
  margin: -2.9rem auto 5.7rem; /* move it closer to the SVG */
  border-radius: 2px;
  opacity: 0.85;
  margin-bottom: 6.3rem;
}



/* menu page glow override */

.menu-page .logo-big-svg {
  text-shadow:
    0 0 1px #ffd900,
    0 0 2px #ff8800,
    0 0 6px #ffa442;
}

@keyframes breathe {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

#main-nav {
  position: relative;
  z-index: 10;
  height: 60px;
  transform-origin: top center;
  display: flex;
  justify-content: center;
}


.home #main-nav {
  margin-top: -4rem; /* adjust this until it visually matches other pages */
}

#main-nav ul li a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
 font-style: italic;
  line-height: 1.4;
  border-radius: 20px;
  text-decoration: none;
  color: rgb(255, 213, 26);
  font-weight: 700;
  font-size: 2.3rem;
  transition: background-color 0.3s ease;
 margin:  -2rem 1rem ;
 text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.774),
    -1px -1px 4px rgba(0, 0, 0, 0.735);
}

#main-nav ul li {
  flex: 1; /* let each button take up equal horizontal space */
  min-width: 80px; /* optional: don’t shrink smaller than this */
}


#main-nav ul li:first-child a {
  animation: wobble 6s ease-in-out infinite;
  animation-delay: 9s; /* waits 3 seconds before the first wobble */
  margin-left: 1.5rem;
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  3% { transform: rotate(-8deg); }
  6% { transform: rotate(8deg); }
  9% { transform: rotate(-8deg); }
  12% { transform: rotate(8deg); }
  15% { transform: rotate(-6deg); }
  20% { transform: rotate(6deg); }
  25% { transform: rotate(-4deg); }
  30% { transform: rotate(4deg); }
  35% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); } /* idle from 35% to 100% */
}









#main-nav {
  transition: margin-top 0.4s ease, transform 0.8s ease;
  margin-bottom:-2rem;
}

#main-nav.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.menu-view.initial-load #main-nav {
  animation: navShrinkOnLoad 0.6s ease forwards;
}

body.menu-view #main-nav {
  transform: scale(0.70) translateY(-5.8rem);
}











/* MENU CONTENT STYLE */

.menu-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-page li {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
}

.menu-page .item-name {
  font-weight: 500;
  color: #222;
}

.menu-page .item-price {
  font-weight: 600;
  color: #444;
}




.menu-page h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}


/* Menu Page Overlay */
.menu-page {
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: rgb(255, 251, 247);
  padding: 1rem 0.5rem;
  padding-right: 1rem;
  border-radius: 2rem;
  box-shadow: 4px 3px  rgba(145, 255, 0, 0.586);
  
  z-index: 20;
  scroll-behavior: smooth;
  /* animation: fadeSlideUp 0.6s ease-out forwards; */ /* Removed fade animation for slide-in effect */
}

.menu-page.active {
  transform: translate(-50%, -45%);
  opacity: 1;
  pointer-events: auto;
}




#hero h1 {
    font-size: 2rem;
    font-weight: bold;
}

#hero .location {
    font-size: 1rem;
    color: #898585;
}

/* Navigation */
#main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping */
  justify-content: center;
  gap: -1rem;
  padding: 0;
  margin: -0.5rem 0.5rem;
}





.about-page #main-nav {
  margin-top: -4.5rem;
}

#contact {
  position: relative;
}

.contact-heading {
  position: relative;
  margin-top: -3.4rem; /* or try -2rem if needed */
  margin-bottom:1rem;
  text-align: center;
  font-size: 2rem; /* tweak for size if you want */
  font-style:italic;
  animation: fadeSlideUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  color: rgb(255, 213, 26);

text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.774),
    -1px -1px 4px rgba(0, 0, 0, 0.735);

}

.contact-content {
  margin-top: 5rem;
  font-size: 24px;
  font-weight: 900;
  color: rgb(255, 242, 228);
  text-align: center;
 letter-spacing: 2px;
  text-shadow:
    4px 4px 1px rgba(0, 0, 0, 0.6),
    2px 2px 1px rgba(0, 0, 0, 0.5);
}





.jobs-page #main-nav {
  margin-top: -4.5rem;
}



/* Section Headings */
section h2 {
    margin: 1.5rem 0 -2rem;
    font-size: 1.3rem;
    text-align:center;
    
}

/* Utility */



/* menu stuff */

#menu {
  position: relative; /* allows absolutely positioned children to anchor to this section */
  padding-bottom: 2rem;
}



.menu-heading {
  position: relative;
  margin-top: -3.4rem; /* or try -2rem if needed */
  margin-bottom:3rem;
  text-align: center;
  font-size: 2rem; /* tweak for size if you want */
  font-style:italic;
  animation: fadeSlideUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  color: rgb(255, 213, 26);

text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.774),
    -1px -1px 4px rgba(0, 0, 0, 0.735);

}




#home-btn {
  position: absolute;
  top: -2.4rem;     /* adjust distance from the top of menu header */
  left: 50%;      /* center horizontally */
  transform: translateX(-50%);
  width: 45px;
  height: 40px;
  background-image: url('images/home-icon.png');
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
  border: none;
  text-indent: -9999px;
background-color: rgb(199, 8, 8);
border-radius: 1rem;
  opacity: 0;
  transition: opacity 1s ease;
  
}

.menu-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  column-gap: 4rem;
  margin-top: 2rem;
  padding: 0.2rem 0rem;
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}



/* MENU DROPDOWN */

.menu-dropdown {
  position: sticky; /* stick while scrolling */
  top: .8rem; /* final resting spot near the top */
  margin-top: -3rem;
  inset-inline: 0;
  margin-inline: auto;
  width: fit-content;
  z-index: 1000;
  text-align: center;
  display: block;
  justify-content: center;
margin-bottom: -1.2rem;
  opacity: 0;                 /* start hidden */
  animation: fadeSlideDown 0.7s ease forwards;
  animation-delay: 0.55s;      /* slight delay if you want */
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.menu-dropdown .dropdown-toggle {
  background-color: rgb(201, 0, 0); /* light background */
  padding: 0.5rem;
  border-radius: 50%; /* perfect circle */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.176);
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px; /* space between lines */
}







.dropdown-toggle {
  position: relative;
  margin: 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1px;
  width: 45px;  /* size of the button */
  height: 40px; /* total height of 3 bars + spacing */
}

.dropdown-toggle span {
  display: block;
  height: 3px;
  background-color: #ffffff; /* color of bars */
  border-radius: 2px;
  width: 100%;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffe345;
  border-radius: 40px;
  padding: 0.5rem 0.4rem;
  z-index: 1000;
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
margin-top: 0.5rem;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  min-width: 340px;
}

.dropdown-list.show {
  max-height: 500px;   /* enough to reveal all links */
  opacity: 1;
  pointer-events: auto;
}


.dropdown-list a {
  display: flex;
  align-items: center;         /* vertically center emoji & text */
  justify-content: center;     /* center the content as a whole */
  gap: -3rem;                 /* space between emoji and text */
  padding: 0.35rem 0.8rem;
  font-size: 1.3rem;
  
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: rgb(189, 35, 1);
  white-space: nowrap;         /* prevents wrapping */
}

.dropdown-list a:hover {
  background-color: #ffe7a1;
  border-radius: 3px;
}





.menu-nav-right {
  margin-right: -0.8rem;
}

.menu-nav-left,
.menu-nav-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}




#main-nav a:hover {
  color: #FFD700; /* warm yellow on hover */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.menu-nav button {
  position: relative; /* Needed for ::after */
  background: none;
  color: rgb(0, 0, 0);
  border: none;
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  font-weight: bolder;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-nav button::after {
  margin-bottom: -0.1rem;
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; /* Adjust this for underline length */
  height: 1.5px;
  background-color: rgb(0, 0, 0);
  border-radius: 1px;
}

.menu-nav button:hover {
  color: #ff914d;
  text-decoration: underline;
}


.menu-section {
  width: 90%;
  max-width: 700px;
  padding: 1rem;
  padding-top: 0.1rem;
  padding-bottom: 3rem;           /* was 1rem – adds more breathing room */
  margin: 1.8rem auto;       /* centers horizontally */
  background: #ed7322;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-height: 200px;       /* optional: force them a bit taller */

  opacity: 0;                 /* start invisible */
  transform: translateY(30px); /* slightly shifted down */
  transition: opacity 0.8s ease, transform 0.8s ease;
}





.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* menu-section li */
.menu-section li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .8rem 0;
  
  font-size: 1.1rem;
  gap: 1rem;
}




.item-name {
  font-weight: 600;
  color: #fffcc4;
  flex: 1;
  font-style: italic;
}

.item-price {
  font-weight: 500;
  color: #f8e087e9;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

.menu-description {
  font-size: 0.95rem;
  text-align: center;
  color: #ffee00e4;
  margin: 0.3rem 0 0.6rem;
  line-height: 1.5;
  font-weight: 600;
}

.menu-section h3,
.menu-section h4 {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.menu-section h5 {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #515151;
}



.menu-section h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: rgb(255, 225, 0);
  border-bottom: 2px solid #efb105;
  padding-bottom: 0.9rem;
  text-shadow: 1px 2px 0px rgb(0, 0, 0);
  letter-spacing: 1.2px;
}










/* Language Toggle */
#language-toggle {
  position: absolute;
  top: 0.6rem;
  right: 0.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  z-index: 9999;
}

/* this is the only block you need for the links */
#language-toggle .lang-btn {
  display: inline-block;
  padding: 0.1rem 0.6rem; /* moved from button{} */
  font-size: 0.9rem;
  border: none;
  background-color: #fff8ed;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  color: #ffb390;
  font-weight: bold;
}

#language-toggle .lang-btn.active {
  background-color: #fff8ed;
  color: #ff0000;
}







/* LOGO STUFF */


#logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: -1.5rem;
  animation:breathe 3s ease-in-out infinite;
}

#logo-wrapper {
  transform: translateX(-4.3px) scale(0.75);
  transform-origin: center top;
}


body.home #logo {
  opacity: 0;
  animation:
    fadeIn 1.5s ease-in forwards,
    breathe 3s ease-in-out infinite;
  animation-delay: 0s, 1.3s;
}

.logo-clickable {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.logo-line {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: bold;
  color: rgb(216, 21, 7);
  letter-spacing: 1px;
}

.logo-small {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  color: rgb(213, 49, 8);
  margin-top: -0.8rem;
  margin-bottom: -1.2rem;
  font-weight: bold ;
}

.logo-big-svg {
  fill: #ffc800;
  stroke: rgb(255, 255, 255);
  stroke-width: 2px;
  paint-order: stroke fill;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 10px;
  font-family: 'Georgia', serif;
}

.logo-line,
.logo-small {
  text-shadow:
    0 2px 2px rgb(255, 239, 146),
    0 1px 4px rgb(255, 244, 194),
    0 0 8px rgb(255, 253, 196);
}

.logo-big-svg {
  text-shadow:
    0 1.9px 1px rgb(255, 123, 117),
    0 0 4px rgb(255, 249, 213),
    -2px 1px 1px rgb(197, 255, 179),
    -1px 0px 9px rgb(255, 246, 196);
}



.logo-curve {
  padding: 0;
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


.logo-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  overflow: visible; /* keep breathing visible */
  z-index: 1;
}

/* keep this logo from expanding its box too much */
#logo {
  transform-origin: center;
}






/* homepage gallery  */


.home-gallery {
  position: relative;
  overflow: hidden;
  width: calc(100% - 1.5rem);
  height: 230px; /* adjust as needed */
  margin: 0 auto;
  margin-top:-2rem;
  border-radius: 8px;
  background-color: rgba(255, 0, 0, 0);
  z-index: 1;
}

.gallery-track {
  display: flex;
  width: max-content;
  will-change: transform;
  gap :17px;
}

.gallery-track img {
  height: 100%;
  width: 174px;
  flex-shrink: 0 0 auto;
  object-fit: contain;
  border: 3.5px solid rgb(177, 9, 9);
  box-sizing: border-box;
  border-radius: 20px;
}





.fade-in-late {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 2s ease-out forwards;
  animation-delay: 1.3s; /* one second after quenepas are fully revealed */
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* call button */


.call-button-container {
  display: flex;
  justify-content: center;
  align-items: center;  /* vertically align */
  flex-direction: row;  /* make sure it's horizontal */
  gap: 7.5rem;            /* space between icons */
  margin: 0.3rem 0;
  margin-bottom: 4.5rem;

}

.call-button,
.map-button {
  display: flex;                 /* flex container */
  justify-content: center;       /* center horizontally */
  align-items: center;           /* center vertically */
  background-color: #ffffffeb;
  width: 60px;   /* fixed size so it stays a perfect circle */
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.call-button img {
  width: 67%;
  height: 67%;
  object-fit: contain;
}

.call-button:hover {
  transform: scale(1.05);
}

.map-button img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}


.map-button:hover {
  transform: scale(1.05);
}



#splash-screen {
  /* circular mask */
  will-change: clip-path, opacity;
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 1.5s ease, opacity 0.8s ease 1s; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;  /* force it to fill the whole screen */
  background-color: #ffcd4e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


#splash-screen.reveal {
  clip-path: circle(0% at 50% 46%);
  opacity: 0;
}


.enter-text {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  color: #cc111e;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 800;
  letter-spacing: 3px;
  margin-top: -3rem;
}

.enter-text span{
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
  display: block
}

.enter-text span:nth-child(2) {
font-size: 2rem;
margin-top: -1rem;
color:#337604;
}

.enter-text span:nth-child(3) {
  font-size: 1.4rem;
}

.enter-text:hover {
  transform: scale(1.1);
}



.rotating-text {
  text-align: center;
  font-size: 2rem;
  margin: 2.5rem 0 4rem 0 ;
  font-weight: 800;
  color: rgb(255, 217, 0);;
  min-height: 1.5em;
  font-family: 'Poppins', sans serif;
  background-color: rgba(255, 0, 0, 0);
}

#rotating-span {
  line-height: 0.5;
   margin: 0;
  padding: 0;
  text-shadow:
    4px 4px 1px rgba(0, 0, 0, 0.6),
    2px 2px 1px rgba(0, 0, 0, 0.5);
}

.rotating-text span {
  transition: opacity 0.3s ease;
}


.logo-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: 1rem;
  min-height: 90px;
  width: 100%;
  position: relative;
  top: -.5rem;
  padding-top: 1rem;
}

.logo-flags img {
  max-width: 55px;
  height: auto;
  transform: translateY(-60px);
}

 .logo-flags .flag-left {
  margin-right: -3rem;
}

.logo-flags .flag-right {
  max-width: 51px;
  margin-left: -3rem;
  transform: translate(-4.5px, -60px);
}

.logo-flags img.flag-left,
.logo-flags img.flag-right {
  position: relative;
  top: -1.2rem; /* move only the flags upward */
}

.logo-flags > #logo {
  flex: 0 0 auto; /* prevents it from stretching weirdly */
}

.logo-flags img.flag-left {
  max-width: 60px;
  height: auto;
}






.flag-placeholder {
  width: 55px;  /* same width as your flags */
  height: 0;    /* height doesn’t matter since flags use translateY */
}

 .flag-placeholder-left {
  width: 60px;
  margin-right: -3rem;
}
.flag-placeholder-right {
  width: 51px;
  margin-left: -3rem;
}