



.box{
height: 37vh; 
    background-color: #3a3f2d; 
    background-image: url("/Seb's/My images for coding/Jazz band jammin'.jpg");
    background-size: repeat; /* image covers the whole area {cover} */
    background-position: top; 
    position: relative; 
    display: flex; 
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px; 
}

h1{
font-size: 67px;
font-weight: 400;
}

.topnavi{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333333;
    gap: 30px;
    justify-content: center;
    align-items: center;


}


.topnavi a{
font-size: 20px;
font-weight: 700;
line-height: 36px;
  
}


ul.topnavi {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #503e61;

}

/* Style links in topnav */
ul.topnavi li a {
  display: block;
  color: #f1f1f1;
  padding: 14px 16px;
  text-decoration: none;
  
}

/* Change color on hover */
ul.topnavi li a:hover {
  background-image: url("/Seb's/My images for coding/Jazz band jammin'.jpg");
  background-color: #e67e22;
  color: white;
  
}

/* allow popup positioning */
.topnavi li{
  position: relative;
}

/* popup image */
.hover-img{
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 120px;
}

/* silly fork popup */
.topnavi li:hover .hover-img{
  display: block;
}







.popular{
    background-color: #503e61;
    margin: 45px 0;
}











.menu-container {
  display: flex;
  justify-content: center;
  padding: 20px;
gap: 50px ;
}


.real_main{
    display: flex;
    flex-direction: column;
    gap: 40px;
}



/* Card */
.food-card {
  width: 300px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.food-card:hover {
  transform: translateY(-10px); /* Hover lift effect */
}


/* Info Paddingggggg RAWWWWWWW */

.food-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.food-content {
  padding: 20px;
}

.food-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.food-title {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

.food-price {
  font-weight: bold;
  color: #e67e22;
}

.food-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}







/* Button Styling */

.order-btn {
  width: 100%;
  padding: 10px;
  background-color: #e67e22;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #d35400;
}







/* Phone media screen */

@media (max-width: 800px) {

.menu-container {
  
    display: grid;
    flex-direction: column;
      grid-template-columns: repeat(2, 1fr);

    }
    
  .topnavi{
    
    flex-direction: column;

  }
}
