* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    padding: 20px;
    color: white;
    text-align: center;
}

header .logo img {
    width: 100px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background: url('restaurant-background.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 40px;
}

.hero-content p {
    font-size: 20px;
}

section {
    padding: 40px 20px;
}

section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.menu-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-item {
    text-align: center;
    width: 30%;
    margin: 10px;
}

.menu-item img {
    width: 100%;
    border-radius: 8px;
}

.map iframe {
    width: 100%;
    border: none;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    font-size: 40px;
    margin: 0 15px;
    color: #333;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
