/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
  }
  
  /* Header Styles */
  header {
    text-align: center;
    background-image: url('cyberfoods_final.jpg'); /* Add your company image here */
    background-color: black;
    background-size: 700px 550px;
    background-repeat: no-repeat;
    background-position: center;
    height: 60vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  header h1 {
    font-size: 3em;
    margin: 0;
  }
  
  header p {
    font-size: 1.2em;
    margin-top: 10px;
  }

  h3 {
    text-align: left;
    padding-left: 15px;
  }

  p {
    text-align: left;
  }

  .greetings {
    text-align: left;
    margin-left: -930px;
  }
  
  /* Menu Section */
  .menu {
    padding: 20px;
    text-align: center;
  }
  
  .menu h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .menu-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s;
  }
  
  .menu-item:hover {
    transform: scale(1.05);
  }
  
  .menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .menu-item h3 {
    margin: 15px 0 10px;
    font-size: 1.5em;
    color: #c0392b;
  }
  
  .menu-item p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 1em;
  }


/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer h3 {
  text-align: center;
}

footer p {
  text-align: center;
  margin: 0.5rem 0;
}


