
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: #333;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
header nav ul li a {
  color: white;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background: url('coffee-hero.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 50px;
}
.hero .btn {
  background-color: #ff6f61;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 20px;
}

/* Menu Section */
.menu {
  padding: 40px 20px;
  background-color: #fff;
}
.menu h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.menu-items {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.menu-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
}
.menu-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.menu-item p {
  font-size: 16px;
  margin-bottom: 10px;
}
.price {
  font-size: 18px;
  color: #ff6f61;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}
.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 40px 20px;
  background-color: #fff;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
}
.contact label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.contact button {
  background-color: #ff6f61;
  color: white;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
