/* Modal overlay */
#lunch-special-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

/* Centered modal box */
#lunch-special-modal .lunch-special-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  max-width: 500px;
  text-align: center;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
 
/* Close button */
#lunch-special-close {
  position: absolute;
  right: 12px;
  top: 8px;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #666;
}
#lunch-special-close:hover {
  color: #000;
}

#lunch-special-modal .lunch-special-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-bottom: 15px;
}

/* Make the headline stand out */
#lunch-special-modal .lunch-special-content h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #2e7d32; /* golf green */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Boost paragraph readability */
#lunch-special-modal .lunch-special-content p {
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0 0 15px;
  color: #333;
}

/* Style the button so it draws the eye */
.lunch-special-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff !important;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lunch-special-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0,0,0,0.4);
}
