body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #222;
}

.overlay {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 40px 20px;
        }

header {
  background-color: #006400;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav .cta {
  background: #FF0000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}

.hero {
  background: url('jamaican-food-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-color: #222;
}

.hero-text h1 {
  font-size: 2.5em;
  color: #FFD700;
}

.open-banner {
  background-color: #FF0000;
  display: inline-block;
  padding: 5px 10px;
  font-weight: bold;
  margin: 10px 0;
}

.hours, .address {
  font-size: 1.1em;
}

.menu, .catering, .about, .contact {
  padding: 40px 20px;
  text-align: center;
}

.menu {
  background-color: #f0f0f0;
}

.menu h2 {
  color: #006400;
  font-size: 2em;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.dish {
  width: 200px;
}

.dish img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.catering {
  background-color: #FFD700;
  color: #000;
}

.phone {
  font-size: 1.3em;
  font-weight: bold;
  color: #FF0000;
}

footer {
  background-color: #006400;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-items {
    flex-direction: column;
    align-items: center;
  }
  .dish {
    width: 90%;
  }
  .hero-text h1 {
    font-size: 1.8em;
  }
}
