/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
  }
  
  header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
  }
  
  header nav ul {
    list-style: none;
    padding: 0;
  }
  
  header nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  .hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .hero .btn {
    background-color: #f2a900;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  /* Menu Section */
.menu {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .menu-items {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of items on smaller screens */
    justify-content: center;
    gap: 30px;
  }
  
  .menu-item {
    width: 200px; /* Fixed width for items */
    text-align: center;
    margin: 10px; /* Optional: for spacing between items */
  }
  
  .menu-item img {
    width: 100%;
    border-radius: 10px;
    max-width: 200px; /* Ensures images don’t get too big */
  }
  
  @media screen and (max-width: 768px) {
    .menu-item {
      width: 150px; /* Reduce item size on smaller screens */
    }
  }
  
  @media screen and (max-width: 480px) {
    .menu-item {
      width: 120px; /* Even smaller size for mobile */
    }
  }
  
 

/* About Us Section */
/* General styles for the About Us Page */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #3e2723; /* Dark brown for coffee theme */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin: 0;
}

header p {
    font-size: 18px;
    margin: 5px 0;
}

/* About Us Section */
.about-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: white;
}

.about-text {
    flex: 1;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.about-text h2 {
    font-size: 28px;
    color: #3e2723;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Coffee shop image */
.about-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.about-image img {
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #3e2723;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 20px;
    }

    .about-image img {
        width: 100%;
    }
}, 0, 0.1);
}



  
  .contact {
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact form input,
  .contact form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact form button {
    background-color: #f2a900;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
  }
  