
/* Основные стили в голубой палитре */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f0f9ff;
    color: #03396c;
    line-height: 1.6;
}
.header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}
.nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}
.nav a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 40px 10%;
}
.about, .contact {
    background: #e0f2ff;
}
.menu {
    background: #cceeff;
}

/* Menu items */
.menu-item {
    border-left: 5px solid #0099ff;
    padding: 10px 15px;
    margin: 15px 0;
    background: #fff;
}
.menu-item h3 {
    margin-bottom: 5px;
    color: #025b9a;
}
.menu-item p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.price {
    font-weight: bold;
    color: #025b9a;
}

/* Added style for menu images */
.menu-item img {
    max-width: 200px;
    height: auto;
    display: block;
    margin-top: 10px;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
.contact-form label {
    margin-bottom: 10px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #0099ff;
    border-radius: 4px;
    margin-top: 4px;
}
.contact-form button {
    width: 150px;
    padding: 10px;
    margin-top: 15px;
    background: #0099ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #007acc;
}
.form-result {
    margin-top: 15px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #0099ff;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}
