body {
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; /* 👈 Keeps the background in place */
  color: #5c3a21;
  font-family: "Cormorant Garamond", serif;
}
body::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f8f4ed;
}

body::-webkit-scrollbar-thumb {
    background-color: #dea846bd;
    /* Oven Gold */
    border-radius: 20px;
}
hr {
  border: none;
  height: 5px; /* Adjust thickness */
  background: linear-gradient(to right, transparent, #5C3A21, transparent);
}
button {
  background: transparent;
    color: #f8f4ed;
    border: 2px solid #f8f4ed;
    border-radius: 8px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}
button:hover {
   background-color: #ffffff;
    color: #5C3A21;
}
.price{ 
 margin:0 auto;
 border-radius: 10px;
  width: 70%;
  color: #5C3A21;
  font-size:1.7rem;
  transition: all 0.3s;
  padding-top:1rem;
  justify-content:center;
}
.price:hover{
.resetorder{
  text-decoration: underline;
  cursor: pointer;
}
}
.order {
  text-align:center;
  padding: 5px;
  width: 70%;
  color:#5C3A21;
  margin:0 auto;
  font-size: 1.3rem;
  transition: all 0.3s;
} 
.bracket{
  width:2.7rem;
  display: inline;
  position:relative;
  padding: 0px;
  z-index: 59;
}
.order:hover {

}
.ordercl{
  z-index:75;
  margin:0 auto;
  display:grid;
  border-radius: 10px;
  width:100%;
  height:70vh;
  box-shadow: #000000 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #f8f4ed;
  transition: height 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.order-all{
  top:21%;
  background-color: #dea846;
  padding-bottom: 6px;
  padding-left: 6px;
  font-weight:400;
  border: 3px #dea846 solid;
  color: #f8f4ed;
  border-radius: 10px;
  height:1.5rem;
  width:50%;
  position:fixed;
  margin:0 auto;
  text-align:center;
  margin-top:0px;
  z-index: 37;
  justify-self: center;
  justify-content:center;
  text-align: center;
  font-size:1.3rem;
  transition: all 0.5s ease-in-out;
}
.order-all > .ordercl {
  visibility:hidden;
  opacity: 0%;
  transition: all 0.5s ease-in-out;
}
.order-all:hover > .ordercl {
  visibility: visible;
  opacity:100%;
  transition: all 0.5s ease-in-out;
  box-shadow: #000000 0 8px 24px rgba(0, 0, 0, 0.1) ;
}
.order-all:hover > img{
  transform: rotate(180deg);
}
.order-all > img{
  transition: transform 0.5s ease-in-out;
}
.logo-img{
  z-index: 30;
}

.container {
  height:300vh;
  display:grid;
  margin: 0 auto;
  width:100%;
}
.breakfast {
  background-color: #f8f4ed;
  width: 100%;
  position: absolute;
  justify-content: center;
  height: 20rem;
  top:30%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* 👈 Soft neutral shadow */
  border-radius: 12px; /* 👈 Adds smooth corners */
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.breakfast:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* 👈 Deeper shadow on hover */
  transform: translateY(-4px); /* 👈 Slight lift effect */
}
.breakfast2 {
  background-color: #f8f4ed;
  width: 100%;
  position: absolute;
  height: 20rem;
  top:70%;
  margin-top: 13rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* 👈 Soft neutral shadow */
  border-radius: 12px; /* 👈 Adds smooth corners */
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.breakfast2:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* 👈 Deeper shadow on hover */
  transform: translateY(-4px); /* 👈 Slight lift effect */
}

.sub-head{
  position: absolute;
  top: 25%;
  text-align:center;
  padding:20px;
  margin: 0 auto;
  font-size: 1.7rem;
  max-width: 30rem;
  font-weight: 600;
  justify-self: center;
  z-index:4;
}
.sub-head2{
  position: absolute;
  top: 70%;
  padding-top: 10rem;
  margin: 0 auto;
  font-size: 1.7rem;
  max-width: 30rem;
  font-weight: 700;
  justify-self: center;
  z-index:4;
}
.scroll-img {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin-right: 1rem;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.5s ease-in-out;
  display: grid;
  place-items: center;
  box-shadow: #5C3A21 0 4px 8px;
}
.scroll-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}
.scroll-img:hover{
  transition: all 0.5s ease-in-out;
  transform: translateY(-1rem);
}
.scroll-img:hover::before{
  filter: brightness(70%);
  
}
.scroll-img:hover > p {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  filter:brightness(100%);
  transform: translateY(-1rem);
}

.scroll-img > p{
  visibility: hidden;
  opacity: 0;
  color: #f8f4ed;
  margin: 0 auto;
  font-style: oblique;
  padding-top: 3rem;
  justify-self: center;
  transition: all 0.5s ease-in-out;
  display: grid;
  font-size: 1.5rem;
  font-weight: 500;
}
.scroll-img > p > button{
  visibility: hidden;
  display: grid;
  
}
.scroll-img:hover > p > button{
  visibility: visible;
  transition: all 0.5s ease-in-out;
  transform: translateX(10px);
}
.scroll{
  margin-top:4rem;
  justify-self: center;
  display: flex;
  width:90%;
  border-radius: 6px;
  background-color: #f9f1e3b0;
  overflow-x: scroll;
  box-shadow: #f9f1e3fe 0 24px 38px;
  height:13.5rem;
}
.scroll::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

.scroll::-webkit-scrollbar-track {
    background: #f8f4ed;
    height: 13px;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #dea846bd;
    /* Oven Gold */
    border-radius: 20px;
}
.item1{

}
@media(min-width: 768px){
    .scroll{
     justify-content: center;
}
}
