* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  margin-top: 100px;
  background-image: linear-gradient(to right, #11dbdb, #f2e4d8);
}

header {
 /* background-color: #DB6D11;*/
  background-image: url(../img/bg-footer.jpg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0; 
  z-index: 20; 
opacity: 0.98;
}

.logo img {
  max-height: 60px;
}
.pi {
  position: fixed;
  right: 10px; bottom: 0px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  align-self: flex-start;
}

.bar {
  background-color: white;
  height: 4px;
  border-radius: 2px;
}

.nav-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  transform: translateY(-100%);
  transition: transform 0.5s;
}

.nav-menu.open {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0.5rem;
}

main {
  margin-top: 2rem;
}


section {
  position: relative;
  padding: 2rem 1rem;
  /*background-image: url(../img/placeholder-image.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  
}
h2 {
	
}




.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: left;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  background-color: #f9f9f9;
  text-align: left;
  opacity: 0.7;
  
}
.pizza-item {
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  background-color: #f9f9f9;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}

.centered-table {
  margin: 0 auto;
}

.pre {
  display: flex;
  justify-content: space-between;
  align-items: left;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;

  
}
.table {
        width: 100%;        
        border-collapse:collapse;
    }
.table td {
    padding: 7px;
    border:1px solid black;
}


.item-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}

.item-desc {
  font-size: 0.9rem;
  text-align: left;
}
.item-pre {
  font-size: 0.9rem;
  text-align: center;
}

.item-price {
  font-weight: bold;
}

footer {
 /* background-color: #DB6D11;*/
  background-image: url(../img/bg-footer.jpg);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
.logo {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
#tele {
	margin-left: auto;
	margin-right: auto;
	max-width: 50px;
}

.fab {
	
	width: 50px;
	height: 50px;
	background-image: url(../img/tele.png);
	background-size: cover;
	border-radius: 50%;
	z-index: 9999;
	color: black;
	position: fixed;
	right: 50px;
	bottom: 50px;
}
 
.fab:hover {
   box-shadow: 0 6px 14px 0 #666;
   transform: scale(1.05);
}
@media (max-width: 767px) {
  .nav-menu {
    z-index: 10;
  }
}



@media (min-width: 768px) {
  .hamburger {
    display: none;
  }


  .close-menu {
    display: none;
  }
  header {
  flex-direction: column;
  justify-content: center;
}

.logo {
  margin-right: 1rem;
}

.menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.nav-menu {
  display:none;
  
}

.menu-link {
  display: inline-block;
  margin: 0.5rem;
  text-align: center;
  box-sizing: border-box;
}


.fab {
	display:none;
}
.map {
	
}


}

