/*LOGO AND NAV*/

#logo-and-nav{
    background-color: var(--grey-beige);
    height:18rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo-and-nav__logo img{
    height:12rem;
    width: auto;
}

#logo-and-nav__nav{
  display: flex;
    /* grid-template-columns: 1fr 1fr 1fr; */
    width: 70%;
    /* border: 1px solid var(--dark-green); */
    justify-content: space-between;
}

.logo-and-nav__menu-item{
   
}

.logo-and-nav__menu-item:nth-of-type(3), .logo-and-nav__menu-item:last-of-type{
    border-right: none;
}

.logo-and-nav__menu-item:nth-last-of-type(1), .logo-and-nav__menu-item:nth-last-of-type(2), .logo-and-nav__menu-item:nth-last-of-type(3){
    border-bottom: none;
}

.logo-and-nav__menu-item a{
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    opacity: 100%;
    transition: opacity 0.3s ease-in-out;
    
}

.logo-and-nav__menu-item a:hover::before,.logo-and-nav__menu-item a.active{
    opacity: 60%;
    /*width: 100%;*/
}

.logo-and-nav__menu-item a.active::before {
    width: 100%;
}

.logo-and-nav__menu-item a::before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--dark-green);
    opacity: 60%;
    transition: width 0.3s ease-in-out;
}

.logo-and-nav__menu-item a:hover::before{
    width: 100%;
}


/*FOOTER*/

footer{
    background-color: var(--dark-green);
    color:white;
}

#footer-top{
    display:flex;
    justify-content: space-between;
    font-size: 1.8rem;
}

#footer-top__left{
    display: flex;
    flex-direction: column;
    width:36%;
    min-width:34rem;
}

#footer-top__social-media-box{
    display:grid;
    grid-template-areas: 
        "logo facebook"
        "logo instagram"
    ;
    border:1px solid white;
}

#footer-top__logo{
    grid-area:logo;
    border-right: 1px solid white;
    padding:2rem 3rem;
}

#footer-top__logo img{
    width: 14rem;
}

#footer-top__facebook-link{
    grid-area:facebook;

}

#footer-top__facebook-link, #footer-top__instagram-link{
    display: flex;
    align-items: center;
    font-weight: 600;
}

#footer-top__instagram-link{
    grid-area:instagram;
}

#footer-top__address{
    display: flex;
    justify-content: space-between;
}

#footer-top__facebook-link {
  margin-bottom: 15px;
}

#footer-top__right\ social-footer h4 {
  margin-bottom: 25px;
  padding: 0;
  font-weight: 400;
}

#footer-top__middle_second h4{
    margin-bottom: 25px;
  padding: 0;
  font-weight: 400;
}

#get-direction-link{
    height: 56px;
    width: 182px;
    background: var(--orange);
    display: flex;
    align-items: center;
    border-radius: 28px;
    position: relative;
    font-weight: 600;
}

#get-direction-link img {
    width: 56px;
    position: relative;
    left: -5%;
}

#get-direction-link::before {
    /*content: url(https://www.limabistro.com/wp-content/uploads/2021/12/Mask-Group.png);*/
}

#footer-top__right{}

#footer-top__opening-hours{
    font-size:2rem;
    max-width: 30rem;
}

#footer-top__opening-hours-title{
    text-transform: uppercase;
}

#footer-top__opening-hours-time{
    margin:2.4em 0;
}

#footer-top__opening-hours-time p:nth-child(2){
    margin-bottom:10px;
}

#footer-top__opening-hours-time p:nth-child(4){
    margin-bottom:10px;
}

#footer-top__reservation{
    font-size: 1.8rem;
    line-height: 2.4rem;
}
#footer-bottom{}

#pop-up-notification-container{
    position: fixed;
    bottom: 0;
    right: -458px;
    background: var(--dark-green);
    color: white;
    width: 458px;
    z-index: 199;
    padding:15px;
    /*opacity: 0;*/
    /*display: none;*/
}

#pop-up-notification__close{
    width: 100%;
    padding:10px;
    display: flex;
    justify-content: flex-end;
}

#pop-up-notification__close svg{
    width: 18px;
    fill: var(--orange);
    cursor: pointer;
}

#pop-up-notification__description{
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	text-align:center
}

#pop-up-notification__description a{
    background: var(--orange);
    margin-bottom: 10px;
    display: flex;
    height: 45px;
    width: 50%;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
}

#pop-up-notification__description p{
	font-size: 2rem;
	line-height:2.5rem;
}

div#pop-up-notification__description a {
    display: none;
}




#footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* In case the content overflows on smaller screens */
  padding: 20px;
  color: white;
  gap: 20px;
}

#footer-top__left,
#footer-top__middle,
#footer-top__middle_second,
#footer-top__right {
  flex: 1;
  min-width: 200px; /* Ensures they don't shrink too much */
}

#footer-top__middle,
#footer-top__middle_second {
  flex-basis: 200px; /* Optional, if you want to control these columns more */
}

#footer-top__left {
  max-width: 250px;
}

#footer-top__right {
  text-align: right; /* Aligns content like opening hours */
}

/* Optional: Adjustments for smaller screens */
@media (max-width: 768px) {
  #footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer-top__right {
    text-align: left;
  }
}


.wp-block-button__link{
    background: transparent!important;
        color: #f79445!important;
}

.media-single-column .wp-block-button {
    border-radius: 90%;
    background-color: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}


.media-single-column h3 {
    margin-bottom: 25px;
    font-size: 23px;
    line-height: 30px;
}

.media-single-column p {
    margin-bottom: 25px;
}

.media-single-column figure img {
    object-fit: cover;
    height: 100%;
}
.media-single-column figure {
    height: 320px;
    object-fit: contain;
}

.media-columns {
    margin-top: 50px;
    margin-bottom: 25px;
}
blockquote.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow {
    margin-bottom: 0;
    padding-left: 0;
    margin-left: 0;
}

blockquote.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow p {
    margin-bottom: 0;
    font-size: 15px;
}

main#primary {
   background: #f8f6f3;
}
