/* /* Секция HOME с текстом слева */
.home-section {
    display: flex;
    align-items: center; /* по вертикали по середине */
    justify-content: space-between; /* текст слева, фото справа */
    padding: 50px 20px;
    flex-wrap: wrap; /* для адаптивности на маленьких экранах */
}

/* Текстовая часть */
.home-text {
    max-width: 500px;
    text-align: center;
}

/* Название шашлычки + город */
.home-text h1 {
    font-size: 48px;
    margin: 0;
    color: #800000;
}

.home-text .city {
    color: black; /* черный цвет для города */
    font-weight: 600;
}

/* Подзаголовок */
.home-subtitle {
    font-size: 20px;
    margin: 15px 0 25px 0;
}

/* Кнопки */
.home-buttons {.home-buttons .btn {
    transition: transform 0.3s, background-color 0.3s;
}

.home-buttons .btn:hover {
    transform: scale(1.05);
}    margin-bottom: 15px;
}

.menu-btn {
    background-color: #800000; /* бордовый */
}

.contact-btn {
    background-color: #800000; /* бордовый */
}

.home-buttons .btn {
    margin-right: 15px;
}

/* Мелкая надпись */
.delivery-note {
    font-size: 18px;
    color: #555;
}

/* Главное фото */
.home-section .main-img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.home-section .main-img:hover {
    transform: scale(1.05);
}

/* Адаптив для маленьких экранов */
@media (max-width: 900px) {
    .home-section {
        flex-direction: column;
        text-align: center;
    }
    .home-text {
        max-width: 100%;
    }
    .home-section .main-img {
        width: 80%;
        margin-top: 20px;
    }
} стили */
body {/* Плавный скролл для всей страницы */
html {
    scroll-behavior: smooth;
}    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff5ee;
    color: #333;
}

/* HEADER */
header {
    background-color: #ff4c00;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header p {
    margin-top: 5px;
    font-weight: 400;
}

header nav {
    margin-top: 15px;
}

header nav .btn {
    margin: 0 10px;
}

/* Кнопки */
button, .btn {
    background-color: #800000;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background-color: #e55330;
}

/* MAIN SECTIONS */
main {
    padding: 20px;
    text-align: center;
}

main h2 {
    color: black;
    margin-bottom: 10px;
}

main h3 {
    color: #800000;
    margin-top: 25px;
}

main h4 {
    color: black;
    margin-top: 15px;
}

main > p {
    max-width: 600px;
    margin: 5px auto;
}

/* Главное фото */
.main-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-top: 15px;
}

.main-img:hover {
    transform: scale(1.05);
}

/* MENU CATEGORY */
.menu-category {
    margin-bottom: 20px;
}

/* CONTACT */
#contact p {
    margin: 5px 0;
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}
/* Карточки меню */
.menu-category {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto; */
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-top: 15px;
}

.menu-item {
    background-color: #ffffff;
    width: 220px;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item h4 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #ff4c00;
}

.menu-item p {
    font-size: 14px;
    margin: 5px 0;
}

.price {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #800000;
}
