/* Общие стили */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #e0f7ff;           /* светло-голубой фон */
    color: #03396c;                /* темно-голубой текст */
}

a {
    color: #005b96;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: #0077b6;           /* насыщенный голубой */
    color: #fff;
    padding: 20px;
    text-align: center;
}
.site-header nav a {
    margin: 0 15px;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 30px 15%;
}
.section h2 {
    border-bottom: 2px solid #0096c7;
    padding-bottom: 10px;
}

/* Меню */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.menu-item {
    background: #fff;
    border: 2px solid #90e0ef;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.menu-item h3 {
    margin-top: 0;
    color: #023e8a;
}
.price {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #d00000;
}

/* Изображение торта в меню */
.menu-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* Форма обратной связи */
#feedback-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
#feedback-form label {
    margin-bottom: 10px;
}
#feedback-form input,
#feedback-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #90e0ef;
    border-radius: 4px;
    background: #f0faff;
}
#feedback-form button {
    width: 150px;
    padding: 10px;
    margin-top: 15px;
    background: #0096c7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#feedback-form button:hover {
    background: #0077b6;
}
.result-message {
    margin-top: 15px;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: #0077b6;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}