/* coffee.css - Coffee themed styling */

body {
  font-family: 'Georgia', serif;
  background: #f3efe7; /* light latte background */
  color: #3e2c23; /* espresso brown text */
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #6b4226; /* rich mocha tone */
  font-size: 2.5em;
  margin-bottom: 30px;
  border-bottom: 3px solid #c19a6b; /* caramel accent */
  display: inline-block;
  padding-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

li {
  background: #fff8f0; /* creamy background */
  margin: 12px 0;
  padding: 18px;
  border-radius: 8px;
  border-left: 6px solid #8b5e3c; /* coffee bean accent */
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

a {
  text-decoration: none;
  color: #5c3d2e; /* espresso link color */
  font-weight: bold;
  font-size: 1.1em;
}

a:hover {
  color: #c97b4c; /* warm caramel hover */
  text-decoration: underline;
}