:root{
  --red: rgb(177, 15, 15);
  --redhover: rgb(149, 12, 12);
  --redactive: rgb(122, 10, 10);
  --lightgreybg: rgb(245, 245, 245);
  --greyblack: rgb(40, 40, 40);
  --salmon: rgb(255, 165, 165);
}

html {
  scroll-behavior: smooth;
  
}
body{
  margin: 0;
  padding:0 ;
  font-family:'Helvetica';
  /* background-color: rgb(40, 40, 40); */
}

p{
  margin-top: 0;
}

main{
  display: grid;
  grid-template-columns: 250px 1fr;
  height: 5150px;
  align-items: start;
}


/* SIDEBAR AREA */
aside{
  position:sticky;
  top:65px;
  background-color: white;
}

.sidebar{
  display: flex;
  flex-direction: column;
  margin: 40px 0 0 50px;
  gap: 20px;
  font-size: 14px;
}
.sidebar-title{
  padding-top: 10px;

  color: rgb(40, 40, 40);
  font-family: helvetica;
  font-weight: 400;
  text-decoration: none;
}
.sidebar-option{
  text-decoration: none;
  color: rgb(40, 40, 40);
  font-family: helvetica;
  font-weight: 100;
}
.sidebar-option:hover{
  font-weight: 400;
}


/* FRONT AREA */
.front-area{
  margin-top: 62px;
  height: 300px;
  background-color: rgb(239, 239, 239);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:0px;
  position:relative;
  
}
.front-pic-area{
  height: 126%;
  width: auto;
  top:-33px;
  bottom:0;
  position:absolute;
}
.front-pic{
  height: 100%;
  object-fit: contain;
}
.front-title{
  color: rgb(40, 40, 40);/* color: rgb(146, 50, 50);rgb(113, 134, 94) */
  font-weight: 700;
  font-size: 65px;
  font-family: 'Cormorant Garamond';
}
.front-welc{
  color: rgb(40, 40, 40);
  font-weight: 100;
  font-size: 16px;
  font-family:helvetica;
  padding-bottom: 9px;
}
.front-pdf{
  color: rgb(40, 40, 40);
  font-weight: 100;
  font-size: 15px;
  font-family:helvetica;
  text-decoration: underline;
  padding-right: 10px;
}
.front-pdf:hover{
  cursor: pointer;
}


/* MENU SECTION AREA */

.section-area{
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.menu-category{
  display: flex;             /* enables flexbox layout */
  align-items: center;       /* vertically centers the text with lines */
  text-align: center;
  padding-top: 70px;
  padding-bottom: 50px;
  width: 90%;
  height: 50px;
  white-space: nowrap;
}
.menu-category::before,
.menu-category::after {
  content: "";               /* pseudo-elements create the lines */
  flex: 1;                   /* fill all available horizontal space */
  border-bottom: 2px solid #5e5e5e; /* actual line */
}

.menu-category::before {
  margin-right: 40px;      /* space between line and text */
}

.menu-category::after {
  margin-left: 40px;       /* space between text and line */
}

.menu-category span {
  color: rgb(61, 61, 61);         /* text color */
  font-weight: 500;   
  font-size: 33px;
  font-family: 'Cormorant Garamond';    
}
.menu-sections{
  width: 86%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  
}
.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item{
  /* background-color: lightblue; */
  color: rgb(40, 40, 40);
  padding-bottom: 40px;
  
}
.menu-item-more{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica;
  padding-bottom: 5px;
}
.menu-item-name{
  font-family: Helvetica;
  font-weight: 700;
  font-size:18px;
}
.menu-item-desc{
  font-family: helvetica;
  font-weight: lighter;
  font-size: 13px;
  padding-bottom: 4px;
}
.menu-item-option{
  font-family: helvetica;
  font-size: 13px;

}
.menu-item-dots {
  flex: 1;                         /* takes remaining space */
  border-bottom: 1.0px dotted #919191;  /* dotted line */
  margin: 0 15px;                   /* spacing from text */
}
.menu-item-price{
  font-family: helvetica;
  font-size: 14px;
}
.menu-pic-area{
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  position:relative;
}
.menu-pic{
  width: 99%;
  object-fit: contain;
}
.menu-pic-area-abs{
  position:absolute;
  left:-26px;
  bottom:-65px;
  height: 50%;
  width: 103%;
  min-height: 150px;
  min-width: 300px;
  background-color: rgb(245, 245, 245);
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  gap: 15px;
  color: rgb(40, 40, 40);
  transition: height 0.15s, width 0.15s, left 0.15s, bottom 0.15s;
}
/* .menu-pic-area-abs:hover{
  height: 51%;
  width: 106%;
  left:-31px;
  bottom:-76px;
} */
.menu-abs-title{
  font-family: 'Cormorant Garamond';    
  font-weight: 600;
  font-size: 20px;
  padding: 0 30px;
  text-align: start;
  /* color: rgb(177, 15, 15); */
}
.menu-abs-text{
  padding: 0 30px;
  font-family: helvetica;
  font-weight: 100;
  font-size: 14px;
}
.menu-item-desc-no{
  font-family: helvetica;
  font-weight: lighter;
  font-size: 13px;
  padding-top: 4px;
  margin: 0;
}


/* UP ARROW */
.menu-back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgb(177, 15, 15);
  color: white;
  font-size: 28px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, 
              opacity 0.4s ease, 
              transform 0.4s ease, 
              bottom 0.4s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px); /* slide up effect */
  z-index: 1000;
}

.menu-back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  bottom: 25px; /* final resting position */
}
.menu-back-to-top:hover {
  background-color: rgb(153, 13, 13);
  cursor: pointer;
}


/* COPYRIGHT SECTION */
.copyright-area{
  height: 9vh;
  background-color: rgb(232, 232, 232);
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright-area p{
  color: rgb(63, 63, 63);
  font-size: 0.8rem;
  padding-top:10px;
}
