/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
}
.header .logo img {
    height: 50px;
}
.header nav ul {
    display: flex;
    list-style: none;
}
.header nav ul li {
    margin: 0 15px;
}
.header nav ul li a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
}
.header nav ul li a:hover {
    color: #ff6f61;
}

/* Hero Section */
.hero {
    background-image: url('https://t3.ftcdn.net/jpg/02/05/87/60/360_F_205876015_hYYs7ugqoU8QAobSS3TbnGQ92qyS5gEc.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
}
.hero .cta-btn {
    padding: 15px 30px;
    background-color: #ff6f61;
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
.hero .cta-btn:hover {
    background-color: #ff4b39;
}

/* Menu Section */
.menu {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}
.menu h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.menu-item {
    width: 250px;
    text-align: center;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.menu-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* About Us Section */
.about {
    padding: 60px 0;
    text-align: center;
    background-color: #ff6f61;
    color: white;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.2em;
    width: 60%;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
#contactForm input, #contactForm textarea {
    padding: 15px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#contactForm button {
    padding: 15px;
    background-color: #ff6f61;
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
}
#contactForm button:hover {
    background-color: #ff4b39;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
