body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6e3;
    text-align: center;
    color: #333;
}

header {
    background: linear-gradient(145deg, #000000, #000000); /* Subtle gradient background */
    color: white;
    padding: 1rem 0; /* Reduced padding for a smaller header */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Softer shadow for depth */
    border-bottom: 3px solid #ffffff; /* Optional: adds a thin border for structure */
}

header h1 {
    margin: 0;
    font-size: 2rem; /* Smaller font size for a more balanced look */
    font-family: 'Lato', serif;
}

main {
    padding: 2rem;
}

a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

p {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
}

ul {
    list-style: none;
    padding: 0;
}

.button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #000000;
}

/* Food truck section styling */
.food-truck {
    margin: 2rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Truck container to group image and menu */
.truck-container {
    display: flex;
    flex-direction: column; /* Stack the image and menu vertically */
    align-items: center; /* Center content */
    max-width: 600px; /* Restrict the overall width */
    border: 3px solid #eaeaea; /* Add a border around the group */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Prevent content from spilling out */
}

/* Truck image styling */
.truck-image {
    width: 100%; /* Full width within the container */
    max-width: 600px;
    height: auto;
    display: block;
}

/* Menu container styling */
.menu-container {
    background-color: #000000; /* Red background for menu section */
    padding: 1rem;
    width: 100%; /* Match the width of the image */
    color: #ffffff;
    text-align: center;
}

/* Menu list styling */
.menu {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.menu li {
    background-color: #ffffff; /* White background for items */
    color: #000000; /* Red text */
    margin: 0.5rem auto;
    padding: 0.75rem;
    border-radius: 5px;
    max-width: 80%; /* Center the items and restrict width */
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add depth */
    transition: transform 0.2s, background-color 0.2s;
}

.menu li:hover {
    background-color: #000000; /* Red background on hover */
    color: #ffffff; /* White text on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.email-link {
    color: #0000EE; /* Standard blue for hyperlinks */
    text-decoration: none; /* Removes underline by default */
    background: none; /* No background */
    border: none; /* No border */
    padding: 0; /* No padding */
    cursor: pointer; /* Hand cursor on hover */
  }