/* Global box-sizing for easier sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Fredoka One', cursive;
  background: #000000; /* Black background */
  color: #00FF00; /* Lime green text */
  line-height: 1.6;
}

header {
  background: #1c1c1c; /* Dark background for header - need to integrate the header into the picture; currently sticking out like a sore thumb*/
  text-align: center;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(50, 45, 156, 0.1);
}

header h1 {
  font-size: 3rem;
  margin: 0;
  color: #00FF00; /* Lime green header text */
}

#hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #333333; /* Darker background for hero section */
}

#hero img {
  width: 120px;
  margin-bottom: 1rem;
}

#menu {
  padding: 2rem;
  background: #222222; /* Dark background for menu */
}

#menu h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #00FF00; /* Lime green menu heading */
}

.menu-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.item {
  background: #333333; /* Dark background for items */
  padding: 1rem;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
  color: #00FF00; /* Lime green text for items */
}

#location {
  padding: 2rem;
  text-align: center;
  background: #444444; /* Dark background for location section */
}

#contact {
  padding: 2rem;
  background: #333333; /* Dark background for contact */
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 0.5rem;
  border: 2px solid #00FF00; /* Lime green border */
  border-radius: 5px;
  font-family: inherit;
  color: #00FF00; /* Lime green text */
  background: #222222; /* Dark background for form elements */
}

button {
  padding: 0.75rem;
  background: #00FF00; /* Lime green background for button */
  color: black;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #66FF66; /* Lighter lime green on hover */
}

footer {
  background: #1c1c1c; /* Dark footer background */
  color: #00FF00; /* Lime green footer text */
  text-align: center;
  padding: 1rem;
}

/* Images grid styles */
#images {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  color: #00FF00;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 100%;
  }
  
  .image-grid img {
    width: 100%;     /* Fill the grid cell */
    aspect-ratio: 1; /* Maintain square shape */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,255,0,0.4);
  }
  
  