/* styles.css */

/* Root variables for colors */
:root {
  --dark-green: #004d00;
  --light-green: #66cc66;
  --gold: #d4af37;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-green);
  color: var(--gold);
}

.menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.menu-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 80%;
  max-width: 1200px;
}

.menu-item {
  background-color: var(--light-green);
  color: var(--dark-green);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.menu-item h3 {
  margin: 0;
  font-size: 1.25rem;
}

.menu-item p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}
