/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fef9e7; /* Светло-бежевый фон */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c; /* Красный цвет для названия сайта */
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
}

header nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #c0392b; /* Темно-красный цвет для hover */
}

/* Секция героя */
.hero {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 200px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный черный фон на 60% */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
}

.button-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e74c3c; /* Красный цвет для кнопок */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 15px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background-color: #c0392b; /* Темно-красный цвет для hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

/* Секции контента */
.section-content {
    padding: 80px 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1100px;
}

.section-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    text-align: center;
    color: #e74c3c; /* Красный цвет для заголовков */
    font-weight: 700;
}

.section-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
    line-height: 1.8;
}

/* Сетка блюд */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
    justify-content: center;
}

.dish-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.dish-content {
    padding: 30px;
    flex: 1;
}

.dish-card h3 {
    font-size: 28px;
    margin: 0 0 20px;
    color: #e74c3c;
    font-weight: 600;
}

.dish-card p {
    font-size: 18px;
    margin: 0 0 25px;
    color: #7f8c8d;
    line-height: 1.7;
}

.dish-card .button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 15px;
}

.dish-card .cta-button {
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 25px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.dish-card .cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

/* Форма контактов */
.contact-form {
    padding: 80px 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
}

.contact-form h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #e74c3c;
    font-weight: 700;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.form-group {
    width: 100%;
    max-width: 500px;
}

.form-group label {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
    font-size: 18px;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.contact-form button {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.contact-form button:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

/* Информация о контактах */
.contact-info {
    padding: 80px 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #e74c3c;
    font-weight: 700;
}

.contact-info p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.8;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c0392b;
}

/* Футер */
footer {
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

footer p {
    margin: 10px 0;
    font-size: 18px;
}

footer a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fad7a0;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 15px 0;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    header h1 {
        font-size: 28px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    header nav ul li a {
        font-size: 16px;
    }

    .hero {
        padding: 150px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-content {
        padding: 60px 0;
    }

    .section-content h2 {
        font-size: 36px;
    }

    .section-content p {
        font-size: 18px;
    }

    .dish-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dish-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .dish-card img {
        height: 200px;
    }

    .dish-content {
        padding: 25px;
    }

    .dish-card h3 {
        font-size: 24px;
    }

    .dish-card p {
        font-size: 16px;
    }

    .dish-card .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .contact-form {
        padding: 60px 0;
    }

    .contact-form h2 {
        font-size: 36px;
    }

    .form-group {
        max-width: 100%;
    }

    .form-group label {
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .contact-form button {
        padding: 15px 35px;
        font-size: 18px;
    }

    .contact-info {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-info p {
        font-size: 18px;
    }

    footer {
        padding: 30px 0;
    }

    footer p {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 18px;
        margin: 0 10px;
    }
}

/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');