/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0f0f0; /* Lighter background */
  font-family: "Markazi Text", serif;
  color: #333;
  line-height: 1.6;
  padding: 20px 5%;
}

header {
  margin-bottom: 2rem; /* Adds space below the header logo */
}

header img {
  width: 40%; /* Adjust size as needed */
  height: auto;
  display: block;
  margin: 0 auto; /* Center the logo */
}

nav {
  background-color: #f4ce14; /* Lemon yellow */
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

nav:hover {
  background-color: #495e57; /* Lighter background color on hover */
}

nav:hover a {
  color: #f4ce14; /* Changes link color to lemon yellow on hover */
}

nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #495e57; /* Leaf green */
  font-weight: bold;
  font-size: 2rem;
}

nav a:hover {
  color: #f0f0f0;
}

section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; /* Vertical and horizontal gap */
}

article {
  flex: 1;
  background-color: rgba(244, 206, 20, 0.2);
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}

article:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Add box shadow on hover */
}

article p {
  font-weight: 600;
  color: #495e57;
}

article h2 {
  text-align: center;
  color: #495e57;
}

article h3 {
  text-align: center;
  color: #495e57;
}

article img {
  margin: 1rem auto 1rem auto;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

article a {
  text-decoration: none;
  color: #495e57; /* Leaf green */
  font-weight: bold;
  font-size: 1.2rem;
}

article a:hover {
  color: #f4ce14;
}

.promotionBanner {
  background-image: url("https://recipesblob.oetker.ca/assets/9274e206e76a438a8779b8b0eec21eab/1680x580/b_va2_app_greeksaladjpg.webp");
  background-size: cover; /* Cover ensures the background image covers the entire element */
  background-position: center; /* Centers the background image within the element */
  text-shadow: 4px 4px 8px #495e57; /* Optional: Adds a shadow to text for better visibility */
  margin-bottom: 3rem; /* Maintains the existing margin from your original CSS */
}

.promotionBanner h1 {
  font-size: 2.5rem; /* Adjust the font size of h1 */
  color: #f0f0f0;
}

.promotionBanner p {
  font-size: 1.5rem; /* Adjust the font size of p */
  line-height: 1.6; /* Adjust the line height of p */
  color: #f0f0f0;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h1,
h2 {
  color: #495e57;
}

address p,
.address {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

footer {
  display: flex;
  padding-top: 3rem;
  background-color: #f0f0f0;
  color: #495e57;
  text-align: center;
}

footer img {
  width: 3rem;
  height: auto;
}

footer div {
  flex: 1;
  padding-top: 3rem;
}
