@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

/* General styling */
html{
  scroll-behavior: smooth;
}
body {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 5px;
  font-style: normal;
  font-size: 1rem;
  margin: 0;
  background-color:#fff8e7;

}
img{
    height: 100%;
    width: 100%;
}
p{
  line-height: 2rem;
}
button{
font-family: "Lexend Deca", sans-serif;
font-optical-sizing: auto;
font-weight: 5px;
font-style: normal;
border-radius: 50px;
padding: 1rem 3rem;
cursor: pointer;
border-width: 0;
background-color: #132152;
color: white;
}
button:hover{
  background-color: #8c8a2d;
  transition: .5s;

}

.intro{
padding-top: 1rem ;
text-align: center;

}.title-b{
font-family: "Kalnia", serif;
font-optical-sizing: auto;
font-weight: bold;
font-style: normal;
font-variation-settings: "wdth" 100;
font-size: 4rem;
color: #132152;
text-align: center;

}
.description{
text-align: center justify;
max-width:70rem;
margin: auto;
padding: 2rem 0 0 ;

}
.mini{
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 4rem;
}

.menu-head{
    text-align: center;
    background-image: url(images/tbone.jpg);
    background-size: cover;
    background-position: top;
    height: 40vh;
}
.opening{
    background-color: #fff8e7cb;
    height: 40vh;
}
.menu-carrier{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.slideshow-container {
  position: relative;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 45rem;
}

.slide {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Smooth transition */
}


.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide.active {
  display: block;
  opacity: 1;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top:1.5rem;
  align-self: flex-start;
}
.active-btn {
  background-color: #56aeff;
}

@media (max-width:600px){
  body{
    font-size: .5rem;
  }
  .title-b{
    font-size: 2rem;
  }
  .menu-carrier{
    flex-direction: column;
  }
  .buttons{
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff8e7;
    z-index: 100;
    padding: .5rem;
    top: 0rem;
  }
  .description{
    text-align: justify;
    padding: 0 2rem;
  }

}