.welcome-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.welcome-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.welcome-text {
    font-size: 18px;
    color: #666;
}

/* Меню на неделю */
.week-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.day-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.day-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ff6b6b;
    text-align: center;
}

.meals {
    display: flex;
    gap: 20px;
}

.meal {
    flex: 1;
    background: #f8f9fa;
    border-radius: 10px;
}

.meal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.meal-content {
    padding: 20px;
    text-align: center;
}

.meal-type {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.meal-name {
    color: #666;
    margin: 0;
}

.meal-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}