/* Общие стили страницы */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fdfcfb;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Заголовки */
h1,
h2 {
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Центрирование */
.text-center {
    text-align: center;
}

/* Кнопки меню */
.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.menu-btn {
    background: linear-gradient(135deg, #f9f7f1, #fff9e6);
    border: 2px solid #d4af37;
    /* легкий золотой акцент */
    color: #2c2c2c;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-btn:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Разделы меню */
.menu-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #d4af37;
    /* золотой акцент на заголовках */
}

.menu-section p,
.menu-section ul {
    font-size: 1.1rem;
    color: #555;
}

.menu-section ul {
    padding-left: 20px;
}

.menu-section li {
    margin-bottom: 5px;
}

/* Разделитель */
hr {
    border: none;
    height: 1px;
    background: #eee;
    margin: 2rem 0;
}

/* Отступы */
.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .menu-buttons {
        flex-direction: column;
        gap: 8px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .menu-btn {
        width: 90%;
        padding: 12px;
    }
}