body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff6347; /* Tomato color for food appeal */
    padding: 10px 20px;
    color: white;
}

.logo {
    font-family: 'Pacifico', cursive; /* Logo-style font */
    font-size: 24px;
    padding-left: 20px;
}

.tel {
    font-size: 18px;
    padding-right: 20px;
}

nav {
    background-color: #ffa07a; /* Light salmon for warmth */
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url('images/bg2.jpg'); /* Your custom take out food background */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 10px 0 0;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: #ff6347;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .logo, .tel {
        padding: 10px 0;
    }
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin: 10px 0;
    }
}