@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap');

a, a:hover, a:focus{outline:none; text-decoration:none;}

body{
    
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    background-image: url('https://chasegastrobar.com/assets/img/bg3.jpg');
}

    .top-right-corner {
      position: absolute;
      top: 10px;
      right: 0;
      margin: 0px;
      background-color: #000;
      padding: 5px;
      padding-left: 20px;
      color: white;
      border-radius: 20px 0px 0px 20px;
    }

    .top-right-corner a {
        color: white;
    }

.menuname {
    font-weight: bold;
    font-size: 1.4em;
}

.container {
    margin: 0;
}
  .menu-container {
    background: black;
    padding: 10px 0px 10px 10px;
    color: white;
    overflow: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 10px;
}

.menu li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.active {
    background: red;
    padding: 10px 5px;
    border-radius: 10px;
}

a.active {
  background-color: red;
}

.section {
  height: 100vh;
  padding: 50px;
}

.section h3 {
  background: red;
  color: wheat;
}

.maincategory {
    background: #6d040a;
    padding: 10px 0px 10px 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    color: white;
    text-align: center;
    text-transform: uppercase;

}
.subcategory {
    background: #243d4b;
    padding: 10px 0px 10px 10px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
    border: solid black 1px;
    color: white;
}

.product {
    background: yellow;
}

.lira {
    font-weight: normal;
    font-size: 14px;
}

.price {
    font-weight: bold;
    font-size: 1.2em;
}

        .overlay {
            position: relative;
        }

        .overlay::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* 50% black background */
        }

        .overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white; /* Text color */
            text-align: center;
            font-size: 14px; /* Adjust font size as needed */
            font-weight: bold; /* Adjust font weight as needed */
        }


#backToTopBtn {
position: fixed;
    bottom: 1px;
    right: 1px;
    display: none;
    background-color: #00000063;
    color: #fff;
    /* padding: 10px; */
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    padding-left: 10px;
    padding-top: 7px;
    padding-bottom: 10px;
    padding-right: 5px;
}

#backToTopBtn span {
  margin-right: 5px;
}


