
/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Шапка и навигация */
.header {
    background: #8b0000;
    color: #fff;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav__list a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s;
}

.nav__list a:hover {
    opacity: 0.8;
}

/* Герой-секция */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: url('hero-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Стиль для добавленного изображения */
.hero-image {
    margin-top: 1.5rem;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Блоки */
section {
    padding: 3rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.about, .menu, .contact {
    background: #fff;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Меню */
.menu__items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.menu__item {
    flex: 1 1 calc(33% - 1rem);
    background: #fafafa;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

/* Форма контакта */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact__form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.contact__form input,
.contact__form textarea {
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact__form button {
    width: fit-content;
    padding: .6rem 1.2rem;
    background: #8b0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .3s;
}

.contact__form button:hover {
    background: #a30000;
}

.form-status {
    font-size: .9rem;
    color: #006400;
}

/* Подвал */
.footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .menu__item {
        flex: 1 1 100%;
    }

    .nav__list {
        flex-direction: column;
        gap: .5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
