:root {
  --green-dark: #00e156;
  --green-light: #a8d5b5;
  --yellow: #f9ee4f;
  --yellow-light: #fffb00;
  --cream: #fffef5;
  --text-dark: #1a1a1a;
  --text-light: #fff;
    --black: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", serif;
  background-color: var(--yellow-light);
  color: var(--text-dark);
}

header {
  background-color: var(--green-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1rem;
}

#main-logo {
  width: 190px;
  height: auto;
  border-radius: 8px;
  border: 3px solid var(--yellow-light);
  margin-bottom: 1rem;
}

h1 {
  font-family: "Jamaica", sans-serif;
  font-size: 3.5rem;
  color: var(--yellow-light);
  margin-bottom: 0.5rem;
}

#header-intro {
  color: var(--cream);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

nav ul li a {
  color: var(--yellow-light);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

nav ul li a:hover {
  background-color: var(--yellow);
  color: var(--green-dark);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

#about {
  background-color: var(--cream);
  border-left: 5px solid var(--green-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

#veteren-owned {
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 0.60rem;
}

h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  text-align: center;
  margin: 2rem 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--black);
}

h3 {
  font-size: 1.2rem;
  color: var(--yellow-light);
  margin-bottom: 0.5rem;
}

#grill-jerk-chicken,
#oxtails,
#rice-and-peas,
#mac-and-cheese {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background-color: var(--green-dark);
  border-radius: 8px;
}

video {
  border-radius: 8px;
  border: 3px solid var(--yellow);
  max-width: 100%;
  height: auto;
}

.video-description {
  padding: 0.5rem;
}

#menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.card1,
.card2,
.card3,
.card4 {
  background-color: #fff;
  border: 2px solid var(--green-dark);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#menu img {
  border-radius: 6px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#order-now {
  background-color: var(--cream);
  border-left: 3px solid var(--green-dark);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

#order-now p {
  margin-bottom: 1.25rem;
}

.pay-btn {
  display: inline-block;
  background-color: var(--green-dark);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  margin: 0.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pay-btn:hover {
  background-color: var(--green-light);
}

footer {
  background-color: var(--green-dark);
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem 1rem;
}

footer span {
  display: block;
  margin-top: 0.25rem;
  color: var(--yellow-light);
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  nav ul li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }
}
