@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

body {
  background-color: #fff8e1;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em 1em;
}

.menu-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffe9c4;
  border-radius: 15px;
  padding: 2em;
  margin-bottom: 3em;
  gap: 2em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-section .text-content {
  flex: 1 1 300px;
}

.menu-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  color: #d00000;
  margin-bottom: 1em;
  margin-top: -0.25em;
  text-align: center;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
}

.menu-section ul li {
  margin-bottom: 0.6em;
}

.menu-section ul li strong {
  font-weight: 700;
  color: #d00000;
}

.menu-section img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* Responsive for mobile screens */
@media (max-width: 768px) {
  .menu-section {
    flex-direction: column;
    text-align: center;
  }

  .menu-section .text-content {
    text-align: center;
  }

  .menu-section img {
    width: 100%;
    max-width: 300px;
    margin-top: 1em;
  }
}

.menu-section:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  color: #d00000;
  text-align: center;
}

footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
}

header {
  background-color: #ffcc00; /* McDonald's yellow */
  padding: 1em;
  text-align: center;
}

header h1 {
  margin: 0 0 0.5em 0;
  color: black; /* Bold red for the text */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
}

nav a {
  margin: 0 1em;
  color: #d00000; /* same bold red */
  text-decoration: none;
  font-weight: bold;
  font-family: 'Outfit', sans-serif;
}

nav a:hover {
  text-decoration: underline;
}

.fake-order-link {
  text-align: center;
  margin: 3em 0 1em;
}

.fake-order-link a {
  font-family: 'Poppins', sans-serif;
  background-color: #d00000;
  color: #fff8e1;
  padding: 0.75em 1.5em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.fake-order-link a:hover {
  background-color: #a80000;
}



