  <style>
    body, html {
      height: 100%;
      margin: 0;
    }

    .bg-cover {
      background-image: url('https://tacosellocodfw.com/images/cover.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
    }

    .overlay {
      background: rgba(0, 0, 0, 0.6);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .navbar {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .menu-item {
      /*background: #fff;*/
      background: #242323;
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
    }

    .menu-item:hover {
      transform: scale(1.02);
    }

    .filter-btn.active {
      background-color: #ffc107 !important;
      color: #000 !important;
    }
    .custom-bg {
	  background-color: #2f2e2e;
	  color: #fff;
	}
	.footer {
	  background: #2b2b2b;
	  color: #eee;
	  font-family: sans-serif;
	}
	.footer-content {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-between;
	  padding: 40px;
	  gap: 30px;
	}
	.footer-content div {
	  flex: 1;
	  min-width: 220px;
	}
	.footer-content h4 {
	  margin-bottom: 12px;
	  color: #fff;
	}
	.footer-content a {
	  color: #ccc;
	  text-decoration: none;
	}
	.footer-content a:hover {
	  color: #fff;
	}
	.links ul {
	  list-style: none;
	  padding: 0;
	}
	.links li {
	  margin-bottom: 8px;
	}
	.contact p {
	  margin: 6px 0;
	  font-size: 0.95em;
	}
	.social a {
	  margin-right: 10px;
	  font-size: 1.4em;
	}
	.social a:hover {
	  color: #fff;
	}
	.newsletter form {
	  display: flex;
	  margin-top: 8px;
	}
	.newsletter input {
	  flex: 1;
	  padding: 8px;
	  border: none;
	  border-radius: 4px 0 0 4px;
	}
	.newsletter button {
	  padding: 8px 16px;
	  background: #ffc107;
	  border: none;
	  color: #fff;
	  border-radius: 0 4px 4px 0;
	  cursor: pointer;
	}
	.newsletter button:hover {
	  background: #ffc107;
	}
	.footer-bottom {
	  text-align: center;
	  padding: 16px;
	  border-top: 1px solid #444;
	  font-size: 0.9em;
	}
	.footer-bottom a {
	  color: #bbb;
	  margin: 0 5px;
	}
	.footer-bottom a:hover {
	  color: #fff;
	}
	.topb{
		margin-top: 3%;
	}
	.review-button-container {
	  text-align: center;
	  padding: 30px 0 10px;
	  background-color: #404040;
	  padding-bottom: 2%;
	}

	.review-button {
	  background-color: #ffc107 !important;
	  color: #000;
	  padding: 12px 28px;
	  font-size: 1.1rem;
	  border-radius: 8px;
	  text-decoration: none;
	  transition: background-color 0.3s ease;
	  font-weight: bolder;
	}

	.review-button:hover {
	  background-color: #ffc107 !important;
	}
	.brand-title {
	   /* font-family: 'Lobster', cursive;*/
	    font-size: 2rem;
	    font-family: "Gaegu", sans-serif;
  		font-weight: 400;
  		font-style: normal;
	    color: #fff;
	  }
	.brand-subtitle {
	    /*font-family: 'Lobster', cursive;*/
	    font-size: 1.5rem;
	    font-family: "Gaegu", sans-serif;
  		font-weight: 400;
  		font-style: normal;
	    color: #fff;
	    background-color: black;
	    border-radius: 15px;
	    padding-left: 2%;
	  }

	  .menu-font {
	    /*font-family: 'Lobster', cursive;*/
	    font-size: 1.5rem;
	    font-family: "Gaegu", sans-serif;
  		font-weight: 400;
  		font-style: normal;
	    color: #000;
	    background-color: white;
	    border-radius: 15px;
	    padding-left: 8%;
	  }

	  /*.fuzzy-bubbles-regular {
		  font-family: "Fuzzy Bubbles", sans-serif;
		  font-weight: 400;
		  font-style: normal;
		}

		.fuzzy-bubbles-bold {
		  font-family: "Fuzzy Bubbles", sans-serif;
		  font-weight: 700;
		  font-style: normal;
		}*/
	@media (max-width: 768px) {
	  .footer-content {
	    flex-direction: column;
	    align-items: center;
	  }
	  .newsletter form {
	    flex-direction: column;
	  }
	  .newsletter input,
	  .newsletter button {
	    width: 100%;
	    border-radius: 4px;
	  }
	  .newsletter button {
	    margin-top: 8px;
	  }
	}
	
  </style>