/* Cafe Body Styling */
body {
  background-color: #2d1a12; /* Warm brown background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Courier New', Courier, monospace;
  color: #f4e1c1; /* Light beige text color */
}

/* Cafe Content Styling */
.cafe-content {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #3e2a1f; /* Darker brown for content background */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #f4e1c1;
}

.cafe-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f4e1c1;
}

/* Menu Styling */
.menu {
  background-color: #4a3527; /* Slightly lighter brown for menu */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.menu h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f4e1c1;
}

.menu ul {
  list-style-type: none;
  padding: 0;
}

.menu li {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #f4e1c1;
}

/* Water Reminder Styling */
.water-reminder {
  background-color: #4a3527; /* Same as menu */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.water-reminder h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f4e1c1;
}

.water-reminder p {
  font-size: 1.2rem;
  color: #f4e1c1;
}

/* Retro Button Styling (Updated for Cafe Theme) */
.retro-button {
  background-color: #3e2a1f; /* Dark brown */
  color: #f4e1c1; /* Light beige */
  border: 2px solid #f4e1c1;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 0 5px #f4e1c1;
  transition: all 0.3s ease;
}

.retro-button:hover {
  background-color: #f4e1c1;
  color: #3e2a1f;
  box-shadow: 0 0 15px #f4e1c1;
}